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

Function module export??

Former Member
0 Likes
1,112

Can we pass an internal table through the export parameters?If yes then what should be the type spec. and asoociated type.....??

Regards,

Shashank.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,079

Hi Shashank,

To acheive this you will have to create a table type with the structure simlar to the IT you want to send to the FM.

Then specify this as the type when you define the parameters.

Regards

Arun

9 REPLIES 9
Read only

Former Member
0 Likes
1,079

Internal table are always passed by refrence.

regards,

ruchika

reward if useful.

Read only

Former Member
0 Likes
1,079

Hi,

Why did you want to pass table to export, is there any reasons?

For pass internal table, you could use tables field, but not import or export.

Hopes this helps

Bob

Read only

Former Member
0 Likes
1,079

You can pass it through TABLES parameters

Data : itab type standard table of mara.

Message was edited by:

Prashant Patil

Read only

Former Member
0 Likes
1,079

just leave it blank and try out..

Read only

Former Member
0 Likes
1,079

Hi,

Yes..you have to create a table type in SE11..

Then use that in type specification..

Go to SE12..Choose the radio button data type..search in table type..to look for a sample table type..

Thanks,

Naren

Read only

Former Member
0 Likes
1,079

Hi,

You can pass your internal Table through Tables parameter in Function module.

Reward points if it is helpful.

Regards,

Sangeetha.a

Read only

Former Member
0 Likes
1,079

Hi Shashank,

Create a Structure and table Type in data dictionary ....... and u can use that table type for export parameter.

Thanks & Regards

Bhaskar Rao.M

Read only

Former Member
0 Likes
1,079

Hi,

If u wantto pass/get the internal table to FM , u have to use TABLE parameter.

Table parmeter will import aswell as export the internal table from/to the function module.

Revert back if any issues.

Reward with points if helpful.

Regards,

Naveen.

Read only

Former Member
0 Likes
1,080

Hi Shashank,

To acheive this you will have to create a table type with the structure simlar to the IT you want to send to the FM.

Then specify this as the type when you define the parameters.

Regards

Arun