Hello
I need to add some coding on the RFQ print. I added my code in the class PurchRFQSendDP in method ProcessReport. Find code sample below. When I run the report, nothing appears on the report.
I run the report through the request quotation form, click on the send button and the report is being printed.
When I tried to debug, it does not go through that class. Can anyone tell me in which class I can add this code.
Any help will be much appreciated.
Many thanks
Regards
Tabrez
if (queryVendRFQTrans.ItemId)
{
select firstonly PurchRFQLine
index hint LineNumberIdx
where PurchRFQLine.ItemId == queryVendRFQTrans.ItemId;
}
ItemDesc = PurchRFQLine.ItemName;
if (PurchRFQLine.ItemName == ItemDesc)
{
tmpPurchRFQSend.ItemName = ItemDesc;
}
else
{
tmpPurchRFQSend.ItemName = ItemDesc + ' - ' + PurchRFQLine.Name;
}
*This post is locked for comments
I have the same question (0)