cancel
Showing results for 
Search instead for 
Did you mean: 

PO Confirmation Approval Proc.

Former Member
0 Kudos

I wolud like to create a Approvl Procedure everytime a user create a PO Confirmation from the Sales Order, so far I has this query

SELECT 'TRUE' WHEN $[ORDR.PoPrss] = 'Y'

but it give an error ,

Any ideas?

Accepted Solutions (1)

Accepted Solutions (1)

AlexGrebennikov
Active Contributor
0 Kudos

try the following query:[code]IF $[ORDR.PoPrss] = 'Y'

SELECT 'TRUE'

ELSE

SELECT 'FALSE'[/code]HTH

Answers (1)

Answers (1)

Former Member
0 Kudos

Thak you Alexey:

That will solve the problem that I post, but what I really need is the approval to activate on the next screen (PO Confirmation)once I click add

On the solution that you reply it would create an Approval Procedure on the Sales Order.

Is theres way to create an Approval for any other document not listed on the Approval Template Document's Tab??

For SBO a PO Document is different from a PO Confirmation Document

Any help will be appreciate it