cancel
Showing results for 
Search instead for 
Did you mean: 

Delete Tuple using Java MDM API

Former Member
0 Kudos

Hi,

i am not able to Delete tuple value using MDM java APi.kindly help

thanks,

pramod

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

This message was moderated.

junwu
Active Contributor
0 Kudos

what's the error?

Former Member
0 Kudos

Hi,

I am not getting any error but i am not able to find specific code for that,i search a lot even i write my code also.kindly help if u know how to do it.thanks

thanks,

pramod

Former Member
0 Kudos

Any Help ????

Former Member
0 Kudos

Hi,

there is no special API available to delete a tuple value. If you want to delete a tuple value from the main table, then you can set it

to MDM Null Value (it means execute record update command with MdmNull value for the tuple).

However if your tuple type is multituple, you can use the following API command:

multituplevalue.removeTupleValue( tupleRecordId ) ;

Or

multiTupleValue.removeTupleValue( tupleValue ) ;

Or

multiTupleValue.removeValue( int index ) ;

Or

multiTupleValue.removeValue( mdmValue ) ;

Regards.