Cloud Log
Summary
Cloud LogContent
Hi all
------------------------------------------------------------------------------------------
spool on to 'E:\Dev_MaxL_Batch_Scripts\18AggOL.log';
*Turn Spooling OFF*/
spool off;
---------------------------------------------------------------------------------------
how to set up log information below script.?
@echo off
rem Sample script to Aggregation
rem Update the following three parameters
SET url=https://planning-test.pbcs.us2.oraclecloud.com/workspace
SET user=
SET domain=
SET br_agg=Agg_Plan
SET password=C:\mySecuredir\password.epw
rem EPM Automate commands
CD /D %~dp0
call epmautomate login %user% %password% %url% %domain%
IF %ERRORLEVEL% NEQ 0 goto :ERROR
call epmautomate runbusinessrule "%br_agg%"
IF %ERRORLEVEL% NEQ 0 goto :ERROR
0