SlideShare a Scribd company logo
ODTUG KSCOPE 2018 - REST APIs for FDMEE and Cloud Data Management
REST APIs for FDMEE and
Cloud Data Management
Francisco Amores – inlumi Group
June 13, 2018
• Domain Lead – Master Data and
Integration @inlumi
• 12 years (From HAL to Cloud)
• Based in Malaga (Spain)
• Trail Running Lover
• Blogger
That’s me
EPM Roadmap
Methodology
Process
Improvement
Best Practices
Design & Build
Test & Roll Out
Go-Live Support
Performance Testing
Training
Managed Services
Hosting
Cloud Solutions
24x7 Support
Advisory Implementation Operations
WE
FOLLOW
THE SUN
FDMEE
On-Prem?
Cloud Data
Management?
EPM
Automate for
DM?
REST APIs for
DM?
Menu of the Day
Why Today’s Session?
I’m new to REST
REST APIs for FDMEE/CDM
The Next Level
Q&A
Why today’s topic?
The IT world is changing and
the clouds are constantly flying
over us
There is an important need to
integrate Cloud-Cloud and
Cloud-On Prem worlds
APIs are not a privilege
anymore, but a common need
FDMEE and Cloud Data
Management are part of
change
I’m new to What’s a Web Service?
What’s REST?
What’s JSON?
REST APIs
Web Services & REST
They make SW
application resources
available over
networks
Technology that allows
data transmission
across the network
Network
Send HTTP Request
Send HTTP Response
Service Requesters
(Clients)
Service Provider
(Server)
Architectural style for designing
Web Services (RESTful WS)
Easier alternative for such
complex technologies as SOAP
Uses HTTP to share information
between a client and a server
Stateless Services as Resources
(They don’t have memory)
REST
Web Services
JavaScript Object Notation
Language in which the REST Client and the REST Server speak
{
origin : Malaga,
destination: Orlando
how: flying
}
{
direct: No
shortest : 12h,
cost: 890€
}
RESTful Application Program Interface
Base URL + Endpoint path + (Request Parameters)
https://odtug-kscope18.pbcs.em2.oraclecloud.com:443/aif/rest/V1/jobs/{jobid}
Access to the REST resources (black boxes)
REST APIs are identified by URLs (Resources)
Usually available in OP
Requests and Responses
Request - encapsulates the instructions
• URL
• TYPE – GET/POST/PUT/DELETE
• BODY (Payload) – usually JSON
• HEADERS – Authentication, Content Type, etc.
Response - encapsulates the result
• BODY – usually JSON
• HEADERS – Content Type, etc.
Request URL
HTTP Method
Request Headers
Request Body
REST Clients
Advanced REST Client
HTTPBot
Programming/Scripting Languages Web Clients
for Chrome
1. Create Request
• Type, Authorization Header, Body*
• Other Headers
2. Click Send
3. See Response Body
Xxx
PowerShell
1. Encrypt Basic Authentication
2. Create payload (body)
3. Convert payload to JSON
4. Invoke REST
5. Parse Response
REST APIs for
FDMEE and
Cloud Data
Management
The REST APIs
Execute Rules and Batches
Import/Export Maps
Execute Reports
The Secret REST APIs
Overview
Post Job
Get Job
Details
{jobId}
{jobStatus}
While <> “SUCCESS”
Available in Cloud Data Management (V1)
Introduced in FDMEE 11.1.2.4.210 (Supported PSU220)
Execute UI tasks externally (admins/non-admins)
REST APIs Vs. EPM Automate (Wrapper)
 verbosing  concurrency  error handling
