on 2012 Dec 18 3:54 AM
I need to set the Reference field in the Incoming Payment be mandatory. could someone help me do it in the SBO_SP_TransactionNotification.
Hi
Try this
IF @transaction_type in (N'A',N'U') AND @Object_type = N'24'
BEGIN
If Exists (SELECT T0.DocNum FROM ORCT T0 WHERE Isnull(T0.CounterRef,'')='')
and T0.DocNum = @list_of_cols_val_tab_del
Begin
Select @Error = 2, @Error_Message = 'Reference Can't be Null '
End
End
Regards
Balaji
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
102 | |
8 | |
8 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.