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

Error while creating a function module

Former Member
0 Likes
504

Hii Experts

I am adding a table name to the tables parameter in a already created function module, But it is giving a error : TABLES parameter is obselete

the table which I am adding is

IT_GRAPH TYPE ZTY_GRAPH ( zty_graph is a structure which i made in se11 comprising of 2 fields)

Thanx in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
477

Hi,

Give table parameters as:

IT_GRAPH LIKE ZTY_GRAPH,

It will give a warning, just press enter and proceed.

Thanks & Regards,

Navneeth K.

2 REPLIES 2
Read only

Former Member
0 Likes
478

Hi,

Give table parameters as:

IT_GRAPH LIKE ZTY_GRAPH,

It will give a warning, just press enter and proceed.

Thanks & Regards,

Navneeth K.

Read only

Former Member
0 Likes
477

Create a table type for your structure ZTY_GRAPH and pass the table type through EXPORT interface of the function module (and not TABLES).