RFC_LOGIN_INFO Function module

Advertisements

RFC_LOGIN_INFO is a standard SAP function module available within R/3 SAPsystems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import/export parameters, exceptions etc as well as any documentation contributions specific to the object. See here to view full function module documentation and code listing, simply by entering the name RFC_LOGIN_INFO into the relevant SAP transaction such as SE37 or SE80

Advertisements
Contribute (Contribute) 
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RFC_LOGIN_INFO or its description.
The code pattern for FM RFC_LOGIN_INFO – RFC LOGIN INFO
Associated Function Group: QRFC 
Date of Release: Not Released

CALL FUNCTION ‘RFC_LOGIN_INFO’ “
IMPORTING
rfc_login_complete = ” sy-debug
rfc_dialog_user = ” sy-debug
. ” RFC_LOGIN_INFO

Results returned by RFC_LOGIN_INFO

rfc_login_complete = 1 – OK 

rfc_login_complete = 2 – Error 

rfc_dialog_user = ‘Y’ or ‘N’

RFC_LOGIN_INFO Attributes


rfc login info

ABAP code example for RFC_LOGIN_INFO Function Module

The ABAP code below is a full code listing to execute function module RFC_LOGIN_INFO including all data declarations. I have tried to use the latest IN-LINE DATA DECLARATION SYNTAX but this can not be used is not possible to use on function module importing parameters.

You would get the messages “The inline declaration “DATA(LD_RFC_LOGIN_COMPLETE)” is not possible in this position.

Advertisements

ABAP code snippet therefor does not look any different from using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

Advertisements
DATA:
 ld_rfc_login_completebb TYPE SY-DEBUG,
 ld_rfc_dialog_user TYPE SY-DEBUG.
 CALL FUNCTION 'RFC_LOGIN_INFO'
    IMPORTING
      rfc_login_complete = ld_rfc_login_complete
      rfc_dialog_user = ld_rfc_dialog_user
 . " RFC_LOGIN_INFO

IF SY-SUBRC EQ 0. "All OK ENDIF.

ABAP code to see 7.40 inline data declaration 

Just for convenience below is a few examples of using the new 7.40 ABAP inline syntax. 

Advertisements
select *
 from BKPF
 into TABLE @DATA(it_bkpf).

DATA(ld_newfield) = 1
Advertisements