SAP Function Modules

SALC_READ_PROFILE_PARAMETERS SAP Function module







SALC_READ_PROFILE_PARAMETERS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name SALC_READ_PROFILE_PARAMETERS into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: SALC
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM SALC_READ_PROFILE_PARAMETERS - SALC READ PROFILE PARAMETERS





CALL FUNCTION 'SALC_READ_PROFILE_PARAMETERS' "
  EXPORTING
*   only_local = ' '            " alparams-only_local
    longsid =                   " sy-sysid
*   segment_name =              " almsegname
  TABLES
    param_list =                " csmlogdir
  EXCEPTIONS
    C_CALL_FAILED = 1           "
    INVALID_SYSTEM = 2          "
    INVALID_SEGMENT = 3         "
    COMMUNICATION_ERROR = 4     "
    ABAP_VERSION_TOO_OLD = 5    "
    .  "  SALC_READ_PROFILE_PARAMETERS

ABAP code example for Function Module SALC_READ_PROFILE_PARAMETERS





The ABAP code below is a full code listing to execute function module SALC_READ_PROFILE_PARAMETERS including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look 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).

DATA:
it_param_list  TYPE STANDARD TABLE OF CSMLOGDIR,"TABLES PARAM
wa_param_list  LIKE LINE OF it_param_list .


DATA(ld_only_local) = some text here
DATA(ld_longsid) = 'some text here'.
DATA(ld_segment_name) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_param_list to it_param_list. . CALL FUNCTION 'SALC_READ_PROFILE_PARAMETERS' EXPORTING * only_local = ld_only_local longsid = ld_longsid * segment_name = ld_segment_name TABLES param_list = it_param_list EXCEPTIONS C_CALL_FAILED = 1 INVALID_SYSTEM = 2 INVALID_SEGMENT = 3 COMMUNICATION_ERROR = 4 ABAP_VERSION_TOO_OLD = 5 . " SALC_READ_PROFILE_PARAMETERS
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 3. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 4. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 5. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_only_local  TYPE ALPARAMS-ONLY_LOCAL ,
it_param_list  TYPE STANDARD TABLE OF CSMLOGDIR ,
wa_param_list  LIKE LINE OF it_param_list,
ld_longsid  TYPE SY-SYSID ,
ld_segment_name  TYPE ALMSEGNAME .


ld_only_local = some text here

"populate fields of struture and append to itab
append wa_param_list to it_param_list.
ld_longsid = 'some text here'.
ld_segment_name = 'Check type of data required'.

Contribute (Add Comments)

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 SALC_READ_PROFILE_PARAMETERS or its description.