SAP EHSB_ST01_SUBSTAT_AUTH_CHECK Function Module for NOTRANSL: EHS: Berechtigungsprüfung für die Bearbeitung von Statuszuordnun









EHSB_ST01_SUBSTAT_AUTH_CHECK is a standard ehsb st01 substat auth check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: EHS: Berechtigungsprüfung für die Bearbeitung von Statuszuordnun processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for ehsb st01 substat auth check FM, simply by entering the name EHSB_ST01_SUBSTAT_AUTH_CHECK into the relevant SAP transaction such as SE37 or SE38.

Function Group: EHSB_ST01
Program Name: SAPLEHSB_ST01
Main Program: SAPLEHSB_ST01
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EHSB_ST01_SUBSTAT_AUTH_CHECK pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'EHSB_ST01_SUBSTAT_AUTH_CHECK'"NOTRANSL: EHS: Berechtigungsprüfung für die Bearbeitung von Statuszuordnun
EXPORTING
I_ACTYPE = "Activity
I_AUTHGRP = "Authorization Group
* I_SUBCAT = "Specification Type
I_SUBSTAT = "Status
I_SUBSTAT_SUCC = "Next Status
I_VACLID = "Classification
I_RVLID = "Validity Area
* I_FLG_USAGE_CHECK = ESP1_TRUE "
* I_RECNTRH = "

IMPORTING
E_FLG_OK = "

EXCEPTIONS
ILLEGAL_INPUT = 1 INTERNAL_ERROR = 2
.



IMPORTING Parameters details for EHSB_ST01_SUBSTAT_AUTH_CHECK

I_ACTYPE - Activity

Data type: RCGDIALCTR-ACTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

I_AUTHGRP - Authorization Group

Data type: ESTRH-AUTHGRP
Optional: No
Call by Reference: No ( called with pass by value option)

I_SUBCAT - Specification Type

Data type: ESTRH-SUBCAT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SUBSTAT - Status

Data type: ESTST-SUBSTAT
Optional: No
Call by Reference: No ( called with pass by value option)

I_SUBSTAT_SUCC - Next Status

Data type: ESTST-SUBSTAT
Optional: No
Call by Reference: No ( called with pass by value option)

I_VACLID - Classification

Data type: ESTDU-VACLID
Optional: No
Call by Reference: No ( called with pass by value option)

I_RVLID - Validity Area

Data type: ESTDU-RVLID
Optional: No
Call by Reference: No ( called with pass by value option)

I_FLG_USAGE_CHECK -

Data type: ESP1_BOOLEAN
Default: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_RECNTRH -

Data type: ESERECN
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for EHSB_ST01_SUBSTAT_AUTH_CHECK

E_FLG_OK -

Data type: ESP1_BOOLEAN
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ILLEGAL_INPUT - Invalid Entry

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

INTERNAL_ERROR - Internal System Error

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for EHSB_ST01_SUBSTAT_AUTH_CHECK Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_e_flg_ok  TYPE ESP1_BOOLEAN, "   
lv_i_actype  TYPE RCGDIALCTR-ACTYPE, "   
lv_illegal_input  TYPE RCGDIALCTR, "   
lv_i_authgrp  TYPE ESTRH-AUTHGRP, "   
lv_internal_error  TYPE ESTRH, "   
lv_i_subcat  TYPE ESTRH-SUBCAT, "   
lv_i_substat  TYPE ESTST-SUBSTAT, "   
lv_i_substat_succ  TYPE ESTST-SUBSTAT, "   
lv_i_vaclid  TYPE ESTDU-VACLID, "   
lv_i_rvlid  TYPE ESTDU-RVLID, "   
lv_i_flg_usage_check  TYPE ESP1_BOOLEAN, "   ESP1_TRUE
lv_i_recntrh  TYPE ESERECN. "   

  CALL FUNCTION 'EHSB_ST01_SUBSTAT_AUTH_CHECK'  "NOTRANSL: EHS: Berechtigungsprüfung für die Bearbeitung von Statuszuordnun
    EXPORTING
         I_ACTYPE = lv_i_actype
         I_AUTHGRP = lv_i_authgrp
         I_SUBCAT = lv_i_subcat
         I_SUBSTAT = lv_i_substat
         I_SUBSTAT_SUCC = lv_i_substat_succ
         I_VACLID = lv_i_vaclid
         I_RVLID = lv_i_rvlid
         I_FLG_USAGE_CHECK = lv_i_flg_usage_check
         I_RECNTRH = lv_i_recntrh
    IMPORTING
         E_FLG_OK = lv_e_flg_ok
    EXCEPTIONS
        ILLEGAL_INPUT = 1
        INTERNAL_ERROR = 2
. " EHSB_ST01_SUBSTAT_AUTH_CHECK




ABAP code using 7.40 inline data declarations to call FM EHSB_ST01_SUBSTAT_AUTH_CHECK

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
"SELECT single ACTYPE FROM RCGDIALCTR INTO @DATA(ld_i_actype).
 
 
"SELECT single AUTHGRP FROM ESTRH INTO @DATA(ld_i_authgrp).
 
 
"SELECT single SUBCAT FROM ESTRH INTO @DATA(ld_i_subcat).
 
"SELECT single SUBSTAT FROM ESTST INTO @DATA(ld_i_substat).
 
"SELECT single SUBSTAT FROM ESTST INTO @DATA(ld_i_substat_succ).
 
"SELECT single VACLID FROM ESTDU INTO @DATA(ld_i_vaclid).
 
"SELECT single RVLID FROM ESTDU INTO @DATA(ld_i_rvlid).
 
DATA(ld_i_flg_usage_check) = ESP1_TRUE.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!