Enterprise Data Management (EDM) REST API Requests II

Today, let’s continue exploring REST requests related to EDM. Have a read of part 1 here. We are now going to look at the next steps that we need to follow to complete our request process.

Upload a File

EDM in its current form requires an Excel spreadsheet, to be used for requests. This makes automation a bit difficult, in my opinion. I hope Oracle is thinking about a more efficient file-based request process (like .csv or .txt) in addition to Excel. This way, Excel could be used for business users performing requests, and other formats could be used for automations and integrations. Maybe I am just missing an obvious trick, and non-Excel options are indeed available. Post a comment if this is the case so that everyone can learn.

Nonetheless, Excel it is, and the is what the Excel file needs to look like.

  1. At minimum, we need the highlighted values included in the file.
  2. The file needs to be a “.xlsx” file.
  3. The tab name needs to be the same as the viewpoint name.

A great post on allowed “Action Codes” from Kate Helmer can be found here.

The REST API documentation for uploading the file can be found here. Part of the reason why I wanted to do this post, was that the REST call is a little bit tricky to decipher from Postman.

The required elements for this call are:

  1. Content-Type header: this has to be set as “multipart/form-data”. The “boundary” can be set to whatever.
  2. File: path and name of the file being loaded.
  3. FileName: name of the file being loaded.

While the documentation mentions that bullet 2 is optional, I found that I had to add it to Postman to get it working. Here is my setup (note that the request ID generated earlier is needed here):

 

NOTE: We need the request ID generated in the previous step to complete the POST action for file upload process.

Once we run the request, we get a “URI” which needs to be collected and saved for the next step in the process. This is the so-called “attachment URI”.

 

 

Generate Request Items

This step loads the records within the attachment, into EDM in a draft state. This too, is a POST action, with documentation found here. The 2 elements needed for this action are the request ID, the sheet name of the spreadsheet you are trying to load, and the attachment URI.

Once this is run successfully, you can see the 2 nodes added to the hierarchy in an uncommitted state.

Commit the Request

The last step to perform is to commit the nodes to EDM. There may be other steps based on your workflow, but, in most cases, “promoting” the nodes should result in committing the nodes to memory. This is another “POST” action, for which you will need the request ID. The documentation for this transition stage, can be found here.

If you check on EDM, you can see that the request has been completed.

This brings our series on creating requests and looking towards automating EDM maintenance using the REST API to an end. I am sure EPM-Automate will catch up soon, and provide these capabilities.

 

Avatar

About Vijay Kurian

Known as the Clem Fandango of EPM consulting, Vijay Kurian has been developing enterprise solutions for companies for the last 12 years (increment years if reading post-2015). Having worked with Essbase, Planning, DRM and other assorted technologies during that time, he’s made the frankly, average decision, to write about them. He is, surprisingly, an Oracle ACE Associate. He hopes to contribute frequently to US Weekly, People and Sensible Chuckle magazines on improving reporting solutions, creating master data management systems and zzz…

3 Comments

  1. EDM vs. EPMware? Let’s compare in a YouTube and let users decide?

  2. Great post

Leave a Reply

Your email address will not be published. Required fields are marked *