Hi there,
I have created a report and it was executing as expected, but I was stuck with 3 things in the report.
My scenario is explained below.
2. we want a show the sales responsible name of the sales order in the report.
we gave a condition like this in RDP productDispatchTmp.WorkerSalesReponsible = HcmWorker::find(locSalesTable.WorkerSalesResponsible).Person;
we are getting the Number instead of Name.
3. how to get the contact information of a customer into a report.
let say in the SalesOrder, if we tap on the Header of the SO, we have a customer account number. if we click on the Cust Account, it will the Cust Account details, we want get the details of the Contact information of the customer on the report.
Any leads, please help me to acheive this scenario.
Thank you,
Kind regards
Seshu Nara
1. Create a data contract class, and then inside the data provider class, call the contract class to access the parameters
2. Try this: HcmWorker::find(locSalesTable.WorkerSalesResponsible).name()
3. That depends on your approach. If your report is query based, you could edit the query to get the relevant info, or you could fetch the customer info inside the data provider using a SQL statement