Hello everyone!
I have a question and appreciate your help.
I need to create purchase orders in GP as part of our integration. I am calling the eConnect stored procedures in order, taPopIvcTaxInsert (for inserting taxes), taPoLine (for creating PO lines) and taPoHdr (for creating PO).
Our software tracks taxes on line level of purchase order, and I need to do the same in GP. The problem I have is, the stored procedure taPopIvcTaxInsert has an optional parameter 'ORD' which can be used to specify purchase order line sequence. If I don't specify it, the taxes are not properly tracked on the line and this is the result:
However, since I know the sequence number that GP is creating internally is multiples of 16384, I can specify that for that ORD parameter and get the correct result like this:
now, my question is how reliable it is for me to assume that sequence numbers for PO lines that I am creating, are always multiple of 16384? is that a behaviour that has changed in recent versions of GP or can possibly change?
I appreciate your help.