I'm migrating oracle forms 6i to forms 12c in Linux server. For creating reports we create folder at run time using the below code while running forms application from windows. Can you please how can I achieve the same when i run the application from Linux server ? I'm launching application from client ( windows http://Server:9001/forms/frmservlet?config=webstart) but hosted from linux server , so how should i change the below code ?
L_COMMAND := 'CMD /C "MKDIR "'||L_PDF_LOCATION||'""';
HOST(L_COMMAND,NO_SCREEN);