cancel
Showing results for 
Search instead for 
Did you mean: 

How To Keep UoM Name as Mandatory Field for Purchase Request

0 Kudos
79

Hi Friends,

I want to keep UoM Name as Mandatory Field in Purchase Request because the users changing manually at the time of PR.

Regards,

Ganesh Prasad

View Entire Topic
former_member183582
Active Participant
0 Kudos

You can make the following transaction notification notification

IF @transaction_type IN ('A','U' ) AND @Object_type = '1470000113'
Begin
-------------------------------------------PR01--------------------------------------
Set @count1=(Select count(*)  from PRQ1 where DocEntry=@list_of_cols_val_tab_del and unitMsr is null)
  If @count1>0
  Begin
   SET @Error = 1
   SET @error_message = 'Please enter UoM name'


  End

End