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

RAW data in excel / delete field from internal table dynamically

megha_h
Participant
0 Likes
419

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

2 REPLIES 2
Read only

Former Member
0 Likes
386

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

Read only

0 Likes
386

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