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

Problem while downloading in application server

Former Member
0 Likes
584

Hi All,

I am downloading data into application server.

when i see the output , all the fields are coming fine except the currency field which is coming as #.

The currency field is define as :

dmbtr TYPE bseg-dmbtr, "Local Currency Amount

And the out put i am getting is :-

00001000000001201010####%##004 2003022520030225LZV48G .

Any suggestions why im am getting # in place of currency.

thanks in advance.

regards,

SG

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
560

Declare DMBTR as follows.

dmbtr TYPE char16, "Local Currency Amount

4 REPLIES 4
Read only

Former Member
0 Likes
560

try defining the field dmtbr as dmtbr like bseg-dmtbr, not TYPE.

-archana

Read only

Former Member
0 Likes
560

when you are dealing with application server , you should always declare the currency and quantity fields as character fields. so try to change the currency and quantity fields definition to charcter types. before writing the data to application server , move the qty data to character fields and write.

Read only

Former Member
0 Likes
560

tried before but no change is coming

Read only

Former Member
0 Likes
561

Declare DMBTR as follows.

dmbtr TYPE char16, "Local Currency Amount