Hello,
I'm trying to run a jsl script that does several things. One of them is to run an external python script. When I run the python script which does some modifications to an excel file, it gives me an error message indicating that permission is denied to access/write on the excel file. Please note that when I run the python script separately, it works like a charm.
How can I give jmp the proper permission? thanks. The code im using is below.
x = RunProgram(
executable( "python" ),
options( "C:\Users\user1\Desktop\temp.py" ),
readfunction( "blob" )
);