How to Dynamically Switch Selected Template
When a Docentric SSRS or Basic report is printed to a selected print destination Docentric AX Framework needs to know which template to use in order to execute the report, since each report can have more than one template (e.g. for different companies and languages).
However we can change a selected report template and language dynamically, i.e. during report execution. To do so, we need to inject custom business logic at the specific point in the report execution pipeline that consists of the following steps:
- Open the report dialog form (if not running a report from code or in batch or in case of a SSRS Print Management report).
- Validate the report parameters and other report settings likewise the selected print destination settings.
- Get the run-time report data source, i.e. needed data for printing the report.
- Override the report execution settings such as Selected Template, Selected Print Destination, Report Caption, Save to Archive flag, etc. and replace Print Destination Placeholders, if any.
- Generate the report in the requested format and send it to the selected print destination.
To dynamically change a selected template we need to inject custom business logic at the 4th step in the pipeline by extending the overrideReportRunSettings() method of the report DSP (Data Source Provider) class.
We can change most of the executing report settings including a selected template as well. Learn more here about which report execution settings exactly we can affect.
We can access the selected Template ID, Company ID and Language ID (and change them) through the parmTemplateId(), parmTemplateCompanyId() and parmTemplateLanguageId() methods of an DocReportRunContext object which is the input parameter of the overrideReportRunSettings() method.
To clear things up take a look at the sample implementation of the overrideReportRunSettings() method:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
public DocPlaceholderManager overrideReportRunSettings(DocReportRunContext _reportRunContext, boolean _replaceStandardPlaceholders = true) { DocPlaceholderManager placeHolderMng; DocReportTable docReport; DocReportTemplate docTemplate; HcmBirthdayContract hcmBirthdayDc = this.getSrsRdpContract(); TransDate parameterFromDate = hcmBirthdayDc.parmFromDate(); placeHolderMng = super(_reportRunContext, _replaceStandardPlaceholders); // Task only for demo purposes: If the May month is selected as the FromDate // report parameter, replace the currently selected template with the one which // has the Title set to 'May month template'. if (mthOfYr(parameterFromDate) == 5) { docReport = DocReportTable::findReportId(_reportRunContext.reportId()); select firstOnly docTemplate where docTemplate.Report == docReport.RecId && docTemplate.Title == 'May month template'; if (docTemplate) { _reportRunContext.parmTemplateId(docTemplate.TemplateId); _reportRunContext.parmTemplateCompanyId(docTemplate.CompanyId); _reportRunContext.parmTemplateLanguageId(docTemplate.LanguageID); } } return placeHolderMng; } |
In this method we are replacing the currently selected template with the one which has Title set to 'May month template' under the condition that the month of the FromDate report parameter is May.
Take a look at another example. For the Purchase order report we are going to use different templates for Original and Copy of the document.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
public DocPlaceholderManager overrideReportRunSettings(DocReportRunContext _reportRunContext, boolean _replaceStandardPlaceholders = true) { DocPlaceholderManager placeHolderMng; placeHolderMng = super(_reportRunContext, _replaceStandardPlaceholders); // Use particular template depending on calling report menu item. if (_reportRunContext.reportMenuItemName() == menuitemOutputStr(PurchPurchaseOrderOriginal)) { _reportRunContext.parmTemplateId('PurchaseOrderTemplate_Original'); } else if (_reportRunContext.reportMenuItemName() == menuitemOutputStr(PurchPurchaseOrderCopy)) { _reportRunContext.parmTemplateId('PurchaseOrderTemplate_Copy'); } return placeHolderMng; } |
See also
How to Dynamically Change Print Destination Settings >>
How to Use Placeholders in Print Destination Settings >>
How to Use More Than One Template for a Docentric SSRS Report >>
How to Use More Than One Template for a Docentric Basic Report >>