The best way to retrieve the good SalesLine from a CustInvoiceTrans is to use InventTransId field. InventTransId is unique (per company) in SalesLine.
select salesLine
where salesLine.InventTransId == custInvoiceTrans.InventTransId;
Steeve...
-----Message d'origine-----
De�: Danny Gaethofs [mailto:[EMAIL PROTECTED]
Envoy�: 16 novembre 2004 08:47
��: [EMAIL PROTECTED]
Objet�: [development-axapta] CustInvoiceTrans.lineNum versus SalesLine.lineNum
Dear all,
I am trying to print some additional information on the invoice
line. The information is not stored in the table CustInvoiceTrans
but remains in the table SalesLine, at least for now.
I created a display method that looks up the value.
Example:
The method contains the following
select salesLine where salesLine.LineNum == custInvoiceTrans.LineNum
&& salesLine.SalesId == custInvoiceTrans.SalesId;
return salesLine.SalesStatus;
To my surprise the display method is not finding the sales line.
I figured out that the custInvoiceTrans record is populated in the
method initFromSalesLine() on the table. This method sets the
lineNum correctly. This method was called by initJournalLine().
But afterwards the method initJournalLine() on the class
SalesFormLetter_Invoice calls the method setLinenum(sumByLineNum)
where sumByLineNum starts with value 0 and is raised by one
(sumByLineNum++) .
Why is this done that way? How can I ensure that the correct record
on the table SalesLine is retrieved in the display method.
regards,
Danny
Yahoo! Groups Links
| Yahoo! Groups Sponsor |
| Get unlimited calls to U.S./Canada |
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

