‎2006 Aug 30 1:46 PM
hi,
I am upgrading from 4.0b to ECC6.0. Is there any way to find list of obsolute function module between 4.0b and ECC 6.0 directly.
thanks,
karthik.k
‎2006 Aug 30 2:06 PM
go to that program and do SYNTAX CHECK.
it will give you the list of obsolute commands.
regards
Srikanth
‎2006 Aug 30 1:52 PM
Hi karthik,
Try this to see to check for OBSOLETE function modules.
Go to SE37 --> Utilities --> Find --> Enter OBSOLETE in the Short description and execute with out giving maximum no of hits.
Hope this will help you.
Regards,
Vivek
PS: Award points if helpful
‎2007 Feb 13 9:02 AM
hi
i need to know function module for obsolate function modules like <b>ws_query , value_get,and value_display</b>.plz provide me.
thanks and regards
rajadurai
‎2007 Feb 13 9:46 AM
‎2006 Aug 30 1:54 PM
hi Karthik,
Do <b>EPC( Extended Program Check )</b> by this way u will know the same..and here is the path..
i.e, Program-> Check -> Extended Program Check...do it in 6.0
Regards,
Santosh
Message was edited by: Santosh Kumar P
‎2006 Aug 30 1:54 PM
In ECC 6.0 system.
Go to table: TFDIR and give FREEDATE <> space.
Regards,
Ravi
‎2006 Aug 30 1:58 PM
Hi Karthik,
following is the list.
CALL FUNCTION 'CLPB_EXPORT'
CALL FUNCTION 'DD_GET_DD03P'
CALL FUNCTION 'DOWNLOAD'
CALL FUNCTION 'GET_FIELDTAB'
CALL FUNCTION 'HELP_DOCU_SHOW_FOR_FIELD'
CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
CALL FUNCTION 'NAMETAB_GET'
CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA'
CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE'
CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE'
CALL FUNCTION 'POPUP_TO_DECIDE'
CALL FUNCTION 'PROFILE_GET'
CALL FUNCTION 'REGISTRY_GET'
CALL FUNCTION 'STRING_CONCATENATE'
CALL FUNCTION 'UPLOAD'
CALL FUNCTION 'WS_DOWNLOAD'
CALL FUNCTION 'WS_EXECUTE'
CALL FUNCTION 'WS_FILENAME_GET'
CALL FUNCTION 'WS_QUERY'
call function 'WS_ULDL_PATH'
CALL FUNCTION 'WS_UPLOAD'
‎2006 Aug 30 2:04 PM
Hi Karthik,
You can write a select on table TFTIT
TABLES : TFTIT.
DATA : BEGIN OF IT_FUNCNAMES OCCURS 0,
FUNCNAME LIKE TFTIT-FUNCNAME,
END OF IT_FUNCNAMES.
SElect FUNCNAME FROM TFTIT INTO TABLE IT_FUNCNAMES
WHERE STEXT LIKE *OBSOLETE*.
‎2006 Aug 30 2:06 PM
go to that program and do SYNTAX CHECK.
it will give you the list of obsolute commands.
regards
Srikanth
‎2006 Aug 30 3:01 PM
hi,
try:
REPORT zforum104 .
TABLES : tftit.
DATA : it LIKE tftit OCCURS 0 WITH HEADER LINE.
SELECT * FROM tftit INTO TABLE it
WHERE spras = sy-langu
AnD stext LIKE '%obsolete%'.
LOOP AT it.
WRITE: / it-funcname, it-stext.
ENDLOOP.A.