cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
OneNorthJMP
Level V

Work Flow error when save pdf

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. 

Recommended Articles