cancel
Showing results for 
Search instead for 
Did you mean: 

table fileds

Former Member
0 Kudos

iam dispalying table fields data in the script ..

but iam getting the header data always . i mean for each row it is diaplaying the header filed also.

i wnat to diaplay a continuous data. is it possible to diaplay in that way.

help me pls..

Regards,

pandu.

Accepted Solutions (1)

Accepted Solutions (1)

former_member196280
Active Contributor
0 Kudos

Do it like this,

In your print program,

WRITE_FORM

WINDOW = 'MAIN'

ELEMENT = 'HEADER'

LOOP

WRITE_FORM

WINDOW = 'MAIN'

ELEMENT = 'ITEMS'

ENDLOOP

IN script

/:HEADER

      • write your headings

/:ITEMS

    • WRITE your item fields

Regards,

SaIRam

Former Member
0 Kudos

thank u.

Answers (0)