SAP Function Modules

FAGL_HDB_CUST_STATUS_GET SAP Function module - Get Status for Totals Drilldown Reporting







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

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


Pattern for FM FAGL_HDB_CUST_STATUS_GET - FAGL HDB CUST STATUS GET





CALL FUNCTION 'FAGL_HDB_CUST_STATUS_GET' "Get Status for Totals Drilldown Reporting
  EXPORTING
    id_appl =                   " hdb_application  Application
    id_subappl =                " hdb_subapplication  Sub-Application
*   id_refresh =                " boole_d       'X' = Refresh information
* CHANGING
*   cd_status_icon_subappl =    " icon_d        Sub-application: Status Icon
*   cd_status_icon_set =        " icon_d        Application Settings: Status Icon
*   cd_status_icon_repl =       " icon_d        Replication: Status Icon
*   cd_status_icon_spec_set =   " icon_d        Specific Settings: Status Icon
    .  "  FAGL_HDB_CUST_STATUS_GET

ABAP code example for Function Module FAGL_HDB_CUST_STATUS_GET





The ABAP code below is a full code listing to execute function module FAGL_HDB_CUST_STATUS_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_cd_status_icon_subappl) = 'Check type of data required'.
DATA(ld_cd_status_icon_set) = 'Check type of data required'.
DATA(ld_cd_status_icon_repl) = 'Check type of data required'.
DATA(ld_cd_status_icon_spec_set) = 'Check type of data required'.
DATA(ld_id_appl) = 'Check type of data required'.
DATA(ld_id_subappl) = 'Check type of data required'.
DATA(ld_id_refresh) = 'Check type of data required'. . CALL FUNCTION 'FAGL_HDB_CUST_STATUS_GET' EXPORTING id_appl = ld_id_appl id_subappl = ld_id_subappl * id_refresh = ld_id_refresh * CHANGING * cd_status_icon_subappl = ld_cd_status_icon_subappl * cd_status_icon_set = ld_cd_status_icon_set * cd_status_icon_repl = ld_cd_status_icon_repl * cd_status_icon_spec_set = ld_cd_status_icon_spec_set . " FAGL_HDB_CUST_STATUS_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_cd_status_icon_subappl  TYPE ICON_D ,
ld_id_appl  TYPE HDB_APPLICATION ,
ld_cd_status_icon_set  TYPE ICON_D ,
ld_id_subappl  TYPE HDB_SUBAPPLICATION ,
ld_cd_status_icon_repl  TYPE ICON_D ,
ld_id_refresh  TYPE BOOLE_D ,
ld_cd_status_icon_spec_set  TYPE ICON_D .

ld_cd_status_icon_subappl = 'Check type of data required'.
ld_id_appl = 'Check type of data required'.
ld_cd_status_icon_set = 'Check type of data required'.
ld_id_subappl = 'Check type of data required'.
ld_cd_status_icon_repl = 'Check type of data required'.
ld_id_refresh = 'Check type of data required'.
ld_cd_status_icon_spec_set = '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 FAGL_HDB_CUST_STATUS_GET or its description.