question

sachin tandulkar avatar image
0 Likes"
sachin tandulkar asked Jason Lightfoot answered

Can we create local table in FlexScript?

Can we create local table in FlexScript? I am writing a code to create monthly schedule based on the demand for 12 months. I want to use a local table which will be used to copy the contents periodically to Global Scheduling table.

Choose One
flexscriptlocal table in flexscript
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered

You can create a temporary node using a user command and destroy it when you're done. You'd size and format the table or add bundle data as you need.

treenode mytemptable=createtempnode();
..
..
..
destroyobject(mytemptable);

Example createtempnode() :

treenode tempfolder=assertsubnode(node("Tools",model()),"temp");
return nodeinsertinto(tempfolder);
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.