cancel
Showing results for 
Search instead for 
Did you mean: 

Usersign2 in UDO-SAP Business One

sudhirtamilvanan
Discoverer
0 Kudos

Dear Experts,

is there any way to get update user details for a UDO similar to marketing documents?

I checked the change log, but the history table for UDO is also not showing update user details just showing usersign and creator.

is there any way to capture the current user through Transaction Notification and update as update user in a udf.

Regards,

Sudhir Tamilvanan

Accepted Solutions (0)

Answers (1)

Answers (1)

Johan_H
Active Contributor
0 Kudos

Hi,

Please try this query with a formatted search in your udf:

SELECT T0.[U_NAME] FROM [OUSR] T0 WHERE T0.[internal_K] = $[USER]

Regards,

Johan

sudhirtamilvanan
Discoverer
0 Kudos

Dear Johan,

I have tried above query, but it work for FMS not for transaction notification. Am trying with transaction notification.

Regards,

Johan_H
Active Contributor
0 Kudos

Hi,

You cannot delete, update or insert directly from transaction notification. If you want to register the user in a UDF, you will have to use a formatted search.

You can also try to create a stored procedure to perform the update, and call that stored procedure in the transaction notification. However, I do not know for sure that this will work.

Regards,

Johan