Hi Nikolaos,
I am not able to see the value in CustInvoiceTable when i debug the dp class, but when I open table browser I can see the values.
Why isnt it reflecting when i am fetching the field in dp class.
please find my code snippet from both classes:
public final void initValue()
{
CustInvoiceTable custInvoiceTable;
next initValue();
FormDataSource ds = this;
custInvoiceTable = ds.cursor();
custInvoiceTable.XXXFreeTextReportTitle = CustFormletterParameters::find().XXXReportTitle_FTI;
}
protected void populateFreeTextInvoiceHeaderFooterTmp(CustInvoiceJour _custInvoiceJour, CompanyInfo _companyInfo)
{
next populateFreeTextInvoiceHeaderFooterTmp(_custInvoiceJour,_companyInfo);
CustInvoiceTable custInvoiceTable = _custInvoiceJour.custInvoiceTable();
FreeTextInvoiceHeaderFooterTmp freeTextInvoiceHeaderFooterTmp = this.getFreeTextInvoiceHeaderFooterTmp();
while select freeTextInvoiceHeaderFooterTmp
where custInvoiceTable.InvoiceId == _custInvoiceJour.InvoiceId
{
freeTextInvoiceHeaderFooterTmp.XXXFreeTextReportTitle = custInvoiceTable.XXXFreeTextReportTitle;
}
}