Common requirement is to show the reports in customer’s language.

[example : Quotations, sales confirmations, invoices, Free text invoices, Return order acknowledgements , Agreements,  Purchase order confirmations etc].

This was easily achievable in Dynamics AX 2009 reports by using

element.design().languageID(custConfirmJour.LanguageId); // language id

Well, how do I achieve the same thing  in AX 2012 SSRS Reports? 

Its simple , we still have one liner code only in AX 2012

We need to use the controller classes, runPrintMgmt() method or preRunModifyContract() method which changes the contract class before report is run and am leaving this to you based on the requirements.

this.parmReportContract().parmRdlContract().parmLanguageId(custConfirmJour.Language);

Below is the screen shot for reference:

How to display SSRS report based on customer/Vendor specific language [AX2012]

相关文章:

  • 2021-08-07
  • 2021-10-30
  • 2022-01-30
  • 2021-07-23
  • 2021-11-27
  • 2021-08-18
  • 2021-11-06
  • 2022-03-10
猜你喜欢
  • 2022-01-12
  • 2021-11-21
  • 2021-06-06
  • 2022-12-23
  • 2021-08-24
  • 2021-12-12
  • 2021-08-27
相关资源
相似解决方案