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;