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 declare a table in RFC which has TYPE TABLE OF string

Former Member
0 Kudos

DATA: ITAB TYPE TABLE OF string.

How do I declare ITAB in 'Tables' parameter of an RFC so that it suffice the above.

We need to pass values in itab through RFC.

7 REPLIES 7

Former Member
0 Kudos

Hi,

Create a table type in SE11 of the type of String...Then use the table type in the importing or exporting parameters...for the ITAB..

Thanks

Naren

Former Member
0 Kudos

Create a database Structure with a component of data type String and use as reference parameter in the "tables" tab.

Regds,

Rudra

Former Member
0 Kudos

Hello,

I think you can use in this way

Types: begin of itab,

field1 type string,

end of itab.

data: Y_i_itab type standard table of itab.

0 Kudos

DATA: ITAB TYPE TABLE OF string.

How to declare a workarea of type itab.?

0 Kudos

DATA: ITAB TYPE TABLE OF string,
          wa like line of itab.   "will declare the work area.

regards,

Advait

0 Kudos

Data : wa_itab line type of itab.

Regards

Kiran

0 Kudos

Thanks everybody!