SAP FSBP_DARK_MAINTAIN_REL Function Module for
FSBP_DARK_MAINTAIN_REL is a standard fsbp dark maintain rel 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 fsbp dark maintain rel FM, simply by entering the name FSBP_DARK_MAINTAIN_REL into the relevant SAP transaction such as SE37 or SE38.
Function Group: FS_BP_DIRECT_INPUT
Program Name: SAPLFS_BP_DIRECT_INPUT
Main Program: SAPLFS_BP_DIRECT_INPUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FSBP_DARK_MAINTAIN_REL 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 'FSBP_DARK_MAINTAIN_REL'".
EXPORTING
I_AKTYP = "
* I_BUT050 = "
* I_BUT050_OLD = "
* I_BUT051 = "
* I_BUT053 = "
IMPORTING
E_XERROR = "
T_DATA = "
T_MESSAGE = "
T_KEYVALUE = "
IMPORTING Parameters details for FSBP_DARK_MAINTAIN_REL
I_AKTYP -
Data type: TBZ0K-AKTYPOptional: No
Call by Reference: Yes
I_BUT050 -
Data type: BUT050Optional: Yes
Call by Reference: Yes
I_BUT050_OLD -
Data type: BUT050Optional: Yes
Call by Reference: Yes
I_BUT051 -
Data type: BUT051Optional: Yes
Call by Reference: Yes
I_BUT053 -
Data type: BUT053Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FSBP_DARK_MAINTAIN_REL
E_XERROR -
Data type: BUS000FLDS-CHAR1Optional: No
Call by Reference: Yes
T_DATA -
Data type: FSBP_BUSSDI_TTYOptional: No
Call by Reference: Yes
T_MESSAGE -
Data type: BUS0MSG1_TOptional: No
Call by Reference: Yes
T_KEYVALUE -
Data type: FSBP_FSCAA_TTY_BUSSKEYVALOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FSBP_DARK_MAINTAIN_REL 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_i_aktyp | TYPE TBZ0K-AKTYP, " | |||
| lv_e_xerror | TYPE BUS000FLDS-CHAR1, " | |||
| lv_t_data | TYPE FSBP_BUSSDI_TTY, " | |||
| lv_i_but050 | TYPE BUT050, " | |||
| lv_t_message | TYPE BUS0MSG1_T, " | |||
| lv_i_but050_old | TYPE BUT050, " | |||
| lv_i_but051 | TYPE BUT051, " | |||
| lv_t_keyvalue | TYPE FSBP_FSCAA_TTY_BUSSKEYVAL, " | |||
| lv_i_but053 | TYPE BUT053. " |
|   CALL FUNCTION 'FSBP_DARK_MAINTAIN_REL' " |
| EXPORTING | ||
| I_AKTYP | = lv_i_aktyp | |
| I_BUT050 | = lv_i_but050 | |
| I_BUT050_OLD | = lv_i_but050_old | |
| I_BUT051 | = lv_i_but051 | |
| I_BUT053 | = lv_i_but053 | |
| IMPORTING | ||
| E_XERROR | = lv_e_xerror | |
| T_DATA | = lv_t_data | |
| T_MESSAGE | = lv_t_message | |
| T_KEYVALUE | = lv_t_keyvalue | |
| . " FSBP_DARK_MAINTAIN_REL | ||
ABAP code using 7.40 inline data declarations to call FM FSBP_DARK_MAINTAIN_REL
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 AKTYP FROM TBZ0K INTO @DATA(ld_i_aktyp). | ||||
| "SELECT single CHAR1 FROM BUS000FLDS INTO @DATA(ld_e_xerror). | ||||
Search for further information about these or an SAP related objects