Application Development 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: 

How to receive a gif file using a custom ABAP FM

Former Member
0 Kudos

Hi Experts,

Here is my requirement.

I have to provide an interface which should receive a GIF file.

I have created a FM but what data type should I define in the import parameter or the table parameter to receive the GIF file (which has been converted to binary format by the other application).

Thanks in advance.

1 ACCEPTED SOLUTION

former_member181962
Active Contributor
0 Kudos

Hi,

Do not type it to any associated type.

Create a tables parameter with some name.

Actually the FM GUI_UPLOAD does the same thing(Just that it is not RFC enabled).

YOu can check its code.

Regards,

Ravi

3 REPLIES 3

former_member181962
Active Contributor
0 Kudos

Hi,

Do not type it to any associated type.

Create a tables parameter with some name.

Actually the FM GUI_UPLOAD does the same thing(Just that it is not RFC enabled).

YOu can check its code.

Regards,

Ravi

0 Kudos

Actually the requirement is :

I have a GIF file in binary format in the import parameter of my FM.

I want to save the binary stream to my Client system(c:\).

Do we have any FM doing that.

Thanks in advance.

Former Member
0 Kudos

Hi Hari,

You can use type ANY TABLE .

Regards

Pinaki