Hi all,

Further to my original post, I've managed to create a free test invoice with
1 line with some extremely simple code.

    CustTable customer;
    CustInvoiceTable header;
    CustInvoiceLine detail;

    ;

    customer = CustTable::find('4000');

    header.InvoiceAccount = '4000';
    header.initFromCustTable(customer);
    header.numberSequenceGroup = 'tesat';
    header.insert();

    detail.ParentRecId = header.RecId;
    detail.Description = '200601251000';
    detail.AmountCur = 913.00;
    detail.LedgerAccount = '11005';
    detail.insert();

I'd still like to look at a production-grade integration with all the checks
and balances implemented in it.

Regards,

Christoph.



-----Original Message-----
From: [email protected]
[mailto:[EMAIL PROTECTED] On Behalf Of cdlmalherbe01
Sent: 25 January 2006 09:30 AM
To: [email protected]
Subject: [development-axapta] Free text invoice

Hi all,

I'm doing my first integration into core Axapta tables.

I'm looking for an example or a reference to an example on how to
integrate a free text invoice. I inderstand the principle but just
need guidance on the exact sequence of steps to follow.

Any help will be greatly appreciated.

Kind regards,

Christoph Malherbe







Yahoo! Groups Links










YAHOO! GROUPS LINKS




Reply via email to