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

Using Occurs parameter in MAP-DFHMDF to increase copy-field


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

New User


Joined: 24 Mar 2009
Posts: 10
Location: bangalore

PostPosted: Wed Jul 29, 2009 2:29 pm
Reply with quote

I have written code for Copy-fields in a map using Occurs property.

EMPID DFHMDF POS=(05,03),INITIAL='_____',LENGTH=5,ATTRB=(UNPROT),
OCCURS=2
FSTNM DFHMDF POS=(05,11),INITIAL='__________',LENGTH=10,
ATTRB=(UNPROT),OCCURS=2

Now, when i compile the map using jcl,I get maxcc=4.
The details of the message is:
For the fields defined with occurs clause:
FIELDS OVERLAPPING WITH MODE = IN OR INOUT.

Also, when i see the screen in CICS region,i find the fields not positioned correctly.
empid was at (05,03) and (05,23) whereas it should be positioned at (05,03) and (06,03)

Please help me on what wrong that may be happening here and how to correct it.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Jul 29, 2009 4:15 pm
Reply with quote

???
what is 'occuring'? the fields within a line or lines with many fields.

like any other table, put the occurs clause where it belongs.

group occurs 2
elem-item1
elem-item2

instead of

elem-item1 occurs 2
elem-item2 occurs 2
Back to top
View user's profile Send private message
rsingh

New User


Joined: 24 Mar 2009
Posts: 10
Location: bangalore

PostPosted: Wed Jul 29, 2009 4:40 pm
Reply with quote

Quote:
like any other table, put the occurs clause where it belongs.

group occurs 2
elem-item1
elem-item2


If i have understood it correctly,u r talking to implement it using symbolic map.

but i am not sure how this will display in the physical map which will be in CICS region.
If i have done it in physical map, how this may go wrong...........
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Wed Jul 29, 2009 7:33 pm
Reply with quote

The screen is filled from left to right and top to bottom.
When you use OCCURS, the occurences will appear to the right, not below.
they will appear on the next line only when the line is filled (one field will certainly appear as if split in two, part on right of line X and the rest on left of line X+1).
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 Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts VB to VB copy - Full length reached SYNCSORT 8
No new posts Increase the number of columns in the... IBM Tools 3
No new posts Using the Jobname parameter in a Qual... ABENDS & Debugging 1
No new posts Need COBOL COPY Help in MVS Environment COBOL Programming 4
Search our Forums:

Back to Top