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
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;
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.