cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Work Flow error when save pdf

OneNorthJMP
Level V

I try to play around with JMP v17 new feature workflow to output my chart into pdf. But it give me error when execute of save pdf. Is it because it unable to replaced the pdf? 

OneNorthJMP_0-1701071117959.png

 

2 REPLIES 2


Re: Work Flow error when save pdf

Hello @OneNorthJMP ,

Here is another approach, using the Save PDF function. Hope it helps.

obj = New Window( "PCM_WOEKFLOW", Variability Chart( Y( :"Vtl_N1 - N/.9/.9"n ), X( :Lot ) ) );
obj << Set page setup(
	margins( 1, 1, 1, 1 ),
	scale( 0.75 ),
	portrait( 0 ),
	paper size( "Letter" )
);
obj << save PDF( "C:\xxx\PCM_WOEKFLOW.pdf" );
obj << close window;
OneNorthJMP
Level V


Re: Work Flow error when save pdf

Hi yuchi, 

 

Thanks for advice. I take your advice change Save Image to save PDF. The error is gone now. But the pdf is not present in my folder. Look like workflow didn't save my report to pdf.