SAP C1R0_MLIINH_BP_INT Function Module for NOTRANSL: EHS: Hintergrundprozess für die Mehrfachvererbung









C1R0_MLIINH_BP_INT is a standard c1r0 mliinh bp int 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: Hintergrundprozess für die Mehrfachvererbung 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 c1r0 mliinh bp int FM, simply by entering the name C1R0_MLIINH_BP_INT into the relevant SAP transaction such as SE37 or SE38.

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



Function C1R0_MLIINH_BP_INT 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 'C1R0_MLIINH_BP_INT'"NOTRANSL: EHS: Hintergrundprozess für die Mehrfachvererbung
EXPORTING
* I_FLG_REPLOCK_CHK = ESP1_TRUE "
* I_FLG_RUNS_IN_NEW_MODE = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_NO_AUTH_CHECK = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_WLIST_IS_COMPLETE = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_REL_SUCCESSFUL_GET = ESP1_FALSE "
* I_FLG_ONLINE_CALL = ESP1_FALSE "
* I_JOBNAME = "Background job name
* I_JOBCOUNT = "Job ID
* I_UNAME = SY-UNAME "ABAP System Field: Name of Current User
* I_ADDINF = "EHS: Additional Information for Function Module Calls
* I_FLG_AT_SAVE_TO_DB = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_AT_CREATE = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_ENFORCE_SAVE = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_FLG_ERROR = "

TABLES
* I_REL_WLIST_TAB = "
* E_ERROR_TAB = "EHS: General Error Structure
* I_REL_LOCKFAIL_TAB = "
* E_REL_SUCCESSFUL_TAB = "
.



IMPORTING Parameters details for C1R0_MLIINH_BP_INT

I_FLG_REPLOCK_CHK -

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

I_FLG_RUNS_IN_NEW_MODE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_FLG_NO_AUTH_CHECK - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_FLG_WLIST_IS_COMPLETE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_FLG_REL_SUCCESSFUL_GET -

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

I_FLG_ONLINE_CALL -

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

I_JOBNAME - Background job name

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

I_JOBCOUNT - Job ID

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

I_UNAME - ABAP System Field: Name of Current User

Data type: SY-UNAME
Default: SY-UNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ADDINF - EHS: Additional Information for Function Module Calls

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

I_FLG_AT_SAVE_TO_DB - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_FLG_AT_CREATE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

I_FLG_ENFORCE_SAVE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

EXPORTING Parameters details for C1R0_MLIINH_BP_INT

E_FLG_ERROR -

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

TABLES Parameters details for C1R0_MLIINH_BP_INT

I_REL_WLIST_TAB -

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

E_ERROR_TAB - EHS: General Error Structure

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

I_REL_LOCKFAIL_TAB -

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

E_REL_SUCCESSFUL_TAB -

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

Copy and paste ABAP code example for C1R0_MLIINH_BP_INT 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_error  TYPE ESP1_BOOLEAN, "   
lt_i_rel_wlist_tab  TYPE STANDARD TABLE OF ESP13_REL_WLIST_TAB_TYPE, "   
lv_i_flg_replock_chk  TYPE ESP1_BOOLEAN, "   ESP1_TRUE
lv_i_flg_runs_in_new_mode  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_flg_no_auth_check  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_flg_wlist_is_complete  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_flg_rel_successful_get  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lt_e_error_tab  TYPE STANDARD TABLE OF RCGEXTERROR, "   
lv_i_flg_online_call  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_jobname  TYPE TBTCM-JOBNAME, "   
lt_i_rel_lockfail_tab  TYPE STANDARD TABLE OF ESP13_REL_WLIST_TAB_TYPE, "   
lv_i_jobcount  TYPE TBTCM-JOBCOUNT, "   
lt_e_rel_successful_tab  TYPE STANDARD TABLE OF ESP13_REL_WLIST_TAB_TYPE, "   
lv_i_uname  TYPE SY-UNAME, "   SY-UNAME
lv_i_addinf  TYPE RCGADDINF, "   
lv_i_flg_at_save_to_db  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_flg_at_create  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_i_flg_enforce_save  TYPE ESP1_BOOLEAN. "   ESP1_FALSE

  CALL FUNCTION 'C1R0_MLIINH_BP_INT'  "NOTRANSL: EHS: Hintergrundprozess für die Mehrfachvererbung
    EXPORTING
         I_FLG_REPLOCK_CHK = lv_i_flg_replock_chk
         I_FLG_RUNS_IN_NEW_MODE = lv_i_flg_runs_in_new_mode
         I_FLG_NO_AUTH_CHECK = lv_i_flg_no_auth_check
         I_FLG_WLIST_IS_COMPLETE = lv_i_flg_wlist_is_complete
         I_FLG_REL_SUCCESSFUL_GET = lv_i_flg_rel_successful_get
         I_FLG_ONLINE_CALL = lv_i_flg_online_call
         I_JOBNAME = lv_i_jobname
         I_JOBCOUNT = lv_i_jobcount
         I_UNAME = lv_i_uname
         I_ADDINF = lv_i_addinf
         I_FLG_AT_SAVE_TO_DB = lv_i_flg_at_save_to_db
         I_FLG_AT_CREATE = lv_i_flg_at_create
         I_FLG_ENFORCE_SAVE = lv_i_flg_enforce_save
    IMPORTING
         E_FLG_ERROR = lv_e_flg_error
    TABLES
         I_REL_WLIST_TAB = lt_i_rel_wlist_tab
         E_ERROR_TAB = lt_e_error_tab
         I_REL_LOCKFAIL_TAB = lt_i_rel_lockfail_tab
         E_REL_SUCCESSFUL_TAB = lt_e_rel_successful_tab
. " C1R0_MLIINH_BP_INT




ABAP code using 7.40 inline data declarations to call FM C1R0_MLIINH_BP_INT

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.

 
 
DATA(ld_i_flg_replock_chk) = ESP1_TRUE.
 
DATA(ld_i_flg_runs_in_new_mode) = ESP1_FALSE.
 
DATA(ld_i_flg_no_auth_check) = ESP1_FALSE.
 
DATA(ld_i_flg_wlist_is_complete) = ESP1_FALSE.
 
DATA(ld_i_flg_rel_successful_get) = ESP1_FALSE.
 
 
DATA(ld_i_flg_online_call) = ESP1_FALSE.
 
"SELECT single JOBNAME FROM TBTCM INTO @DATA(ld_i_jobname).
 
 
"SELECT single JOBCOUNT FROM TBTCM INTO @DATA(ld_i_jobcount).
 
 
"SELECT single UNAME FROM SY INTO @DATA(ld_i_uname).
DATA(ld_i_uname) = SY-UNAME.
 
 
DATA(ld_i_flg_at_save_to_db) = ESP1_FALSE.
 
DATA(ld_i_flg_at_create) = ESP1_FALSE.
 
DATA(ld_i_flg_enforce_save) = ESP1_FALSE.
 


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!