Basic Http Authentication
Upload/Download files with Migration REST APIs (admins)
Base URL
https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/aif/rest/{api_version}/{resource path)
https://planning-kscope18.pbcs.em2.oraclecloud.com:443/aif/rest/
http(s)://epmserver:port/aif/rest/{api_version}/{resource path)
http://epm11124:6550/aif/rest/V1/jobs
Upload File
Download File
Execute Data Load Rules
Resource Path /aif/rest/{api_version}/jobs
Request Type POST
Request Parameters Notes
jobType DATARULE
jobName Name of DLR (use “” if spaces)
startPeriod Period name
endPeriod Period name
fileName Must be in the inbox (use “” for predefined)
importMode APPEND/REPLACE/RECALCULATE/NONE (skip)
exportMode (E)PBCS/Planning FCCS/TRCS
STORE_DATA
ADD_DATA
SUBTRACT_DATA
REPLACE_DATA
NONE (skip)
REPLACE
MERGE
NONE (skip)
• HFM Replace by Security/Accum not supported
• FULL_REFRESH/SNAPSHOT/INCREMENTAL (OP)
• Can load Metadata (CDM)
• Location security applies
Execute Batches
Resource Path /aif/rest/{api_version}/jobs
Request Type POST
Request Parameters Notes
jobType BATCH
jobName Name of the batch
• Doesn’t accept parameters
• Ex: if you pass start and end periods, they
will be ignored
Import/Export Mappings
Resource Path /aif/rest/{api_version}/jobs
Request Type POST
Request Parameters Notes
jobType MAPPINGIMPORT
jobName Dimension Name/ALL
fileName CSV, .TXT, .XLS, or .XLSX
Must be in the inbox first
importMode REPLACE/MERGE
validationMode true/false
locationName Location name
• Specify the relative path with the filename
• Scripts supported in Text export
• Bug – security location is bypassed
Resource Path /aif/rest/{api_version}/jobs
Request Type POST
Request Parameters Notes
jobType MAPPINGEXPORT
jobName Dimension Name/ALL
fileName CSV, .TXT, .XLS, or .XLSX
XLS/XLSX exported as XLSM
locationName Location name
Execute Reports
Resource Path /aif/rest/{api_version}/jobs
Request Type POST
Request
Parameters
Notes
jobType REPORT
jobName Report name (as it is)
reportFormatType PDF, XLSX, HTML, EXCEL
parameters JSON with pairs “param name”:”param value”
• Generic error when invalid report
name
• Application/outbox/reports (OP)
Job Execution Response
Response
Parameter
Description
status -1 (in progress) / 0 (success)
1 (error)
2 (cancel)
3 (cancelled)
4 (invalid parameter)
jobStatus RUNNING / SUCCESS / FAILED
jobId Process ID in FDMEE/CDM
logFileName Log File (relative path)
outputFileName Output File (relative path)
processType COMM_LOAD_BALANCES / MAPPING_EXPORT / …
executedBy Login name of the user calling the REST API
details Exception message in case of errors
Links Links related to the Job
The secret GET/POST REST APIs
They are not documented but they do exist (supported?)
GET REST APIs
• Job Details (paging)
• Application and Details (definition, options, dimensions)
• Dimensions, Rules, Import Formats, Locations, etc.
POST REST APIs
• Refresh Metadata and Members
• Execute Scripts (Cloud and OP)
• Direct Import/Export Planning/PBCS/FCCS, Export to ARM
Refresh Dimension Members
Automate mouse click
Get Process Details into Excel
GET - /aif/rest/V1/jobs
Execute Custom Script
 Similar to REST resource for executing Reports (jobType = SCRIPT)
 OP – Custom Scripts
 CDM – System Maintenance Tasks only
Taking the
REST APIs to the
Next Level
Excel Mapping RESTloader
PowerShell Toolbox
Extended FDMEE API
Robotic Process Automation
Mobile Apps
Oracle Integration Cloud
EPMware Mappings
Excel Map RESTLoader
VBA API for REST APIs
Cloud/OP
Tasks
• Download Maps
• Upload Maps
• Scripts supported
• Send Email
• …
Downloading Mappings
Uploading Mappings
PowerShell Toolbox
Invoke-RestMethod
Scheduling/Email notifications
Admin ownership
.Net Libraries
Cloud/OP
Tools
• File Watcher
• Report Executor
• Rejected Records
• Adapters
• …
1. If there are files, then move files
to openbatch folder
2. Execute batch with REST APO
Extended FDMEE API
Custom Python/Java API
Used from FDMEE scripts (OP)
Tasks
• Download/Upload Maps
• Execute Rules/Batches
• Execute Reports
• Execute Scripts
• …
Executing Reports
Advance process logic (email…)
Get Job Id
Easy to rename reports
Error handling & verbosing
Better option than runreport utility
UiPath Robotic PA
Automate Business Processes/Tasks
Automate FDMEE/CDM Jobs
Health Checks
Cloud Adapters
Cloud/OP
Tasks
• HTTP Request
• JSON Deserialization
• Send Email
• …
Automating Rule/Batch
Mobile Apps
iOS and Android
Cloud/OP
Functionality
• Mapping Creator
• Rule Executor
• Report Executor
• Process Monitor
• …
Think about getting a
file in your email and
loading it from your
mobile/table
Data
Management?
Kscope.
iProcessMonitor
Download logs and Outbox files
Send emails to users
Capture rejected records
Etc.
Oracle Integration Cloud
Autonomous Integration Cloud
Integration PaaS (iPaaS)
Connect to on-prem
Pre-built adapters
REST adapter
Key Features
• Integration Apps
• Process Automation
• Visual Build
Running DM Rule
EPMware
MDM & DG Software
Manage FDMEE as app type
All mapping types
Direct import/export of maps
Deploying Map Requests
REST APIs for
FDMEE and CDM
are used to execute
jobs from external
clients
1
REST APIs can be
used in different
types of
deployment: cloud,
on-prem, and hybrid
2
As always, creativity
plays a very
important role
3
References
 My Blog - Fishing with FDMEE
 John Goodwin’s Blog
