SAP Function Modules

HELP_REPORT_VALUES_GET SAP Function module







HELP_REPORT_VALUES_GET 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 HELP_REPORT_VALUES_GET into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: KYPR1
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM HELP_REPORT_VALUES_GET - HELP REPORT VALUES GET





CALL FUNCTION 'HELP_REPORT_VALUES_GET' "
* EXPORTING
*   i_applclass = SPACE         " rkb1d-applclass  Application class
*   i_bertxt = SPACE            " rkb1d-bertxt
*   i_displ_table = SPACE       " ccvalid-xfeld  Display table name
*   i_repid = SPACE             " rkb1d-repid
*   i_smode = SPACE             " rkb1d-smode   Check of storage mode
*   i_smodus = SPACE            " rkb1d-smodus
*   i_subclass = SPACE          " rkb1d-subclass  Subclass
*   i_table_specific = SPACE    " ccvalid-xfeld
*   i_tabname = SPACE           " rkb1d-tabname
*   i_no_pers_help_select = SPACE  " rkd_flag
*   i_f4_modus = SPACE          " c
*   i_modus_object = SPACE      " c
  IMPORTING
    e_bertxt =                  " rkb1d-bertxt  Report description
    e_repid =                   " tkeb1-repid   Report name
    e_tabname =                 " tkeb1-tabname
    .  "  HELP_REPORT_VALUES_GET

ABAP code example for Function Module HELP_REPORT_VALUES_GET





The ABAP code below is a full code listing to execute function module HELP_REPORT_VALUES_GET 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:
ld_e_bertxt  TYPE RKB1D-BERTXT ,
ld_e_repid  TYPE TKEB1-REPID ,
ld_e_tabname  TYPE TKEB1-TABNAME .


DATA(ld_i_applclass) = some text here

DATA(ld_i_bertxt) = some text here

DATA(ld_i_displ_table) = some text here

DATA(ld_i_repid) = some text here

DATA(ld_i_smode) = some text here

DATA(ld_i_smodus) = some text here

DATA(ld_i_subclass) = some text here

DATA(ld_i_table_specific) = some text here

DATA(ld_i_tabname) = some text here
DATA(ld_i_no_pers_help_select) = 'Check type of data required'.
DATA(ld_i_f4_modus) = 'Check type of data required'.
DATA(ld_i_modus_object) = 'Check type of data required'. . CALL FUNCTION 'HELP_REPORT_VALUES_GET' * EXPORTING * i_applclass = ld_i_applclass * i_bertxt = ld_i_bertxt * i_displ_table = ld_i_displ_table * i_repid = ld_i_repid * i_smode = ld_i_smode * i_smodus = ld_i_smodus * i_subclass = ld_i_subclass * i_table_specific = ld_i_table_specific * i_tabname = ld_i_tabname * i_no_pers_help_select = ld_i_no_pers_help_select * i_f4_modus = ld_i_f4_modus * i_modus_object = ld_i_modus_object IMPORTING e_bertxt = ld_e_bertxt e_repid = ld_e_repid e_tabname = ld_e_tabname . " HELP_REPORT_VALUES_GET
IF SY-SUBRC EQ 0. "All OK 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_e_bertxt  TYPE RKB1D-BERTXT ,
ld_i_applclass  TYPE RKB1D-APPLCLASS ,
ld_e_repid  TYPE TKEB1-REPID ,
ld_i_bertxt  TYPE RKB1D-BERTXT ,
ld_e_tabname  TYPE TKEB1-TABNAME ,
ld_i_displ_table  TYPE CCVALID-XFELD ,
ld_i_repid  TYPE RKB1D-REPID ,
ld_i_smode  TYPE RKB1D-SMODE ,
ld_i_smodus  TYPE RKB1D-SMODUS ,
ld_i_subclass  TYPE RKB1D-SUBCLASS ,
ld_i_table_specific  TYPE CCVALID-XFELD ,
ld_i_tabname  TYPE RKB1D-TABNAME ,
ld_i_no_pers_help_select  TYPE RKD_FLAG ,
ld_i_f4_modus  TYPE C ,
ld_i_modus_object  TYPE C .


ld_i_applclass = some text here

ld_i_bertxt = some text here

ld_i_displ_table = some text here

ld_i_repid = some text here

ld_i_smode = some text here

ld_i_smodus = some text here

ld_i_subclass = some text here

ld_i_table_specific = some text here

ld_i_tabname = some text here
ld_i_no_pers_help_select = 'Check type of data required'.
ld_i_f4_modus = 'Check type of data required'.
ld_i_modus_object = '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 HELP_REPORT_VALUES_GET or its description.