I have been assisting our sister plant with creating new CMM programs in PCDMIS. I and the programmer there are using 2019r1, build #406 to create said programs. No issues until now.
He has starting to encounter issues with creating the reports. We print and save them as .PDF files. Code is below:
Create the PDF:
Print the PDF:
So the issue is when the program is done running, PCDMIS asks where to put the report. Everytime. Offline, Online, doesn't matter.
The weird thing is, when I run the exact program, it works just fine for me. Runs the program, puts the report where it is supposed to go,
doesn't ask anything.
I personally think its a setting somewhere. Not sure where.
Any and all help would be appreciated.
Thanks,
John
He has starting to encounter issues with creating the reports. We print and save them as .PDF files. Code is below:
Create the PDF:
Code:
ASSIGN/PDFNAME="C:\Users\kuglejd\Desktop\Current_CMM_Programs\\Test789123.pdf"
Code:
$$ NO, ------------------------- PRINT/REPORT,EXEC MODE=END,$ TO_FILE=ON,AUTO=1,AUTO OPEN=ON,$ TO_PRINTER=OFF,COPIES=1,$ TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$ REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMENSIONS=NO,$ TO_EXCEL=OFF,$ PREVIOUS_RUNS=DELETE_INSTANCES $$ NO, -------------------------
So the issue is when the program is done running, PCDMIS asks where to put the report. Everytime. Offline, Online, doesn't matter.
The weird thing is, when I run the exact program, it works just fine for me. Runs the program, puts the report where it is supposed to go,
doesn't ask anything.
I personally think its a setting somewhere. Not sure where.
Any and all help would be appreciated.
Thanks,
John
Comment