Featured
-
No Featured Found!
Tags
Sample SOAP request for executeBatchDelete
By using executeBatchDelete api you can clean the records in BO and its child BO.
Sample SOAP request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:siperian.api">
<soapenv:Header/&g...
SIF API to Generate Match Tokens on Record
Following example illustrate how you can Generate Match Token for record in Base Object using SIF API:
TokenizeRequest request = new TokenizeRequest();
request.setSiperianObjectUid("BASE_OBJECT.MY_BASE_OBJECT"); // Name of the Base Object
Re...
SIF API to Restore Record in Base Object
Following example illustrate how record in Base Object can be restored using SIF API. Restore SIF API will change the status of HUB_STATE_IND from -1 to 1 i.e. it will restore the record from soft delete.
RestoreRequest request = new RestoreRe...
SIF API to delete record from Base Object
If you want to soft delete the record from Base Object you can use following code, please put corresponding values for items on which comment has been written:
DeleteRequest request = new DeleteRequest();
RecordKey recordKey =...
SIF API to create entry in Base Object
If requirement is to create entry in Base Object using SIF API you can use following code:
PutRequest request = new PutRequest();
request.setGenerateSourceKey(true);
RecordKey identity = new RecordKey();
ide...
SIF Authentication using Java API
You can authenticate user in your application using SIF (Service Integration Framework) Java API.
Following is the code you can use to authenticate the user:
Properties props = new Properties(); &...
Introduction to Master Data Management
Overview
This tutorial will guide you about Master Data Management Hub, Informatica. It is intended to provide Project Stakeholders, Business Users, Business Analyst and Technical Teams with the technical design and configuration of the
...
How to solve com.siperian.mrm.cleanse.api.CleanseException: -99: SIP-16165
While running match you encounter following error:
com.siperian.common.SipRuntimeException: SIP-09069: Failed to execute java null
Failed to execute java null
at com.siperian.common.SipRuntimeException.createNotExternalized(S...
ERROR: Cannot lock table [TABLE_NAME] because the table is locked by another process
When by mistake we stopped the IBM WAS Server when Match Job was running. It didn't allowed us to run again the Match Job, every time it was giving following error:
[ERROR] com.delos.cmx.server.datalayer.repository.object.ReposTableObject$Ta...