exportJobConsole
Exports the job console records to a CSV file and creates an export ZIP file.
The first character in the output CSV file is the Byte Order Mark (BOM) character \ufeff followed by an encrypted application identifier enclosed in double quotes. CSV file header follows the application identifier.
Applies to
Planning, Planning Modules, FreeForm, Financial Consolidation and Close, Tax Reporting, Enterprise Profitability and Cost Management, Strategic Workforce Planning, and Sales Planning.Required Roles
- Service Administrator
- Any predefined role and Jobs - Manage application role
- Any predefined role and Jobs - View application role
Usage
epmautomate exportJobConsole FILE_NAME.zip [nDays=NUMBER_OF_DAYS] [jobtypes=JOB_TYPE] [jobStatusCodes=STATUS_CODE] [exportErrorDetails=true|false] [excludeApplicationId=true|false], where:
FILE_NAMEis the name of the ZIP file that will store the exported job console records. You use thedownloadFilecommand to download this file from an environment.nDays, optionally, identifies the number of days for which job console records are to be exported. Possible values are:all(in all lower case)to export all available job console records,1,2,7,30, and60. Default is7.jobTypes, optionally, is a comma separated list of job codes for which console records should be exported. Default isRules. Valid values are:all(in all lower case)RULESRULESETCLEAR_CELL_DETAILSCOPY_DATAINVALID_INTERSECTION_RPTCOPY_VERSIONSCONTENT_UPGRADEPLAN_TYPE_MAPIMPORT_DATAEXPORT_DATAEXPORT_METADATAIMPORT_METADATACUBE_REFRESHCLEAR_CUBEADMIN_MODECOMPACT_CUBERESTRUCTURE_CUBEMERGE_DATA_SLICESOPTIMIZE_AGGREGATIONSECURITY_IMPORTSECURITY_EXPORTAUDIT_EXPORTJOBCONSOLE_EXPORTSORT_MEMBERSSMART_PUSHIMPORT_EXCHANGE_RATES
jobStatusCodes, optionally, is a comma-separated list of job status codes for which records are to be exported. Default is2(Completed Successfully). Possible values are:all(in all lower case) for all jobs in any status1- Processing2- Completed successfully3- Failed with errors4- Completed with unknown status5- Completed with threshold violation status6- Pending cancellation7- Cancelled8- Completed with errors9- Completed with warnings
exportErrorDetails, optionally, exports the details of jobs that failed or reported error to log files if this value is set totrue. This error log file is included in the output ZIP file. Default isfalse. If this value is set totrue, status details of jobs in the following status are exported.- Failed with errors
- Completed with unknown status
- Completed with threshold violation status
- Completed with errors
- Completed with warnings
excludeApplicationId, optionally identifies whether the application identifier is to be written to the export file. Default isfalse.Note:
Data from exported files that do not contain the application identifier cannot be imported into Oracle Fusion Cloud Enterprise Performance Management environments.
Examples
- Export all available job console records:
epmautomate exportJobConsole jobs.zip nDays=all jobTypes=all jobStatusCodes=all - Export all available Rules job console records:
epmautomate exportJobConsole jobs.zip nDays=all jobStatusCodes=all - Export all available Rules job console records without application identifier:
epmautomate exportJobConsole jobs.zip nDays=all jobStatusCodes=all excludeApplicationId=true - Export only the records for Rules job that finished successfully in the last 14 days:
epmautomate exportJobConsole jobs.zip nDays=14 - Export console records and errors of import metadata and clear cube jobs that failed with errors
or completed with errors run in the last seven days:
epmautomate exportJobConsole jobs.zip jobtypes=IMPORT_METADATA,CLEAR_CUBE jobStatusCodes=3,8 exportErrorDetails=true