Interesting... so that's the internal DDE limit for string values. Then your choices are limited to use of COM or Java APIs. For example, you can write a .VBS script to do the change. Sample scripts are available in the COM API manual. You can also off-load job scripts to user-defined statements (the Script Library feature) and call them from job scripts passing the required parameters. This will also help you to keep job scripts small and easily modify/create them from anywhere. : Example : Dim SCRIPT, string : Dim JOB_ID_MODEL, number, 428 : JobCreate( job_id ) : JobDescribe ( JOB_ID_MODEL, "SCRIPT", SCRIPT ) : mailsend : ("xx@xx.xx","","xx@xx.xx","TEST1", : SCRIPT) : JobModify ( job_id, "SCRIPT", SCRIPT ) : JobDescribe( job_id, "SCRIPT", SCRIPT ) : mailsend : ("xx@xx.xx","","xx@xx.xx","TEST2", : SCRIPT) : TEST1 is good not TEST2. : I have 8000 characters in job 428 and only 474 characters in my new Job. : I have read on your forum some message where user have the same problem.
|