http://john-goodwin.blogspot.com/
 Oracle’s Documentation
 UiPath Robotics Process Automation
 Oracle Integration Cloud
Q&A
Francisco Amores
francisco.amores@inlumi.com
http://fishingwithfdmee.blogspot.com
@akafdmee
ODTUG KSCOPE 2018 - REST APIs for FDMEE and Cloud Data Management

More Related Content

PPTX
EPM Automate - Automating Enterprise Performance Management Cloud Solutions
PPT
Key Considerations for a Successful Hyperion Planning Implementation
DOC
Hyperion Implementation Questionaries
PPT
DOCX
HFM Zero view settings
PDF
HFM Equity Pickup Module
PDF
FDMEE Taking Source Filters to the Next Level
PDF
Currency Translation in HFM
EPM Automate - Automating Enterprise Performance Management Cloud Solutions
Key Considerations for a Successful Hyperion Planning Implementation
Hyperion Implementation Questionaries
HFM Zero view settings
HFM Equity Pickup Module
FDMEE Taking Source Filters to the Next Level
Currency Translation in HFM

What's hot (20)

PDF
Oracle Fusion Applications Navigation and Roles
PDF
Migration to Oracle ERP Cloud: A must read winning recipe for all
PDF
Case study: Managing a Fusion Financials Cloud Implementation with Oracle Uni...
PDF
Where Did That Come From? Techniques for Debugging HFM
PPTX
HFM API Deep Dive – Making a Better Financial Management Client
PDF
OATUG Forum - Utilizing Groovy and Data Maps for Instantaneous Analysis betw...
PDF
Finit solutions - Automating Data Loads with FDMEE
PPTX
Oracle Fusion Applications Security - Designing Roles
PDF
Salesforce Lightning Process builder
PDF
Oracle Self Service HR Document
PDF
FDMEE versus Cloud Data Management - The Real Story
PDF
Hfm to Financial Consolidation and Close Cloud
DOCX
Essbase app creation
PPT
Oracle EPM/BI Overview
PPTX
EPM, ERP, Cloud and On-Premise – All options explained - OOW CON9532
PPT
Hyperion Planning Security
PPTX
Oracle Project Financial Management Cloud in 9 Weeks
PDF
Best Practices in HFM Application Design
PDF
Groovy and PBCS is Game Changing
DOCX
Check element entry value on particular effective date
Oracle Fusion Applications Navigation and Roles
Migration to Oracle ERP Cloud: A must read winning recipe for all
Case study: Managing a Fusion Financials Cloud Implementation with Oracle Uni...
Where Did That Come From? Techniques for Debugging HFM
HFM API Deep Dive – Making a Better Financial Management Client
OATUG Forum - Utilizing Groovy and Data Maps for Instantaneous Analysis betw...
Finit solutions - Automating Data Loads with FDMEE
Oracle Fusion Applications Security - Designing Roles
Salesforce Lightning Process builder
Oracle Self Service HR Document
FDMEE versus Cloud Data Management - The Real Story
Hfm to Financial Consolidation and Close Cloud
Essbase app creation
Oracle EPM/BI Overview
EPM, ERP, Cloud and On-Premise – All options explained - OOW CON9532
Hyperion Planning Security
Oracle Project Financial Management Cloud in 9 Weeks
Best Practices in HFM Application Design
Groovy and PBCS is Game Changing
Check element entry value on particular effective date
Ad

