Dear all,
I have to daily run a series of import applications from an external db server.
I developed one for each type and a blank “all_imports” that run them in sequence.
I set also Log access on active .
all_imports:
sc_redir(Import_Customer,"_parent");
sc_redir(Import_Suppliers,"_parent");
sc_redir(Import_Categories,"_parent");
sc_redir(Import_Products,"_parent");
sc_redir(Import_Orders,"_parent");
sc_redir(Import_Orders_Details,"_parent");
sc_redir(Import_PriceList,"_parent");
sc(exit);
Which is the best way to run “all_import” once a day and in case of error what to do on code ?
Many thanks