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

tables parameters obsolete

Former Member
0 Likes
1,270

Hi all,

In ecc6.0 i have been trying to use tables parameters while designing function modules and it says tables parameters are obsolete, what should be used here and how?

Regards,

C.A

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,064

Hi,

Insted of tables you can use Changing Parameter here.

Hi all,

In ecc6.0 i have been trying to use tables parameters while designing function modules and it says tables parameters are obsolete, what should be used here and how?

Regards,

C.A

7 REPLIES 7
Read only

Former Member
0 Likes
1,065

Hi,

Insted of tables you can use Changing Parameter here.

Read only

0 Likes
1,064

Hi,

I have used changing parameters.

demo type table

now in my source code i have written

loop at demo.

endloop.

during syntax check it says

demo is neither specified under "TABLES" nor defined as an internal table.

what should be done here

Read only

matt
Active Contributor
0 Likes
1,064

You need to define your table type AS a table type in SE11.

Or type it as ANY TABLE might work. But properly defining it in SE11 is better.

Read only

0 Likes
1,064

Hi,

Create a table type in Se11 of the type internal table.

Now when you are decalring the internal table in Changing parameter give the reference of that table type.

Create another work area in the source code of function module.

now loop the Internal table sa usual.

regards,

Sujit

Read only

Former Member
0 Likes
1,064

Hi,

I think in table parameters of FM.

You are trying to declare a table parameter like

ITAB_NAME TYPE <TABLE_TYPE>

it should be ITAB_NAME TYPE <Structure name>

Check out for this case.

With Regards,

Dwarakanath.S

Read only

0 Likes
1,064

Hi

U can declare table parameters using LIKE.

With Regards,

Dwarakanath.S

Read only

Former Member
0 Likes
1,064

Hi Abhinay,

Tables options has been made obsolete, so you can use changing in place of table.

With luck,

Pritam.