Issue:
When we are exporting layout file (.rdl) even it has the correct layout title report properties of the layout title stays as default like 'Portrait or Landscape'. That's why after the delivery it renamed again.
So, workaround or solution for this issue is after doing any changes to the layout we need to open the layout (.rdl) using a notepad or any other tool we need to make sure <report-title>ID Card</report-title> is defined properly and then need to version control (Harvest) (Option 1) or we need to make sure to rename the layout title in page properties (Option 2).
Solutions:
Option 1 (Recommended)
Report_SYS.Define_Report_Layout_('&VIEW', 'CPdrCover.xsl', 'Portrait', 'DYNAMIC', NULL, 'DESIGNER');
Report_SYS.Define_Report_Layout_('HANDL_UNIT_CONTENT_LABEL_REP', 'CHandlUnitContentLabelRep.rdl', 'ID Card', 'OTHER', NULL, 'DESIGNER');
Change the layout title in page properties before version control.
0 Comments