2008 Oct 30 10:08 AM
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
2008 Oct 30 10:16 AM
Hi,
Give table parameters as:
IT_GRAPH LIKE ZTY_GRAPH,
It will give a warning, just press enter and proceed.
Thanks & Regards,
Navneeth K.
2008 Oct 30 10:16 AM
Hi,
Give table parameters as:
IT_GRAPH LIKE ZTY_GRAPH,
It will give a warning, just press enter and proceed.
Thanks & Regards,
Navneeth K.
2008 Oct 30 10:16 AM
Create a table type for your structure ZTY_GRAPH and pass the table type through EXPORT interface of the function module (and not TABLES).