We use SSO, and thus I am using a certificate. I am attempting to run a process, that runs an import from another Anaplan model. The import works when not utilizing Anaplan Connect.
Is there anything wrong with my code?
I am receiving an "Access Denied" response prior to the debug information, which is just the generic help file/commands.
I am an Admin on the model and the workstation.
The cerificate is live.
See my code below:
@echo off
set WorkspaceID=”xxx”
set ModelID=”xxx”
set Operation – certificate <Location of Certificate> "certificate-xxx.cercertificate-xxx.cer"-export
set Operation="-pr 'Name of Process' -execute -debug"
rem *** End of settings - Do not edit below this line ***
setlocal enableextensions enabledelayedexpansion || exit /b 1
cd %~dp0
set Command=.\AnaplanClient.bat -s %ServiceLocation% -k %Keystore% -ka %KeystoreAlias% -kp %KeystorePassword% %Operation%
@echo %Command%
cmd /c %Command%
pause