Hi Support,
I tried exporting a global table to a CSV file using the export table command. We could export it successfully with a static name to the file. But when I tried to give a dynamic name using the name and date. the export is not working. Kindly help us with this.
Table Summary=Table("TableName"); string Name ="ModelData"; exporttable(Summary,Name,1,1); //This is Working and CSV file is getting created.
But when I tried the following script
Table Summary=Table("TableName"); string Name ="ModelData" + Model.dateTime.toString(); exporttable(Summary,Name,1,1); //This is not Working
The CSV file is not getting created. How can I resolve this?
Regards,
Brijesh Kumar