cancel
Showing results for 
Search instead for 
Did you mean: 

Need Java API for Matching Record

Former Member
0 Kudos

Hi,

I have been worked in MDM 5.5 SP06. As per my scenario, i have one registration form connected with MDM repository using Java API. After i am filling the registration form, it goes to approval, that time i need to match the field values with the MDM repository existing records if it is already existing or not using MDM Java API. I have searched JavaAPI for the Matching records with MDM Repository, i cannot find anything regarding this.

Please help me regarding this.Its very urgent.

Helpful answer are appericated.

Regards

Prakash T

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

It looks like you are basically trying to do what Lars did in his blog:

/people/lars.rueter/blog/2007/03/29/mdm-java-api-2--matching-example

Hope that helps, it helped me.

nitin_mahajan2
Contributor
0 Kudos

ExecuteMatchingStrategyCommand

A command to execute a matching strategy for internal source records.

ExecutetMatchingStrategyForNewRecordValuesCommand

A command to execute a matching strategy for external source records.

RetrieveMatchedRecordsCommand

A command to retrieve the records that matched the source record for a matching strategy.

RetrieveMatchingResultCommand

A command to retrieve the matching results for a matching strategy.

RetrieveMatchingStrategiesCommand

A command to retrieve the list of matching strategies.

TerminateMatchingStrategyCommand

A command to terminate a running matching strategy.

Use RetrieveMatchingStrategiesCommand to get the stretagies available in MDM

RetrieveMatchedRecordsCommand get the records that match the stretagies.

and then loop through all to work.

I have also started working on same. I believe this is the way to do it.

Will update once i am done. and if you have finished, let me know how you did:-)

Former Member
0 Kudos

Hello.

Will this one do?

[RetrieveMatchedRecordsCommand|http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/matching/commands/RetrieveMatchedRecordsCommand.html]

Best regards

Dominik