cancel
Showing results for 
Search instead for 
Did you mean: 

Need SPT which allow only a single user to add or Edit BP Master Data

Former Member
0 Kudos

Hi Experts

i need a SPT , which should allow only the mention User to add or edit BP Master Data

Regards

Accepted Solutions (1)

Accepted Solutions (1)

former_member185682
Active Contributor

Hi Shahan

You can do something like this:

IF (@object_type = '2' AND @transaction_type IN ('A', 'U'))
BEGIN
	IF (SELECT CASE WHEN @transaction_type = 'A' AND UserSign <> 1 THEN 1
				    WHEN @transaction_type = 'U' AND UserSign2 <> 1 THEN 1
			        ELSE 0 END 
		FROM OCRD WHERE CardCode = @list_of_cols_val_tab_del) = 1
	BEGIN
		SET @error = -100
		SET @error_message = 'Only user 1 is able to create and edit business partners'
	END
END

Replace the value 1 in UserSign and UserSign2 comparison with the Id of the user that is allowed to create and edit BP.

Kind Regards,

Diego Lother

Answers (0)