on 2016 Jun 23 5:15 PM
Hi Experts,
Is anyone able to provide me with example of SP Transaction notification to make ‘Additional Identifier’ field mandatory when creating new Item Master record please?
Greatly appreciate your help.
Many Thanks,
Matt
Hi Any example to check with SP transaction notification when an Item is created/updated and generate a .txt or .csv file?
thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Please try this,
IF @object_type = '4'
AND @transaction_type IN ( 'A','U')
BEGIN
if EXISTS (Select t0.SWW from OITM T0
where T0.SWW IS NULL and T0.ItemCode=@list_of_cols_val_tab_del)
begin
SElect @error = -1
SElect @error_message= 'Additional Identifier field mandatory'
end
end
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Matt,
If your issue are resolved so kindly closed the thread with mark the correct or helpful answer.
Thanks,
Kamlesh Naware
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Matt,
Please try below SP .....
IF @object_type = '4'
AND @transaction_type IN ( 'A','U')
BEGIN
if EXISTS (Select t0.SWW from OITM T0
where (T0.SWW ='' OR T0.SWW IS NULL) and T0.ItemCode=@list_of_cols_val_tab_del)
begin
SElect @error = -1
SElect @error_message= 'Additional Identifier field mandatory'
end
end
Thanks ,
Kamlesh Naware
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
100 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
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.