cancel
Showing results for 
Search instead for 
Did you mean: 

Blocking update option for UDO Form.

former_member261836
Participant
0 Kudos

Hi EveryOne,

I have created a UDO Form for which I want to block the update option through

stored procedure (SP) Notification. Can anyone please guide me how to achieve this.

Thanks & Regards

Vedanth Mylamala

Accepted Solutions (1)

Accepted Solutions (1)

former_member185682
Active Contributor
0 Kudos

Hi Vedanth,

You can do something like this:

IF @object_type = 'your udo code' AND @transaction_type = 'U' 
BEGIN
	SET @error = '-1'
	SET @error_message = 'Update action is not allowed for this form'
END

Hope it helps.

Kind Regards,

Diego Lother

Answers (0)