View previous topic :: View next topic |
Author |
Message |
deepa12 Beginner
Joined: 05 Apr 2005 Posts: 131 Topics: 64 Location: chennai
|
Posted: Tue Jun 23, 2015 11:15 pm Post subject: Symbolic map -picin var using SDF2 |
|
|
Actually am having some difficulty in generating a symbolic map as required in production which is as follows
02 NPLQTY01-CURSOR COMP PIC S9(4).
02 NPLQTY01F PIC X.
02 FILLER REDEFINES NPLQTY01F.
03 NPLQTY01-ATTR PIC X.
02 NPLQTY01 PIC XXXX.
02 NPLQTY01-PICIN REDEFINES NPLQTY01 PIC 9999.
In the development environment the same DGIPNL(that has been retrieved from PRODUCTION) is generating the following
02 NPLQTY01-CURSOR COMP PIC S9(4).
02 NPLQTY01F PIC X.
02 FILLER REDEFINES NPLQTY01F.
03 NPLQTY01-ATTR PIC X.
02 NPLQTY01 PIC XXXX.
The redefines with picin is not generated. i.e I would like to know what SDF setting will make it generate the same
In the option 5 of sdf online i.e STRUCTURE we have defined the following
Code: | LEV NAME --------- LENG OCC TYPE --- INPUT PICT OUTPUT PIC COMMENT --------
|
Code: | 02 NPLQTY01 4 FIELD XXXX ZZZZ PICIN
|
Please advise _________________ deepa |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Jun 24, 2015 9:54 am Post subject: |
|
|
deepa12,
I believe you need to define the PICIN as x(4) and Picout as zzzz.
Kolusu |
|
Back to top |
|
 |
deepa12 Beginner
Joined: 05 Apr 2005 Posts: 131 Topics: 64 Location: chennai
|
Posted: Wed Jun 24, 2015 11:22 am Post subject: |
|
|
here the PIC IN or under 'INPUT PICT' it has been defined as XXXX we would like to know how to generate the following
02 NPLQTY01 PIC XXXX.
02 NPLQTY01-PICIN REDEFINES NPLQTY01 PIC 9999. _________________ deepa |
|
Back to top |
|
 |
|
|