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

Function module

Former Member
0 Likes
555

hi,

i copied standard function module FAGL_ITEMS_DISPLAY to y function module.

i need to change in tables in the function module .

at present

PARAMETER NAME TYPING ASS TYPE

IT_ITEMS LIKE FAGLPOSX

i copied the FAGLPOSX structure to y structure and added a new field in it.

so i changed the above one as

PARAMETER NAME TYPING ASS TYPE

IT_ITEMS LIKE Y FAGLPOSX

BUT i am getting an error as

TABLES PARAMETERS ARE OBSOLETE.

Please help me how to avoid the error.

5 REPLIES 5
Read only

former_member404244
Active Contributor
0 Likes
491

Hi,

I think you are working with ECC 6.0. In ECC 6.0 , tables parameter is obsolete..U might be getting warning message,,..U can ignore it..

Regards,

Nagaraj

Read only

Former Member
0 Likes
491

HI

SAP does not encourage the use of TABLES now.

you can declare it under IMPORT/EXPORT but there you have to give the corresponding table type for declaration.

if you want you may skip this message and create the table.

Thanks,

Anil

Read only

Former Member
0 Likes
491

Hi,

use the parameter IT_ITEMS type FAGLPOSX in the changing tabstrip.

or create a table type of structure FAGLPOSX and use in the changing tab.

regards,

Santosh Thorat

Read only

Former Member
0 Likes
491

Hi,

PARAMETER NAME TYPING ASS TYPE

IT_ITEMS LIKE Y FAGLPOSX.

Is this type parameter is having any space or underscore between Y and FAGLPOSX?

Please check..............if u won't give underscore in between, it will give u an error.

Cheers,

Kusuma.

.

Read only

Former Member
0 Likes
491

Its a warning message.press enter on the message.u can continue working