Batch application run errors with "Access Violation"

Adrian_Chimirel

Adrian_Chimirel

Legendary Poster
Batch application run errors with \"Access Violation\"

Can anybody tell my what is wrong here?
And this is the jde.log:
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.271001 Runbatch.c310
INITIALIZING RUNBATCH job: 36975
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.286000 ipcmisc.c299
process 5408 <runbatch.exe> registered in entry 43
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.286001 Runbatch.c455
Startup for User=ADCHIMIREL, Env=JPY810, Role=*ALL, Job#=36975
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.286002 Runbatch.c472
bAPListening=0
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.708000 zdrv.cpp328
Initializing the Z Driver
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.708001 zdrv.cpp342
Gettting user data from hEnv
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.708002 zdrv.cpp364
User data is ADCHIMIREL, JPY810
5408/2340 MAIN_THREAD Sun Sep 28 19:11:08.708003 zdrv.cpp373
Creating XML Session
5408/2340 MAIN_THREAD Sun Sep 28 19:11:42.458000 ntexhnd.cpp101
Exception code: C0000005 ACCESS_VIOLATION
5408/2340 MAIN_THREAD Sun Sep 28 19:11:42.896000 ntexhnd.cpp151
====> Exception occurred with call stack:
jdeStrcpy+11 F:\PeopleSoft\ddp\e810\system\bin32\jdeunicode.dll
K2WrapMode0+115 F:\PeopleSoft\ddp\e810\system\bin32\jdekrnl.dll
K2ProcessDoObject_Adb+D40 F:\PeopleSoft\ddp\e810\system\bin32\jdekrnl.dll
K2ProcessMessages+3F5 F:\PeopleSoft\ddp\e810\system\bin32\jdekrnl.dll
0000:00000000
INFO: Done setting IPC Handle State structures to abandoned. Process exiting. iParam: 0000005408>>
 
Re: Batch application run errors with \"Access Violation\"

jdeStrcpy+11 F:\PeopleSoft\ddp\e810\system\bin32\jdeunicode.dll

Looks like you're trying to copy into memory space you haven't reserved.

You can't just assign text to a memory pointer if that pointer isn't 'pointing' at reserved space.
 
Re: Batch application run errors with \"Access Violation\"

Now that's too bad
crazy.gif

This UBE is a copy of a (very) old one (inherited from World, and brought aboard 8.10 through the UBE convertor, three years ago). The only thing I modified on this newly created clone was the page header - added page x of y, User, and Environment. Nothing more. And the new version created for this clone has a larger data selection (added a couple of fiscal years and business units).

blush.gif
It looks like I have to re-create it from scratch ...
 
Back
Top