Solved

Report Definitions

  • 11 March 2020
  • 4 replies
  • 1108 views

Userlevel 7
Badge +18

How do you add new Report Definitions?

icon

Best answer by ChanakaAmarasekara 11 March 2020, 09:32

View original

4 replies

Userlevel 7
Badge +15

Hi,

Normally if you deploy your new RDF it should add a new report definition. In the RDF file where you have your business logic you should have this code,

BEGIN
   Report_SYS.Define_Report_(
      '&VIEW',
      '&MODULE',
      '&LU', 
      'Report Title',
      '&TABLE',
      '&PKG..&METHOD',
      7);
   Report_SYS.Refresh_('&VIEW');
END;
/

The definition will not be added if you don’t have the Refresh call.

If you are creating the report from the model then you need to specify the definition details through ‘codegenproperties’. The .report file should have something like the following. You can get all the properties by selecting ctrl + space within the codegenproperties  brackets.

codegenproperties {
   TitleText        "Report Title";
}

If this is there and still you don’t see the definition, try clearing the Report cache from IFS Solution Manager.

 

Hope this helps.

Regards,

 

 

Badge +3

Hello,

 

Where do we add new report definitions please? 

 

Best regards,

Shady

Userlevel 7
Badge +15

See above comment. You should add it in the RDF and then deploy it.

/Chanaka

Badge +2

HI, how do you migrate the report definition to higher cloud instances (SaaS i mean) ?

Reply