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

replacement function module for these LOG_SYSTEM_GET_RFC_DESTINATION

Former Member
0 Likes
1,042

Hi Experts

please any one can tell me replaced function modules for following function modules

LOG_SYSTEM_GET_RFC_DESTINATION

HELPSCREEN_NA_CREATE

5 REPLIES 5
Read only

Former Member
0 Likes
834

Hi Sri

Try using the following FMs

OBJ_METHOD_GET_RFC_DESTINATION

HELP_OBJECT_SHOW_FOR_FIELD

HELP_OBJECT_SHOW

Award Points if found useful.

Regards

Inder

Read only

Former Member
0 Likes
834

Hello Srinivas,

The replacement for the CALL FUNCTION 'HELPSCREEN_NA_CREATE' is HELP_OBJECT_SHOW

As for the CALL FUNCTION 'LOG_SYSTEM_GET_RFC_DESTINATION' i am still searching for it. i will ping u as soon as i find something.

Thanks

Kevin

Read only

uwe_schieferstein
Active Contributor
0 Likes
834

Hello

On ERP 6.0 the following function modules can be found when searching for table TBLSYSDEST (Where-Used-List):

IC_LOGSYS_GET_RFCDEST
LOG_SYSTEM_GET_RFC_DESTINATION
R3_DISTRIBUTED_LOCKING_ACTIVE

Most likely fm IC_LOGSYS_GET_RFCDEST is the one you are looking for:


FUNCTION IC_LOGSYS_GET_RFCDEST.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(LOGICAL_SYSTEM) LIKE  TBLSYSDEST-LOGSYS
*"  EXPORTING
*"     VALUE(RFC_DESTINATION) LIKE  TBLSYSDEST-RFCDEST
*"  EXCEPTIONS
*"      NO_RFC_DESTINATION_MAINTAINED
*"      NO_SHOW_PERMISSION
*"----------------------------------------------------------------------

* The obsolete has to be used since it is still in the BOR programs
  CALL FUNCTION 'LOG_SYSTEM_GET_RFC_DESTINATION'
       EXPORTING
            logical_system                = LOGICAL_SYSTEM
       IMPORTING
            RFC_DESTINATION               = RFC_DESTINATION
       EXCEPTIONS
            NO_RFC_DESTINATION_MAINTAINED = 1
            OTHERS                        = 2
            .
  IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4
            RAISING NO_RFC_DESTINATION_MAINTAINED.
  ENDIF.



ENDFUNCTION.

Regards

Uwe

Read only

Former Member
0 Likes
834

Hi,

Try to use these FM's

LOG_SYSTEM_GET_RFC_DESTINATION

IC_LOGSYS_GET_RFCDEST

Regards,

Jyothi CH.

Read only

Former Member
0 Likes
834

Check this FM list:

http://www.sap-img.com/abap/function-list.htm

Regards,

Joan