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

pls help

Former Member
0 Likes
612

hi

i declared itab_zdfkkwoh as

data : itab_zdfkkwoh TYPE STANDARD TABLE OF zdfkkwoh WITH HEADER LINE.

in my zdfkkwoh table

zdfkkwoh-betrw field type is Curr.

my uploading program upload data to custom table(zdfkkwoh).

when i read the file it giving error as

"ITAB_ZDFKKWOH-BETRW" must be a character-type data object (data typeC, N, D, T or STRING) .

pls help me.

points will be reward

4 REPLIES 4
Read only

Former Member
0 Likes
574

HI

When u have uploaded ur table from Pgm..

Then why u reading another file..

Just paste ur code , where u getting error ..

Hope u will get answer then..

Thanks

Praveen

Read only

0 Likes
574

Hi Praveen

when i am reading my text file, its giving error.

thanks

Read only

Former Member
0 Likes
574

Kumar ,

How many fields are there in your ztable.

If less fields are there ,then declare an internal table with all fields of ztable and for field betrw chane the type char of its length.

EX;

DATA : BEGIN OF i_zdfkkwoh OCCURS 0,

add all ztable fields ,and change the type of field betrw to char here.

END OF i_zdfkkwoh.

Now your problem will get resolved.

Read only

Former Member
0 Likes
574

Hi,

Are you doing any actions on the data? For e.g. CONDENSE, CONCATENATE, WRITE etc.

These are not allowed with CURR or decimals.

It would be easier to understand if you paste the code line where the error occurs.

Regards,

Sandeep