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

Table parameters for RFC FM.

agnihotro_sinha2
Active Contributor
0 Likes
1,391

hi,

Is it required to create table types in SE11 for populating TABLE parametes in RFC FMs.

I have got structures but when i mention T_RSPARAMS type RSPARAMS in tables tab its not accepting.

Do I need to create table type first for those structures and then declare in TABLES tab?

1 ACCEPTED SOLUTION
Read only

GauthamV
Active Contributor
0 Likes
875

Tables parameter is obselete in ECC 6.0

If you are not in ECC 6.0 try this.

T_RSPARAMS like RSPARAMS .

hi,

Is it required to create table types in SE11 for populating TABLE parametes in RFC FMs.

I have got structures but when i mention T_RSPARAMS type RSPARAMS in tables tab its not accepting.

Do I need to create table type first for those structures and then declare in TABLES tab?

5 REPLIES 5
Read only

GauthamV
Active Contributor
0 Likes
876

Tables parameter is obselete in ECC 6.0

If you are not in ECC 6.0 try this.

T_RSPARAMS like RSPARAMS .

Read only

0 Likes
875

I m in ECC 6.0. So what is the solution for including table param? do i need to create table types for structures?

Read only

keerthy_k
Product and Topic Expert
Product and Topic Expert
0 Likes
875

Hi,

U need to craete a table type in se11 using the structure as line type. Then u can assign this to the table parameters of the FM. Otherwise if it is a transparent table then u can assign it as it is.

Keerthi

Read only

Former Member
0 Likes
875

Hi,

If you are in ECC 6.0, use the foll declaration for tables :

IT_X LIKE abc.

where abc shud be a structure. It works perfectly fine. " LIKE " parameter is not present in the F4 help, but u manually enter it. It works alright.

Thanks

Nayan

Read only

Former Member
0 Likes
875

HI,

Yes, U need to create structure first, and then u can use it in the table parameter. No need to create Table type.

Edited by: Selva M on Mar 2, 2009 5:40 PM