cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

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

SharePoint Online

My company recently began the migration from SharePoint 2010 to SharePoint Online.  I have found that my JSL scripts are now no longer able to open or save files to the new SPO site.  Anyone have the correct updated syntax for this.

Example 1 (SP 2010): This worked.

 

 

TablePath4 = "\\sharepoint.amr.ith.company.com@ssl\sites\rpt\documents\JMP_tables\"; //set variable TablePath path location

Table4 = TablePath4 || "RPT Tester Mapping.jmp";//create a variable for the RPT Tester Mapping JMP file

Table4Name = "RPT Tester Mapping.jmp";// Create the varible for the name of the RPT Tester Mapping JMP table

dt = Open( Table4 );//Open Table4

 

 

Example 2 (SP 2010); This worked

 

Lot = :Lot_Oper[1];

dt << Save( "\\sharepoint.amr.ith.company.com@ssl\sites\rpt\documents\results\" || Lot || ".csv" ); //save table as HP_Data for Q&R Master data file;

 

0 REPLIES 0

Recommended Articles