BPM - How to and syntax question

I was able to use a BPM Data form for my messages.



Problem solved.



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
cathyattechnologicsys
Sent: Monday, May 13, 2013 11:49 AM
To: vantage@yahoogroups.com
Subject: [Vantage] BPM - How to and syntax question





We are on Epicor 9.05.605.

Background: Company only wants 1 approved rev

In Engineering Workbench, we want a message box to appear when they try to
checkout an Unapproved Rev. For some reason, changes are being made to older
revs and when they look at the traveler or BOM for the newer rev - the
changes are not there.

What I did so far is use the BO EngWorkBench.CheckOut.

This is my BPM

DEFINE VARIABLE Msg as CHARACTER NO-UNDO.

Find First PartRev where PartRev.PartNum = ipPartNum
and PartRev.RevisionNum = ipRevisionNum
and PartRev.Approved = False no-lock no-error.

If available PartRev then DO:

ASSIGN Msg = "This Rev is unpproved " + ipRevisionNum.
{lib/publishinfomsg.i &infomsg = Msg}.

End.

What I also need this to do - is a dialog box that ask if they want to
proceed.

So if it is yes - they continue checkout
If it no - the request is cancel.

What is the best way to do this?

Thank you,
Cathy





[Non-text portions of this message have been removed]
We are on Epicor 9.05.605.

Background: Company only wants 1 approved rev

In Engineering Workbench, we want a message box to appear when they try to checkout an Unapproved Rev. For some reason, changes are being made to older revs and when they look at the traveler or BOM for the newer rev - the changes are not there.

What I did so far is use the BO EngWorkBench.CheckOut.

This is my BPM

DEFINE VARIABLE Msg as CHARACTER NO-UNDO.

Find First PartRev where PartRev.PartNum = ipPartNum
and PartRev.RevisionNum = ipRevisionNum
and PartRev.Approved = False no-lock no-error.

If available PartRev then DO:

ASSIGN Msg = "This Rev is unpproved " + ipRevisionNum.
{lib/publishinfomsg.i &infomsg = Msg}.


End.

What I also need this to do - is a dialog box that ask if they want to proceed.

So if it is yes - they continue checkout
If it no - the request is cancel.

What is the best way to do this?

Thank you,
Cathy