Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Headings in App server

Former Member
0 Likes
385

hi all,

i need to send output to the application server, the data is going corrctly to app server but how to get headings for the output fields in app server

now i am sending three output filelds to app server i need to get headings for them

STATE COUNTRY PINCODE

Please help me how to get the headings.

below is my code:

OPEN DATASET file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.

LOOP AT -


-


TRANSFER output TO file.

ENDLOOP.

CLOSE DATASET f_file.

thanks in advance

hi all,

i need to send output to the application server, the data is going corrctly to app server but how to get headings for the output fields in app server

now i am sending three output filelds to app server i need to get headings for them

STATE COUNTRY PINCODE

Please help me how to get the headings.

below is my code:

OPEN DATASET file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.

LOOP AT -


-


TRANSFER output TO file.

ENDLOOP.

CLOSE DATASET f_file.

thanks in advance

1 REPLY 1
Read only

Former Member
0 Likes
367

Hi,

for heading you do not have to do something extra......

Just append Heading in your case STATE COUNTRY PINCODE

as the first row of the internal table you are transferring .

Regards

Bikas