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

list of obsolute function modules

Former Member
0 Likes
1,099

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,012

go to that program and do SYNTAX CHECK.

it will give you the list of obsolute commands.

regards

Srikanth

9 REPLIES 9
Read only

Former Member
0 Likes
1,012

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

Read only

0 Likes
1,012

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

Read only

0 Likes
1,012
Read only

Former Member
0 Likes
1,012

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

Read only

Former Member
0 Likes
1,012

In ECC 6.0 system.

Go to table: TFDIR and give FREEDATE <> space.

Regards,

Ravi

Read only

Former Member
0 Likes
1,012

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'

Read only

Former Member
0 Likes
1,012

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*.

Read only

Former Member
0 Likes
1,013

go to that program and do SYNTAX CHECK.

it will give you the list of obsolute commands.

regards

Srikanth

Read only

0 Likes
1,012

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.