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

Regarding the data transfer to the application server

Former Member
0 Likes
597

Hi,

1. I have an internal table it_but000 of but000 of 100 fields.

2. my requirement is to download all the records of 100 fields in the internal table it_but000 to application server.

3. I wrote a program it got activated and when I execuite the program it go to dump saying

Error analysis

For the statement

"TRANSFER f TO ..."

only character-type data objects are supported at the argument position

"f".

In this case. the operand "f" has the non-character-type "T_BUT000". The

current program is a Unicode program. In the Unicode context, the type

'X' or structures containing not only character-type components are

regarded as non-character-type.

and parallely I can see the file created in the application server but when I try to open it it says UNABLE TO DISPLAY THIS FILE

MY QUERY

1. Is there any limitataion of fields for transfering to application server.

2. secondly dump analysis says, only fields of datatype char

can be transfered. but here in my case I have some 100 fields I extracted it with *select ** so how can I which is of non char type.

Hi,

1. I have an internal table it_but000 of but000 of 100 fields.

2. my requirement is to download all the records of 100 fields in the internal table it_but000 to application server.

3. I wrote a program it got activated and when I execuite the program it go to dump saying

Error analysis

For the statement

"TRANSFER f TO ..."

only character-type data objects are supported at the argument position

"f".

In this case. the operand "f" has the non-character-type "T_BUT000". The

current program is a Unicode program. In the Unicode context, the type

'X' or structures containing not only character-type components are

regarded as non-character-type.

and parallely I can see the file created in the application server but when I try to open it it says UNABLE TO DISPLAY THIS FILE

MY QUERY

1. Is there any limitataion of fields for transfering to application server.

2. secondly dump analysis says, only fields of datatype char

can be transfered. but here in my case I have some 100 fields I extracted it with *select ** so how can I which is of non char type.

2 REPLIES 2
Read only

Former Member
0 Likes
537

problem is u were passing the other than character value to the file.

convert the foll. into charater types

PERNO

CHILDREN and check other fields, of type other than character values.

before passing to file, convert all fields into character type.

2. problem is in data transfer not in ur query.

Read only

Former Member
0 Likes
537

Hi,

while downloading data to Application server, convert numeric fields into character format and concatenate all fields into one string variable by using the seprator (ex:- tab, comma or any other special symbol).

then transfer that internal table data to application server file.

Reward if useful.

Thanks,

Sreeram.