‎2008 Feb 22 12:50 AM
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
‎2008 Feb 22 12:59 AM
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
‎2008 Feb 22 1:03 AM
Hi Praveen
when i am reading my text file, its giving error.
thanks
‎2008 Feb 22 3:14 AM
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.
‎2008 Feb 22 4:04 AM
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