IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

U4038 abend code


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
emman

New User


Joined: 01 Jun 2006
Posts: 8

PostPosted: Fri Jun 30, 2006 11:12 am
Reply with quote

Hi All,

Does anybody know this error? Actually the abend code is S000 U4038. But the exact messafe error is below:

An attempt was made to pass a parameter address above 16 megabytes to AMODE(24) program IMKEYRBA.

THanks Huhuhu!
Back to top
View user's profile Send private message
param_rajesh_2001
Warnings : 1

New User


Joined: 23 Jun 2006
Posts: 18
Location: Bangalore

PostPosted: Fri Jun 30, 2006 11:32 am
Reply with quote

Hi,
This is comiple problem . Check the like edit step and verify for the AMODE AND RMODE
AMODE suppose to be AMODE(31) and RMODE TO AMODE(ANY) .

this will solve your problem.

Basically the address mode and access mode combinations are :
AMODE :
AMODE(24) 24-bit addressing - memory below the line. (16M line)
AMODE(31) 31-bit addressing - memory above and below the line.
AMODE=ANY indicates the program may use either of the addressing technique.
and
Run Mode/Residency Mode (RMODE)
----------------------------------------
RMODE(24) - the program must be loaded into memory below the line
RMODE(31) - the program can be loaded either below or above the line.
RMODE=ANY - the program can be run in either 24 bit (below)or 31 bit memory(above).

Please re-compile your program using correct AMODE AND RMODE and run the job.
Back to top
View user's profile Send private message
emman

New User


Joined: 01 Jun 2006
Posts: 8

PostPosted: Fri Jun 30, 2006 11:56 am
Reply with quote

Thanks!

But how can I set this on my compile options?

There is no options like AMODE and RMODE on my options?

And the program IMKEYRBA is not owned by my team.
Back to top
View user's profile Send private message
param_rajesh_2001
Warnings : 1

New User


Joined: 23 Jun 2006
Posts: 18
Location: Bangalore

PostPosted: Fri Jun 30, 2006 2:50 pm
Reply with quote

U can see this options in your compile JCL for like edit section:

//LKED EXEC PGM IEWL,
// PARM='XREF,LET,LIST,AMODE=ANY,RMODE=31',
// REGION=4096K,COND=(7,LT,ASM)
pls change here .

If the progrma is not owned by YOu , pls ask ownerof the pgm to change and compile the pgm
Back to top
View user's profile Send private message
emman

New User


Joined: 01 Jun 2006
Posts: 8

PostPosted: Fri Jun 30, 2006 5:21 pm
Reply with quote

your the man rajesh!!
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts ISAM and abend S03B JCL & VSAM 10
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
Search our Forums:

Back to Top