How do you add new Report Definitions?
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,
Hello,
Where do we add new report definitions please?
Best regards,
Shady
See above comment. You should add it in the RDF and then deploy it.
/Chanaka
HI, how do you migrate the report definition to higher cloud instances (SaaS i mean) ?
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.