How to Dynamically Add Metadata from EPBCS to EDMCS Using REST and GROOVY

Featured

Update I have added loops to check the job status for the creation of the attachment and the import of the transactions. Here is an example of the code in groovy def LOOP_STATUS = new JsonSlurper().parseText(jsonResponse.body) as Mapprintln "$RESTSTAGE Status is $LOOP_STATUS.status"while(LOOP_STATUS.status != "COMPLETED") {jsonResponse = operation.application.getConnection("EDMCS").get("/jobRuns/$jobid/result").header("Content-Type", "application/json").asString()LOOP_STATUS = new JsonSlurper().parseText(jsonResponse.body) as Mapprintln "$RESTSTAGE Status … Continue reading How to Dynamically Add Metadata from EPBCS to EDMCS Using REST and GROOVY

How to Utilize Groovy to Create Rule Sets

The goal of this blog is to demonstrate how, in a Groovy rule, we can: Execute a calculation only on the changed cells Rollup the Financial Cube utilizing the OOB rollup rule Transfer the data to reporting cube using a Smart Push with overrides. Before I worked on this approach, I would use three different rules as part of a rule set, but this technique opens up your implementation toolkit to be able to do so much more.......