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\";
Table4 = TablePath4 || "RPT Tester Mapping.jmp";
Table4Name = "RPT Tester Mapping.jmp";
dt = 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" );