Application Development 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: 

Downloading MENGE type

Former Member
0 Kudos

Hi,'

I am trying to download MENGE type into a file on application server. when I am viewing the file contents I find soem junk charecters. How can i do this to get the actual content in the file.

I am transfering the header of the internal table each time and the internal table is having the MENGE field.

Regards,

Vinod.

2 REPLIES 2

Former Member
0 Kudos

Hi,

You have to convert it into character format before moving to the application server..

Thanks,

Naren

Former Member
0 Kudos

Hello,

Before downloading the data move the MENGE field to CHAR variable.

Do like this.

DATA LV_MENGE(13).

LOOP AT ITAB.

<b>WRITE ITAB-MENGE TO LV_MENGE.</b>

TRANSFER LV_MENGE TO P_FILE.

ENDLOOP.

Vasanth