On page 150 of this
http://publibz.boulder.ibm.com/epubs/pdf/ice1cg60.pdf
Can anyone explain to me what ON(1,15,CH)ON...
means. I know CH, PD and ZD are data types but I am a little unclear as to the rest?
BillyBoyo wrote:The ON statements in DISPLAY are defining the fields you want listed in the report.
BillyBoyo wrote:No, SORT/ICETOOL does not know about any fields unless you define them. In DISPLAY, ON is how you define them.
it means the first field which will be printed is at position one in the input file and has a length of 15. ON(1,15) is invalid for DISPLAY. The field-type is mandatory. In the example, it is ON(1,15,CH) which means character data.
Gallium wrote:BillyBoyo wrote:No, SORT/ICETOOL does not know about any fields unless you define them. In DISPLAY, ON is how you define them.
it means the first field which will be printed is at position one in the input file and has a length of 15. ON(1,15) is invalid for DISPLAY. The field-type is mandatory. In the example, it is ON(1,15,CH) which means character data.
That's great thanks, makes you wonder why they couldn't just say that! I know you need CH etc. but I knew what they meant before. Although is there a URL that someone could point me to that?
Return to DFSORT/ICETOOL/ICEGENER