03 June 2010

Hi,You can use 'TextBuffer' for manipulating the text.

___________________________________


static void Job4(Args _args)
{

TextBuffer buffer;
str source;
;

source = "I am first.I am second.I am third";
buffer = new TextBuffer();
buffer.setText(source);

while (buffer.nextToken(0, '.'))
{

info (buffer.token());

}

}

Ledger Voucher creation Framework and x++ code to create ledger voucher

 Please click her for MS reference file Below is the out of the box example reference and code. SalesInvoiceJournalPostSubBill_Extension->...