To place file in Amazon S3 Bucket - we can use below method:
Use Put Object to place file into S3 Bucket.
Thanks,
Mady
Documented Issues which I faced in my daily work on Oracle EPM(On-Premise and Cloud), and also on OneStream
To place file in Amazon S3 Bucket - we can use below method:
Use Put Object to place file into S3 Bucket.
Thanks,
Mady
To upload file into EPM inbox/outbox folder or into EPM - DM - inbox folder, we can use below:
/interop/rest/11.1.2.3.600/applicationsnapshots/{applicationSnapshotName}/contents
Needs to use Post Method
Request: Select Binary Method
Use Post with below response:
{
"status" : "",
"details" : ""
}
Thanks,
Mady
To get file from AWS bucket:
To upload file into EPM inbox/outbox folder or DM inbox folder:
Post:
/HyperionPlanning/rest/v3/applications/NiccoFPR/jobs
Request:
{
"jobType" : "Administration Mode",
"jobName" : "AppAdminJob",
"parameters" : {
"loginLevel" : "Administrators"
}
}
In Mapping:
Thanks,
Mady
To Import Data: we can use below with RESTApi - to execute from OIC
Post:
/HyperionPlanning/rest/v3/applications/NiccoFPR/jobs
Request:
{
"jobType": "IMPORT_METADATA",
"jobName": "ImportMetaDataJob",
"parameters": {
"errorFile":"ImportMetaDataErrorFile.zip",
"importZipFileName": "myMetaDataDailyJob.zip"
}
}
Response:
{
"status" : 0,
"details" : "",
"jobId" : 224,
"jobName" : ""
}
Get Status:
/HyperionPlanning/rest/v3/applications/NiccoFPR/jobs/{jobIdentifier}/details
Import metadata status:
Response:
{
"items" : [ {
"recordsRead" : 0,
"recordsRejected" : 0,
"recordsProcessed" : 0,
"dimensionName" : "Departments",
"loadType" : "Metadata Import"
} ]
}
Thanks,
Mady
To import metadata using OIC - RESTApi, we can use below to automate the process.
To execute Import metadata, POST
/HyperionPlanning/rest/v3/applications/<appName>/jobs
Request:
{
"jobType": "IMPORT_METADATA",
"jobName": "ImportMetaDataJob",
"parameters": {
"errorFile":"ImportMetaDataErrorFile.zip",
"importZipFileName": "myMetaDataDailyJob.zip"
}
}
As you all know, we can't add additional member like "No Year" in Year Dimension. We can add number of years but not "No Year", as it is system defined.
But there is trick which Oracle published to add "No Year" in Year Dimension.
Steps are simple: