Job that fetched from the current company / companytInfo table records sample in Dynamic AX

Hi, static void CompanyInformations(Args _args){    CompanyInfo   companyInfo = CompanyInfo::find();     print  “CompanyPhone                = ” +companyInfo.phone();    print  “CompanyTeleFax              =” +companyInfo.teleFax();    print  “CompanyGiro                 =” +companyInfo.Giro;    print  “CompanyCoRegNum       […]

How to change the language in POS in Retail Dynamic AX

Hi, 1. Change the en-us toOn the Store: (StoreName)/Retail/Common/Retail channels/Retail stores under the Regional settings -> Language“ar”On the Staff: (StoreName)/Retail/Common/Workers under Profile -> Language“ar” Then run the job : N-1060 Regards,

Error: ‘The default Report Server Configuration ID could not be found in the SRSServers table.’ in Dynamic AX

Hi, Error: ‘The default Report Server Configuration ID could not be found in the SRSServers table.’ Solution:1. Config reporting service.System administration> Setup> Business intelligence> Reporting services> Report servers> change server name to <YourServerName>(here SystemName) as well as ensure that your Report Manager URL, Web service URL and Application Object Server information reflect this server as highlighted on the screenshot. […]

Error: The query could not be processed. The field(s) salesTableTmp.AddedFiled do not exist in the report provider table salesTableTmp. in Dynamic Reports.

Hi, Error:The query could not be processed. The field(s) salesTableTmp.AddedFiled do not exist in the report provider table salesTableTmp. When opening the customized standards reports like SalesInvoice, PO etc. above error will be prompted sometimes. Solution:Synchronize the table used for DP tmp table and restart the reporting server.The error will be cleared. Regards,

Error: Parameter _reportName cannot be null or empty. SSRS in Dynamic AX

Hi, “Parameter _reportName cannot be null or empty.” The AssetBasisRdlContract.getAttributes() reflection API could not create and return the SrsReportNameAttribute object. Please check the parameters.” This error will be prompted on opening any reports / it can be standard or customized. Solution:  Need to compile class AssetBasisRdlContract  If compile some time it may again show some other […]

Expression in SSRS

Hi, SSRS Expressions Global : Global expressions executes/works in Page Header and Footer parts only. ExecutionTime() shows date and time at when report executesPageNumber() shows page number of each and every page but allowed only in page header and footerReportName() displays name of the active report what name we have assigned to the active reportUserId() shows current […]