2008 Nov 11 7:01 AM
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
2008 Nov 11 7:16 AM
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