cancel
Showing results for 
Search instead for 
Did you mean: 

how to get user for checked out record using MDM Java API

Former Member
0 Kudos

I am developing WebDynpro java application to perform SAP MDM CRUD operations using MDM Java API. 

I want to display if particular record is checked out , then it is checkout by which user using MDM Java API.

is this possible using java API? if not then is der any other workaround to get owner of checked out record in WebDynopro Java?????

Thanks in advance.

Regards

Kavita

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

haven;t used it myself but you could try something like

get the checked out versions of the original

RetrieveCheckoutRecordsByOriginalCommand

get the join permissions:

RetrieveJoinCheckOutPermissionsCommand

get the users who are part of this checkout:

getJoinCheckOutPermissions()

and then run getUserIds() on

com.sap.mdm.data
Class JoinCheckOutPermissions

to get all the users involved in check out.