web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Code to get Miscellaneous charges of purchase line in Ax 2012

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
This is Code to get Miscellaneous charges of purchase line in Ax 2012. You can try below code to check in job.

 PurchTable purchTable;  
PurchLine purchLine;
MarkupTrans markupTrans;
while select * from purchLine
Join purchTable
Join markupTrans
Where purchTable.PurchId == purchLine.PurchId
&& markupTrans.TransRecId == purchLine.RecId
&& purchTable.PurchId=="PO-0000043"
{
info(strFmt("%1 , %2 , %3",purchLine.PurchId,markupTrans.Txt,markupTrans.Value));
}


This was originally posted here.

Comments

*This post is locked for comments