CommaIo urfile;
LedgerTrans LedgerTrans1;
Container container1;
sqlDictionary sqlDictionary;
TableName tablenm;
;
tablenm = "LedgerTrans1";
select * from sqlDictionary where Tablename2id(tablenm) == sqlDictionary.tabId;
if(sqlDictionary.RecId > 0)
{
urfile= new CommaIo("c:\\test.doc","w");
urfile.outFieldDelimiter("\t");/
while select LedgerTrans1
{
container1= [LedgerTrans1.AccountNum,LedgerTrans1.Txt];
urfile.writeExp(container1);
}
}
To Cancel Deliver Remainder through X++ you can use below code sample. Thanks. static void _CancelDeliverRemainder_Sales(Args _args) { SalesLine SalesLine = SalesLine::find('SO0013', true); ; if (SalesLine) { // Set remaining inventory Qty to zero SalesLine.RemainInventPhysical = 0; // Set remaining physical Qty to zero SalesLine.RemainSalesPhysical = 0; // We have to cancel the SalesLine SalesLine.PurchStatus = PurchStatus::Canceled; SalesLine.update(); ...