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: 

Error while creating a function module

Former Member
0 Kudos
148

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

Former Member
0 Kudos
121

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

Former Member
0 Kudos
122

Hi,

Give table parameters as:

IT_GRAPH LIKE ZTY_GRAPH,

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

Thanks & Regards,

Navneeth K.

Former Member
0 Kudos
121

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