Hi All,
i have create a new report for Receipt and called from
SO-- Pick and Pack -- Preview/Print -- < my report >
i have added below code for the language to be print based on Customer langauge
Controller class ---
PreRunModifyContract method --
public void preRunModifyContract()
{
this.parmReportContract().parmRdlContract().parmLanguageId(CustTable::find(custinvoiceJour.OrderAccount).languageId());
}
is it rite ?
for example suppose --
i have 10 Sales order --
i have select the 4th Salesorder = S0001 from All Sales Order and that SO having the Customer = C0001, and the language set = JA
then report should be print in Japanese.
is the above code is find exact customer with language for respective salesorder ? may be the customer C0001 set to different language for different Sales order.
please give me more shed on this