on 2023 Sep 20 9:00 AM
Hi
I want Notification so that user should not be able to enter discount at Footer Level in P.O
Thanks
Request clarification before answering.
HI,
Please try this
IF :object_type = n'22' AND (:transaction_type = n'U' or :transaction_type = n'A' )
THEN
SELECT
(
SELECT T0."DocEntry"
FROM OPOR T0
WHERE T0."DocEntry"=:list_of_cols_val_tab_del and t0."DiscSum">'0')
INTO temp_var_0 FROM DUMMY;
IF IFNULL(:temp_var_0,'')!=''
THEN
SELECT :object_type INTO Error FROM DUMMY;
SELECT 'Not Authorized to put the Discount value on Footer!' INTO error_message FROM DUMMY;
END IF;
END IF;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Have you tried with standard authorization for Purchase order under authorization?
Regards,
Nagarajan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
99 | |
16 | |
8 | |
7 | |
5 | |
4 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.