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

CICS Map Compile Warning


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Souvik.Sinha

New User


Joined: 22 Apr 2005
Posts: 24
Location: New York, USA

PostPosted: Fri Oct 14, 2005 5:39 pm
Reply with quote

I am getting the following warning while compiling a map (using A10
Processor Group) -

Code:
*------------------------- LINE 1 --------------------------------     
   DFHMDF POS=(01,01),                                          X
        ATTRB=ASKIP,                                            X
        COLOR=RED,                                              X
        LENGTH=80,                                              X
        INITIAL='===============================================X
               ================================'                       
*------------------------- LINE 2 --------------------------------     
   DFHMDF POS=(02,01),                                          X
        ATTRB=ASKIP,                                            X
        COLOR=YELLOW,                                           X
        LENGTH=08,                                              X
        INITIAL='XXXXXXX:'                                       
4,FIELDS OVERLAPPING WITH MODE = IN OR INOUT.                   
   DFHMDF POS=(02,10),                                          X
        ATTRB=ASKIP,                                            X
        COLOR=TURQUOISE,                                        X
        LENGTH=04,                                              X
        INITIAL='XXXX'                                           


My question is that why am I getting "FIELDS OVERLAPPING WITH MODE =
IN OR INOUT."? This is my first map design, so may be I am missing
something.

With regards,
Souvik
Back to top
View user's profile Send private message
bvenu
Warnings : 1

New User


Joined: 17 Aug 2005
Posts: 7

PostPosted: Tue Oct 18, 2005 9:51 pm
Reply with quote

These are the following reasons u r getting this probelm

1)u r mentioned "=" it may be corossing the screen length
2)have u mentioned DFHMSD(mapset) and DFHMDI(map) fields before DFHMDF ?
3)In DHFMSD u should mention the MODE=INOUT
4)otherwise decrease the length of the '=' to 30 and try

I am sure there is only these possibilities u have check once
Back to top
View user's profile Send private message
Souvik.Sinha

New User


Joined: 22 Apr 2005
Posts: 24
Location: New York, USA

PostPosted: Wed Oct 19, 2005 1:12 pm
Reply with quote

Venu,
You are right. I already figured out that the problem was with line 1.

The correct code will be:
Code:
*------------------------- LINE 1 -------------------------     
   DFHMDF POS=(01,01),                                                X
        ATTRB=ASKIP,                                                      X
        COLOR=RED,                                                        X
        LENGTH=79,                                                         X
        INITIAL='===========================X
               ==============================='


The length should be 79. This was causing the overlapping.
Thanks for your help, anyway!

With regards,
Souvik
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Using API Gateway from CICS program CICS 0
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
Search our Forums:

Back to Top