Data Pipeline in Oracle EPM Account Reconciliation

Search for a command to run...

No comments yet. Be the first to comment.
This series will cover topics reated to Oracle EPM Account Reconciliation
In this article, we will learn how to create a Data Pipeline in Account Reconciliation to set the period status. We will be using the “Set Period Status” job type. Creating your Pipeline Navigate to Application > Data Exchange Press enter or click to...
I will be writing a series of articles about the newest REST APIs available in Oracle EPM Instances. Beginning 26.04 (April 2026), Oracle has started to introduce many more APIs that makes it easy for

This quick, step-by-step guide shows how easy it is to connect to an Oracle Cloud Database from VS Code. It covers the basics; subsequent articles will explore more advanced features. For full details

This was originally part of my Medium Articles. Another day, another experiment with the Export Data Slice REST API. I have written about the Export Data Slice rest api earlier. Do read that for an explanation for the beginners. Here is a link to the...

Alright. It is again that time of the month. And tons of updates in EPM Planning. I was surprised to see so many updates. I guess this is a gift for Halloween and may be also for AI World. If you are attending AI World and would like to connect, mess...

In my last article we explored how to create a data pipeline in Account Reconciliation to set the period status. That was a pretty simple one. I hope you are feeling awesome about creating that one. Let’s now explore how to create a pipeline that wil...

Hey everyone. Today I wanted to cover a topic that is dear and near to me — Data Pipeline in Oracle EPM.
While Pipeline was introduced way back (its been that looong that I dont event remeber when), it was never available in Account Reconciliation. It was a long wait. However, as part of the August 2025 updates, Pipeline was introduced in Account Reconciliation.
In the next few articles, I will cover data pipeline specifically for Oracle EPM Account Reconciliation. In the first article, we will look at what job types are available as of September 2025. Without any further delay, let’s look into what is available for Account Reconciliation.
Here is a quick look at what job types are available as of September 2025. Some jobs are specific to either the Reconciliation Compliance module or the Transaction Matching module.
Press enter or click to view image in full size

You can read more about these jobs here.
You have a few different ways to invoke a data pipeline.
Manually exeucting the pipeline
Scheduling the pipeline using the Job Scheduler
Using EPM Automate
Using REST API
Use the runPipeline command to execute or invoke the Data Pipeline using EPM Atuomate. You can read more about it here.
If you want to use REST API, use the Data Integration REST API to invoke the pipeline. Here is a sample code snippet.
{
"jobName": "DAILYLOAD",
"jobType": "pipeline",
"variables": {
"STARTPERIOD": "Jan-23",
"ENDPERIOD": "Jan-23",
"IMPORTMODE": "Replace",
"EXPORTMODE": "Merge",
"ATTACH_LOGS": "N",
"SEND_MAIL": "ALWAYS",
"SEND_TO": "user@company.com"
}
}
jobName is Short name of the Pipeline
jobType should be pipeline
You can read more about the REST API usage here.
In the next few articles, I will dive deeper into individual job types and how you can configure them. I will also be making accompanying videos so can follow along.