Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- All Products
SiperianClient sipClient = SiperianClient.newSiperianClient(new File( context.getTestPTTStartDir() + "siperian-client.properties" ) ); ExecuteBatchMatchRequest req = new ExecuteBatchMatchRequest(); req.setTableName(jobContext.getTableName()); req.setMatchSetName(jobContext.getMatchSetName()); while(rc==0) { ExecuteBatchMatchResponse executed = (ExecuteBatchMatchResponse) sipClient.process( req ); errMessage = executed.getMessage(); rc = executed.getRetCode(); completeStep((rc == -21014) ? 0 : rc, errMessage, context, jobContext); } if(rc == -21014) { // SIP-21014: Error registering start of Match failed during post to Cleanse Server: Base Object C_CUSTOMER is empty or no more records to match // Regard it as normal completion so that test could continue the left jobs rc = 0; }