I had “AND ttOrderDtl.RowMod <> ‘’ “ in there and it still did it
I will toss some message lines in there to verify what OrderLineNo is tossing the message
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
On Behalf Of Jose Gomez
Sent: Tuesday, March 25, 2014 4:53 PM
To: Vantage
Subject: Re: [Vantage] Re: BPM Question V8.03.405a
The reason you are getting that error is because you are not narrowing down your criteria to the modified rows. You can simply add where ttOrderDtl.RowMod ='A' or 'U' and it should stop doing that. If for some reason you want to modify the rest of the OrderDtl's at the same time then
You can fix it by simply refreshing the data-set on the post processing event. Run a GetByID call on the dataset on Post Processing after you've code has ran. The code to do this is already in the forum
Jose C Gomez
Software Engineer
T:
904.469.1524 mobile
Quis custodiet ipsos custodes?
On Tue, Mar 25, 2014 at 2:34 PM, <bwalker@...> wrote:
Method is SalesOrder.Update
The POLine field is for the customer's PO Line (a character field).
I need the numeric value of POLine to be copied into Number01
I have it running Pre Process and it works for new entries - it throws the error when you go back into the line and try to edit the POLine field.