SAP SAPBI_LIST_PROCESS Function Module for









SAPBI_LIST_PROCESS is a standard sapbi list process SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 sapbi list process FM, simply by entering the name SAPBI_LIST_PROCESS into the relevant SAP transaction such as SE37 or SE38.

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



Function SAPBI_LIST_PROCESS 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 'SAPBI_LIST_PROCESS'"
EXPORTING
X_PROCESS = "
* X_F_UNPROTECT = "
* X_F_DISPO = "
* X_SUB_CT = "
* X_NO_OTHER = "

IMPORTING
Y_ARLI_CHANGED = "
Y_SRLI_CHANGED = "
Y_MANR_CHANGED = "
Y_TABIX = "

TABLES
* XY_I_AUT_CAUSE = "
* XY_I_SEM_CAUSE = "
* XY_I_MAN_CAUSE = "

EXCEPTIONS
GENERAL_FAULT = 1
.



IMPORTING Parameters details for SAPBI_LIST_PROCESS

X_PROCESS -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: Yes

X_F_UNPROTECT -

Data type: REGEN-KENNZX
Optional: Yes
Call by Reference: Yes

X_F_DISPO -

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

X_SUB_CT -

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

X_NO_OTHER -

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

EXPORTING Parameters details for SAPBI_LIST_PROCESS

Y_ARLI_CHANGED -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: Yes

Y_SRLI_CHANGED -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: Yes

Y_MANR_CHANGED -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: Yes

Y_TABIX -

Data type: SY-TABIX
Optional: No
Call by Reference: Yes

TABLES Parameters details for SAPBI_LIST_PROCESS

XY_I_AUT_CAUSE -

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

XY_I_SEM_CAUSE -

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

XY_I_MAN_CAUSE -

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

EXCEPTIONS details

GENERAL_FAULT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SAPBI_LIST_PROCESS 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_x_process  TYPE REGEN-KENNZX, "   
lv_general_fault  TYPE REGEN, "   
lt_xy_i_aut_cause  TYPE STANDARD TABLE OF INSTCAUSE, "   
lv_y_arli_changed  TYPE REGEN-KENNZX, "   
lv_x_f_unprotect  TYPE REGEN-KENNZX, "   
lt_xy_i_sem_cause  TYPE STANDARD TABLE OF INSTCAUSE, "   
lv_y_srli_changed  TYPE REGEN-KENNZX, "   
lv_x_f_dispo  TYPE REGEN-KENNZX, "   
lt_xy_i_man_cause  TYPE STANDARD TABLE OF INSTCAUSE, "   
lv_y_manr_changed  TYPE REGEN-KENNZX, "   
lv_y_tabix  TYPE SY-TABIX, "   
lv_x_sub_ct  TYPE I, "   
lv_x_no_other  TYPE REGEN-KENNZX. "   

  CALL FUNCTION 'SAPBI_LIST_PROCESS'  "
    EXPORTING
         X_PROCESS = lv_x_process
         X_F_UNPROTECT = lv_x_f_unprotect
         X_F_DISPO = lv_x_f_dispo
         X_SUB_CT = lv_x_sub_ct
         X_NO_OTHER = lv_x_no_other
    IMPORTING
         Y_ARLI_CHANGED = lv_y_arli_changed
         Y_SRLI_CHANGED = lv_y_srli_changed
         Y_MANR_CHANGED = lv_y_manr_changed
         Y_TABIX = lv_y_tabix
    TABLES
         XY_I_AUT_CAUSE = lt_xy_i_aut_cause
         XY_I_SEM_CAUSE = lt_xy_i_sem_cause
         XY_I_MAN_CAUSE = lt_xy_i_man_cause
    EXCEPTIONS
        GENERAL_FAULT = 1
. " SAPBI_LIST_PROCESS




ABAP code using 7.40 inline data declarations to call FM SAPBI_LIST_PROCESS

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 KENNZX FROM REGEN INTO @DATA(ld_x_process).
 
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_arli_changed).
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_f_unprotect).
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_srli_changed).
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_f_dispo).
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_y_manr_changed).
 
"SELECT single TABIX FROM SY INTO @DATA(ld_y_tabix).
 
 
"SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_no_other).
 


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!