‎2009 Jan 06 10:09 AM
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.
‎2009 Jan 06 10:12 AM
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
‎2009 Jan 06 10:13 AM
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
‎2009 Jan 06 10:16 AM
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
‎2009 Jan 06 10:17 AM
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.
.
‎2009 Jan 06 10:18 AM
Its a warning message.press enter on the message.u can continue working