- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.