Page 1 of 1
Confirmation of running a TI process
Posted: Fri Nov 05, 2010 2:16 am
by mayorob03
I am interested in displaying a "Are you sure....?" prompt when a datadmin initially runs a process? Is this possible? Thanks!
Re: Confirmation of running a TI process
Posted: Fri Nov 05, 2010 2:35 am
by tomok
mayorob03 wrote:I am interested in displaying a "Are you sure....?" prompt when a datadmin initially runs a process? Is this possible? Thanks!
If you kick it off via a TM1 Action Button you can.
Re: Confirmation of running a TI process
Posted: Fri Nov 05, 2010 7:00 am
by Michel Zijlema
Hi,
Another option is to add a parameter to the process which will prompt with "Are you sure (Y/N)" and then add some code to the top of the Prolog tab of the process that checks the answer, f.i.:
IF(Upper(pPrompt) @<> 'Y');
ProcessQuit;
ENDIF;
(where pPrompt is the created parameter).
Note that the process will not prompt when run through a chore.
Michel
Re: Confirmation of running a TI process
Posted: Mon Nov 08, 2010 12:24 am
by mayorob03
Wow thanks Two great solutions which I will try. Thanks Tomok and MZ. I'll let you know how things turn out.