Similar to ODTUG KSCOPE 2018 - REST APIs for FDMEE and Cloud Data Management (20)

PDF
Become a RESTful Iron Man with ARC (the Application, Not the Reactor)
PPTX
Collaborate 18 presentation by Dayalan Punniyamoorthy
PDF
How to Connect to Any REST API with No-Code
PDF
How to Connect to Any REST API with No-Code
PPTX
Design Summit - RESTful API Overview - John Hardy
PDF
How to Connect to Any REST API (Without Writing Any Code)
PPTX
A Complete Guide to Streamlining Business Processes
PDF
Zyncro rest api feb 2013
PDF
There is REST and then there is "REST"
PDF
RESTful Approaches to Financial Systems Integration
PDF
Coding 100-session-slides
PPTX
Modern REST APIs for Enterprise Databases - OData
PDF
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
PPTX
DEVNET-1001 Coding 101: How to Call REST APIs from a REST Client and Python
PDF
Hands-On Lab: Master REST APIs in CA Application Performance Management
PPTX
SFDC REST API
PPTX
Transform-to-Smart-ERP-using-Custom-Mobile-Apps.pptx
PPT
Transform-to-Smart-ERP-using-Custom-Mobile-Apps.pptx (3).ppt
PDF
(ATS6-DEV09) Deep Dive into REST and SOAP Integration for Protocol Authors
PDF
How to use Informatica Power Center as a RESTful Web Service Client?
Become a RESTful Iron Man with ARC (the Application, Not the Reactor)
Collaborate 18 presentation by Dayalan Punniyamoorthy
How to Connect to Any REST API with No-Code
How to Connect to Any REST API with No-Code
Design Summit - RESTful API Overview - John Hardy
How to Connect to Any REST API (Without Writing Any Code)
A Complete Guide to Streamlining Business Processes
Zyncro rest api feb 2013
There is REST and then there is "REST"
RESTful Approaches to Financial Systems Integration
Coding 100-session-slides
Modern REST APIs for Enterprise Databases - OData
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
DEVNET-1001 Coding 101: How to Call REST APIs from a REST Client and Python
Hands-On Lab: Master REST APIs in CA Application Performance Management
SFDC REST API
Transform-to-Smart-ERP-using-Custom-Mobile-Apps.pptx
Transform-to-Smart-ERP-using-Custom-Mobile-Apps.pptx (3).ppt
(ATS6-DEV09) Deep Dive into REST and SOAP Integration for Protocol Authors
How to use Informatica Power Center as a RESTful Web Service Client?
Ad

Recently uploaded (20)

PDF
Enhancing emotion recognition model for a student engagement use case through...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
1. Introduction to Computer Programming.pptx
PPTX
TLE Review Electricity (Electricity).pptx
PDF
Encapsulation theory and applications.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
A novel scalable deep ensemble learning framework for big data classification...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Mushroom cultivation and it's methods.pdf
PDF
Getting Started with Data Integration: FME Form 101
Enhancing emotion recognition model for a student engagement use case through...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
1. Introduction to Computer Programming.pptx
TLE Review Electricity (Electricity).pptx
Encapsulation theory and applications.pdf
Unlocking AI with Model Context Protocol (MCP)
Web App vs Mobile App What Should You Build First.pdf
A comparative analysis of optical character recognition models for extracting...
A novel scalable deep ensemble learning framework for big data classification...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Zenith AI: Advanced Artificial Intelligence
Digital-Transformation-Roadmap-for-Companies.pptx
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Univ-Connecticut-ChatGPT-Presentaion.pdf
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Approach and Philosophy of On baking technology
Mushroom cultivation and it's methods.pdf
Getting Started with Data Integration: FME Form 101

