We would like our sales department to authorise the sales quotations from collegues, before they send them to a Customer. I hoped is was a standard functionality in IFS 9, but could not find it.
Anyone an idea about this?
We would like our sales department to authorise the sales quotations from collegues, before they send them to a Customer. I hoped is was a standard functionality in IFS 9, but could not find it.
Anyone an idea about this?
Best answer by Jouni
You can create event quite simple, what check something when you release quotation.
Then all depends what kind of check you like to make.
This eg it check if quotation coordinator is same as person who release quotation. (easy to go around changing coordinator when release )
Event code:
declare
BEGIN
IF '&NEW:AUTHORIZE_CODE' = '#PERSON_ID#' THEN
ifsapp.error_sys.Record_General('OWN_ERROR',' You can''t release your own quotation') ;
END IF;
END;
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.