↧
Restrict OutGoing Payments above 20000
Hi Guys. I want to restrict an OutGoing Payment in which the Cash Transactions for Cash Account above 20000 should not be added. So pls is there any work around for this to get the result with out...
View ArticleRe: Restrict OutGoing Payments above 20000
Hi.. you can develop Validation Under SP_TransactionNotification Regards,Bhavank
View ArticleRe: Restrict OutGoing Payments above 20000
Hi Vamsi, Try this: IF (@Object_Type = '46') AND (@transaction_type in (N'A', N'U'))BEGINIF EXISTs (SELECT T0.DocNum FROM OVPM T0 WHERET0.DocNUM = @list_of_cols_val_tab_del and T0.CashSum >...
View Article