ODTUG KSCOPE 2018 - REST APIs for FDMEE and Cloud Data Management

  • 2. REST APIs for FDMEE and Cloud Data Management Francisco Amores – inlumi Group June 13, 2018
  • 3. • Domain Lead – Master Data and Integration @inlumi • 12 years (From HAL to Cloud) • Based in Malaga (Spain) • Trail Running Lover • Blogger That’s me
  • 4. EPM Roadmap Methodology Process Improvement Best Practices Design & Build Test & Roll Out Go-Live Support Performance Testing Training Managed Services Hosting Cloud Solutions 24x7 Support Advisory Implementation Operations
  • 7. Menu of the Day Why Today’s Session? I’m new to REST REST APIs for FDMEE/CDM The Next Level Q&A
  • 8. Why today’s topic? The IT world is changing and the clouds are constantly flying over us There is an important need to integrate Cloud-Cloud and Cloud-On Prem worlds APIs are not a privilege anymore, but a common need FDMEE and Cloud Data Management are part of change
  • 9. I’m new to What’s a Web Service? What’s REST? What’s JSON? REST APIs
  • 10. Web Services & REST They make SW application resources available over networks Technology that allows data transmission across the network Network Send HTTP Request Send HTTP Response Service Requesters (Clients) Service Provider (Server) Architectural style for designing Web Services (RESTful WS) Easier alternative for such complex technologies as SOAP Uses HTTP to share information between a client and a server Stateless Services as Resources (They don’t have memory) REST Web Services
  • 11. JavaScript Object Notation Language in which the REST Client and the REST Server speak { origin : Malaga, destination: Orlando how: flying } { direct: No shortest : 12h, cost: 890€ }
  • 12. RESTful Application Program Interface Base URL + Endpoint path + (Request Parameters) https://odtug-kscope18.pbcs.em2.oraclecloud.com:443/aif/rest/V1/jobs/{jobid} Access to the REST resources (black boxes) REST APIs are identified by URLs (Resources) Usually available in OP
  • 13. Requests and Responses Request - encapsulates the instructions • URL • TYPE – GET/POST/PUT/DELETE • BODY (Payload) – usually JSON • HEADERS – Authentication, Content Type, etc. Response - encapsulates the result • BODY – usually JSON • HEADERS – Content Type, etc. Request URL HTTP Method Request Headers Request Body
  • 14. REST Clients Advanced REST Client HTTPBot Programming/Scripting Languages Web Clients
  • 15. for Chrome 1. Create Request • Type, Authorization Header, Body* • Other Headers 2. Click Send 3. See Response Body Xxx
  • 16. PowerShell 1. Encrypt Basic Authentication 2. Create payload (body) 3. Convert payload to JSON 4. Invoke REST 5. Parse Response
  • 17. REST APIs for FDMEE and Cloud Data Management The REST APIs Execute Rules and Batches Import/Export Maps Execute Reports The Secret REST APIs
  • 18. Overview Post Job Get Job Details {jobId} {jobStatus} While <> “SUCCESS” Available in Cloud Data Management (V1) Introduced in FDMEE 11.1.2.4.210 (Supported PSU220) Execute UI tasks externally (admins/non-admins) REST APIs Vs. EPM Automate (Wrapper)  verbosing  concurrency  error handling Basic Http Authentication Upload/Download files with Migration REST APIs (admins) Base URL https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/aif/rest/{api_version}/{resource path) https://planning-kscope18.pbcs.em2.oraclecloud.com:443/aif/rest/ http(s)://epmserver:port/aif/rest/{api_version}/{resource path) http://epm11124:6550/aif/rest/V1/jobs Upload File Download File
  • 19. Execute Data Load Rules Resource Path /aif/rest/{api_version}/jobs Request Type POST Request Parameters Notes jobType DATARULE jobName Name of DLR (use “” if spaces) startPeriod Period name endPeriod Period name fileName Must be in the inbox (use “” for predefined) importMode APPEND/REPLACE/RECALCULATE/NONE (skip) exportMode (E)PBCS/Planning FCCS/TRCS STORE_DATA ADD_DATA SUBTRACT_DATA REPLACE_DATA NONE (skip) REPLACE MERGE NONE (skip) • HFM Replace by Security/Accum not supported • FULL_REFRESH/SNAPSHOT/INCREMENTAL (OP) • Can load Metadata (CDM) • Location security applies
  • 20. Execute Batches Resource Path /aif/rest/{api_version}/jobs Request Type POST Request Parameters Notes jobType BATCH jobName Name of the batch • Doesn’t accept parameters • Ex: if you pass start and end periods, they will be ignored
  • 21. Import/Export Mappings Resource Path /aif/rest/{api_version}/jobs Request Type POST Request Parameters Notes jobType MAPPINGIMPORT jobName Dimension Name/ALL fileName CSV, .TXT, .XLS, or .XLSX Must be in the inbox first importMode REPLACE/MERGE validationMode true/false locationName Location name • Specify the relative path with the filename • Scripts supported in Text export • Bug – security location is bypassed Resource Path /aif/rest/{api_version}/jobs Request Type POST Request Parameters Notes jobType MAPPINGEXPORT jobName Dimension Name/ALL fileName CSV, .TXT, .XLS, or .XLSX XLS/XLSX exported as XLSM locationName Location name
  • 22. Execute Reports Resource Path /aif/rest/{api_version}/jobs Request Type POST Request Parameters Notes jobType REPORT jobName Report name (as it is) reportFormatType PDF, XLSX, HTML, EXCEL parameters JSON with pairs “param name”:”param value” • Generic error when invalid report name • Application/outbox/reports (OP)
  • 23. Job Execution Response Response Parameter Description status -1 (in progress) / 0 (success) 1 (error) 2 (cancel) 3 (cancelled) 4 (invalid parameter) jobStatus RUNNING / SUCCESS / FAILED jobId Process ID in FDMEE/CDM logFileName Log File (relative path) outputFileName Output File (relative path) processType COMM_LOAD_BALANCES / MAPPING_EXPORT / … executedBy Login name of the user calling the REST API details Exception message in case of errors Links Links related to the Job
  • 24. The secret GET/POST REST APIs They are not documented but they do exist (supported?) GET REST APIs • Job Details (paging) • Application and Details (definition, options, dimensions) • Dimensions, Rules, Import Formats, Locations, etc. POST REST APIs • Refresh Metadata and Members • Execute Scripts (Cloud and OP) • Direct Import/Export Planning/PBCS/FCCS, Export to ARM
  • 26. Get Process Details into Excel GET - /aif/rest/V1/jobs
  • 27. Execute Custom Script  Similar to REST resource for executing Reports (jobType = SCRIPT)  OP – Custom Scripts  CDM – System Maintenance Tasks only
  • 28. Taking the REST APIs to the Next Level Excel Mapping RESTloader PowerShell Toolbox Extended FDMEE API Robotic Process Automation Mobile Apps Oracle Integration Cloud EPMware Mappings
  • 29. Excel Map RESTLoader VBA API for REST APIs Cloud/OP Tasks • Download Maps • Upload Maps • Scripts supported • Send Email • …
  • 32. PowerShell Toolbox Invoke-RestMethod Scheduling/Email notifications Admin ownership .Net Libraries Cloud/OP Tools • File Watcher • Report Executor • Rejected Records • Adapters • … 1. If there are files, then move files to openbatch folder 2. Execute batch with REST APO
  • 33. Extended FDMEE API Custom Python/Java API Used from FDMEE scripts (OP) Tasks • Download/Upload Maps • Execute Rules/Batches • Execute Reports • Execute Scripts • …
  • 34. Executing Reports Advance process logic (email…) Get Job Id Easy to rename reports Error handling & verbosing Better option than runreport utility
  • 35. UiPath Robotic PA Automate Business Processes/Tasks Automate FDMEE/CDM Jobs Health Checks Cloud Adapters Cloud/OP Tasks • HTTP Request • JSON Deserialization • Send Email • …
  • 37. Mobile Apps iOS and Android Cloud/OP Functionality • Mapping Creator • Rule Executor • Report Executor • Process Monitor • … Think about getting a file in your email and loading it from your mobile/table Data Management? Kscope.
  • 38. iProcessMonitor Download logs and Outbox files Send emails to users Capture rejected records Etc.
  • 39. Oracle Integration Cloud Autonomous Integration Cloud Integration PaaS (iPaaS) Connect to on-prem Pre-built adapters REST adapter Key Features • Integration Apps • Process Automation • Visual Build
  • 41. EPMware MDM & DG Software Manage FDMEE as app type All mapping types Direct import/export of maps
  • 43. REST APIs for FDMEE and CDM are used to execute jobs from external clients 1 REST APIs can be used in different types of deployment: cloud, on-prem, and hybrid 2 As always, creativity plays a very important role 3
  • 44. References  My Blog - Fishing with FDMEE  John Goodwin’s Blog http://john-goodwin.blogspot.com/  Oracle’s Documentation  UiPath Robotics Process Automation  Oracle Integration Cloud
  • 45. Q&A