Hello,
I am trying to automate a script it runs fine from the GUI, but when I attempt to run it from the commandline in batch mode I get the following error meassge...any help would be appreciated.
-E- DXL: <utils/copyops.inc:429> incorrectly concatenated tokens EHcnck - Wed Jun 19 10:41:15 EDT 2013 | |||
Re: run DXL from Batch mode *error* Difficult to tell without any code but is your GUI supplying you with attributes which you're not picking up when in batch mode? | |||
Re: run DXL from Batch mode *error* BatchMode does not automatically include many standard include files that deal with GUI, since there is no GUI in batchmode. In this case I cannot find the include file that has function "ModifyRangedAttrType_" defined; no doubt it is encrypted. Now I'm supposing that your batch program does not in fact actually modify a ranged value of an attrtype. So, you can simply stub the missing function, which I suspect looks like this:
void ModifyRangedAttrType_(AttrType at, string Name, AttrBaseType abt, string sMin, string sMax, string Report){} -Loue | |||
Re: run DXL from Batch mode *error* Hello
could you resolve the issue? I think that I'm facing the same problem.
Regards, Antonio. | |||
Re: run DXL from Batch mode *error* Antonio_CC - Mon Jan 29 11:01:07 EST 2018 Hello
could you resolve the issue? I think that I'm facing the same problem.
Regards, Antonio. I had to use -dxl since I was working with data that need to be visible, such as views, etc.
| |||
Re: run DXL from Batch mode *error*
This is a late response and most likely no longer relevant, but I assume you are doing a:
string dHome = (string getenv("DOORSHOME"))
string copyOpsInc = dHome "lib\\dxl\\utils\\copyops.inc"
string storedGlobalsInc = dHome "lib\\dxl\\standard\\column\\storedGlobals.inc"
eval_("#include <"storedGlobalsInc">
#include <"copyOpsInc">
#include <"Whatever your script is">)
exit_()
You can then do batch mode with that. | |||