‎2008 Jun 05 10:08 AM
Hi,
I have an internal table which i send by mail (excel attachment).
Now my problem is that one of the field is of type RAW.
So in the excel that i recieve doesn't show data properly...some unreadable data is shown for that field.
there are 3 options i am thinking of -
1. delete this field itself from the internal table dynamically...don't know how can i do this.
2. copy the data except this field to another internal table but the structures are too long. So the definition will be very big.
3. find some technique in MS excel to fix it.
Points will be rewarded for helpful answers.
Thanks in advance.
Regards
Megha
‎2008 Jun 05 12:15 PM
Your second option seems to be most feasible.
Coming to ur problem of the structure definition being to long.
First create structure without that RAW field let say ty_without_Raw
Now create another structure which will include the above structure plus the raw field.
Types: Being of ty_with_rawfield.
include sturcture: ty_withoutraw.
raw type raw.
types: end of ty_with_rawfield
‎2008 Jun 05 1:45 PM
Hi Harshu,
Thanks for replying.
But the table structure itself contains Raw field.
And there are 5 such structures.
Thats the reason why i am looking for other options.
Regards
Megha