View previous topic :: View next topic |
Author |
Message |
raja1128 Beginner
Joined: 16 Jan 2007 Posts: 3 Topics: 1
|
Posted: Mon May 14, 2007 2:12 pm Post subject: cics map receive fail. |
|
|
Hi all,
I have a situation like this;
I have a screen. when i enter data in to it, it writes record in a vsam file.
now i have increased a field in the screen from 9 to 10 bytes. i have assembled map and program in to a loadlib which is used by the online region which i am using.
corresponding include is also increased.
i am opening the file in CICS region
first, when i was using the screen i didnt work because the vsam size was of the old length. it didnt abend.
now i have delete defined the vsam file(empty).then also it didnt work.
i added a record manually then also it didnt work.
it is giving AIEM abend which is 'NOT FOUND'. when i do CEDF
it goes to MAP-FAIL para.
please give your suggessions.
thanking you in anticipation. |
|
Back to top |
|
 |
CICS Guy Intermediate
Joined: 30 Apr 2007 Posts: 292 Topics: 3
|
Posted: Mon May 14, 2007 2:20 pm Post subject: |
|
|
How are you expecting to get to the mapfail routine if you do have a mapfail, handle condition?
What is the notfound sayiing is not found? |
|
Back to top |
|
 |
deepeshk79 Beginner
Joined: 20 Jun 2003 Posts: 112 Topics: 48 Location: Bangalore
|
Posted: Tue May 15, 2007 7:28 am Post subject: |
|
|
You have assembled your loads but have you refreshed them in the region ??
Use these commands in the region
========================
CEMT S PROG(progname) NEW
CEMT S PROG(mapsetname) NEW
Also check if you have done a CEDS INS again on the VSAM File in your region.
CEDA INS FILE(filename) GROUP(groupname) |
|
Back to top |
|
 |
|
|