BPM Quote question

Steve,

I tried the Pre-Processing on the Quote.Update it did not work.
I gave it a condition to monitor a change in the PartNum "any to any"
and that did not work. I then changed the condition to monitor the
Selling Quantity because that is the only other field we have to get
into, to change, and when the line is created and the part number is
added, the Selling quantity is set at 0 and we must go in and change it.
It isn't pretty, but it works. The code I have looking for RowMod =
"A" does not seem to respond to a new QuoteLine row.
The ideal would be to have it monitor the QuoteLine field and fill the
Number01 when the new line is added. But I can't seem to get that to
respond either.

Thanks for your suggestion.
It helped me get closer to the solution.
Dave



--- In vantage@yahoogroups.com, "Stephen Edginton" <stephene@...> wrote:
>
> Dave,
>
> Sorry I replied quickly.
>
> Use a Pre-Processing Directive on the Quote.Update
> method.
>
> Then assign the Number01 field if it is not already
> assigned or you could filter for newly created items with rowmod.
>
>
>
> Regards,
>
> Stephen
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> Of ofcwiz
> Sent: 27 June 2008 00:03
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: BPM Quote question
>
>
>
> Steve,
>
> I don't understand your response.
> There is no pre-update, only pre-processing, base, and post-processing
> as method directives, and the idea is to get the same value into the
> "Number01" field as there is in the "QuoteLine" field at the time the
> new line is created.
> We can enter it manually but the intent is to update it automatically.
>
> Maybe I've misunderstood your answer?
>
> Thanks,
> Dave
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
> "Stephen Edginton" <stephene@> wrote:
> >
> > why not use pre-update if number01 = 0 assign the value you require.
> >
> >
> >
> > From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> [mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
> Behalf
> > Of ofcwiz
> > Sent: 26 June 2008 22:41
> > To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> > Subject: [Vantage] BPM Quote question
> >
> >
> >
> > Looking for a way to add the "QuoteLine" # to the custom "Number01"
> > field on the Quote line when a new quoteline is added. Essentially
> > ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine
> >
> > I've tried it using Pre-processing and Post-processing and it goes to
> > the "Number01" field like it is doing some work but nothing shows up
> > there.
> > Here is the code I'm using:
> > ----------------------------------------
> > find first ttQuoteDtl where ttQuoteDtl.RowMod = 'A' no-error.
> > if available ttQuoteDtl then do:
> > assign ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine.
> > end.
> > ----------------------------------------
> > I based it upon Quote.ChangePartNum
> >
> > Any assistance would be appreciated.
> >
> > Dave
> >
> >
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
>
>
>
> [Non-text portions of this message have been removed]
>
Looking for a way to add the "QuoteLine" # to the custom "Number01"
field on the Quote line when a new quoteline is added. Essentially
ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine

I've tried it using Pre-processing and Post-processing and it goes to
the "Number01" field like it is doing some work but nothing shows up
there.
Here is the code I'm using:
----------------------------------------
find first ttQuoteDtl where ttQuoteDtl.RowMod = 'A' no-error.
if available ttQuoteDtl then do:
assign ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine.
end.
----------------------------------------
I based it upon Quote.ChangePartNum

Any assistance would be appreciated.

Dave
why not use pre-update if number01 = 0 assign the value you require.



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of ofcwiz
Sent: 26 June 2008 22:41
To: vantage@yahoogroups.com
Subject: [Vantage] BPM Quote question



Looking for a way to add the "QuoteLine" # to the custom "Number01"
field on the Quote line when a new quoteline is added. Essentially
ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine

I've tried it using Pre-processing and Post-processing and it goes to
the "Number01" field like it is doing some work but nothing shows up
there.
Here is the code I'm using:
----------------------------------------
find first ttQuoteDtl where ttQuoteDtl.RowMod = 'A' no-error.
if available ttQuoteDtl then do:
assign ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine.
end.
----------------------------------------
I based it upon Quote.ChangePartNum

Any assistance would be appreciated.

Dave





[Non-text portions of this message have been removed]
Steve,

I don't understand your response.
There is no pre-update, only pre-processing, base, and post-processing
as method directives, and the idea is to get the same value into the
"Number01" field as there is in the "QuoteLine" field at the time the
new line is created.
We can enter it manually but the intent is to update it automatically.

Maybe I've misunderstood your answer?

Thanks,
Dave

--- In vantage@yahoogroups.com, "Stephen Edginton" <stephene@...> wrote:
>
> why not use pre-update if number01 = 0 assign the value you require.
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
> Of ofcwiz
> Sent: 26 June 2008 22:41
> To: vantage@yahoogroups.com
> Subject: [Vantage] BPM Quote question
>
>
>
> Looking for a way to add the "QuoteLine" # to the custom "Number01"
> field on the Quote line when a new quoteline is added. Essentially
> ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine
>
> I've tried it using Pre-processing and Post-processing and it goes to
> the "Number01" field like it is doing some work but nothing shows up
> there.
> Here is the code I'm using:
> ----------------------------------------
> find first ttQuoteDtl where ttQuoteDtl.RowMod = 'A' no-error.
> if available ttQuoteDtl then do:
> assign ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine.
> end.
> ----------------------------------------
> I based it upon Quote.ChangePartNum
>
> Any assistance would be appreciated.
>
> Dave
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Dave,

Sorry I replied quickly.

Use a Pre-Processing Directive on the Quote.Update
method.

Then assign the Number01 field if it is not already
assigned or you could filter for newly created items with rowmod.



Regards,

Stephen

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of ofcwiz
Sent: 27 June 2008 00:03
To: vantage@yahoogroups.com
Subject: [Vantage] Re: BPM Quote question



Steve,

I don't understand your response.
There is no pre-update, only pre-processing, base, and post-processing
as method directives, and the idea is to get the same value into the
"Number01" field as there is in the "QuoteLine" field at the time the
new line is created.
We can enter it manually but the intent is to update it automatically.

Maybe I've misunderstood your answer?

Thanks,
Dave

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
"Stephen Edginton" <stephene@...> wrote:
>
> why not use pre-update if number01 = 0 assign the value you require.
>
>
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf
> Of ofcwiz
> Sent: 26 June 2008 22:41
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Subject: [Vantage] BPM Quote question
>
>
>
> Looking for a way to add the "QuoteLine" # to the custom "Number01"
> field on the Quote line when a new quoteline is added. Essentially
> ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine
>
> I've tried it using Pre-processing and Post-processing and it goes to
> the "Number01" field like it is doing some work but nothing shows up
> there.
> Here is the code I'm using:
> ----------------------------------------
> find first ttQuoteDtl where ttQuoteDtl.RowMod = 'A' no-error.
> if available ttQuoteDtl then do:
> assign ttQuoteDtl.Number01 = ttQuoteDtl.QuoteLine.
> end.
> ----------------------------------------
> I based it upon Quote.ChangePartNum
>
> Any assistance would be appreciated.
>
> Dave
>
>
>
>
>
> [Non-text portions of this message have been removed]
>



[Non-text portions of this message have been removed]