[progress Communities] [progress Openedge Abl] Forum Post: Trigger After Update Does Not...

  • Thread starter Thread starter Wave Kasipat
  • Start date Start date
Status
Not open for further replies.
W

Wave Kasipat

Guest
I have one trigger "After Update" that Type "Update Field Value", It work perfectly when I update record via UI in rollbase. But this trigger does not run when I update records by Rollbase Rest API updateArr. I call rest from java like this. uri = UriBuilder.fromUri(readConfig.getRBServUrl()) .path("updateArr") .queryParam("sessionId", loginFSCT.getSessionId()) .queryParam("output", "json") .queryParam("objName", "ATM_ApfP") .build(); target = client.target(uri); response = target.request().post(Entity.entity(xmlStr, MediaType.APPLICATION_ATOM_XML_TYPE),Response.class); with this xml. " DN DN DN DN DN " and response is {"status":"ok" } also all records updated correctly, but only trigger that didn't run. Am I missing some parameter in xml or there Is other way I can do to run this trigger?

Continue reading...
 
Status
Not open for further replies.
Back
Top