SAP SDBMON01_SELFMONI_BUILD_NODE Function Module for
SDBMON01_SELFMONI_BUILD_NODE is a standard sdbmon01 selfmoni build node 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 sdbmon01 selfmoni build node FM, simply by entering the name SDBMON01_SELFMONI_BUILD_NODE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SDBMON01
Program Name: SAPLSDBMON01
Main Program:
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SDBMON01_SELFMONI_BUILD_NODE 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 'SDBMON01_SELFMONI_BUILD_NODE'".
EXPORTING
SELFMONI_MC_NAME = "
SELFMONI_MSC_MSGNO = "
SELFMONI_MO_NAME = "
SELFMONI_MO_MTE_CLASS = "
SELFMONI_MO_MSGID = "
SELFMONI_MO_MSGNO = "
SELFMONI_MSC_NAME = "
SELFMONI_MSC_MTE_CLASS = "
SELFMONI_MSC_CG = "
SELFMONI_MSC_MSGID = "
IMPORTING
SELFMONI_TID = "
EXCEPTIONS
COULD_NOT_BUILD_NODE = 1
IMPORTING Parameters details for SDBMON01_SELFMONI_BUILD_NODE
SELFMONI_MC_NAME -
Data type: ALMCCREATE-MCNAMEOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MSC_MSGNO -
Data type: SY-MSGNOOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MO_NAME -
Data type: ALMTCREATE-NAMEOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MO_MTE_CLASS -
Data type: ALMTCREATE-CUSGROUPMTOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MO_MSGID -
Data type: SY-MSGIDOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MO_MSGNO -
Data type: SY-MSGNOOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MSC_NAME -
Data type: ALMTCREATE-NAMEOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MSC_MTE_CLASS -
Data type: ALMTCREATE-CUSGROUPMTOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MSC_CG -
Data type: ALMTCREATE-CUSGROUPOTOptional: No
Call by Reference: No ( called with pass by value option)
SELFMONI_MSC_MSGID -
Data type: SY-MSGIDOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SDBMON01_SELFMONI_BUILD_NODE
SELFMONI_TID -
Data type: ALGLOBTIDOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
COULD_NOT_BUILD_NODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SDBMON01_SELFMONI_BUILD_NODE 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_selfmoni_tid | TYPE ALGLOBTID, " | |||
| lv_selfmoni_mc_name | TYPE ALMCCREATE-MCNAME, " | |||
| lv_could_not_build_node | TYPE ALMCCREATE, " | |||
| lv_selfmoni_msc_msgno | TYPE SY-MSGNO, " | |||
| lv_selfmoni_mo_name | TYPE ALMTCREATE-NAME, " | |||
| lv_selfmoni_mo_mte_class | TYPE ALMTCREATE-CUSGROUPMT, " | |||
| lv_selfmoni_mo_msgid | TYPE SY-MSGID, " | |||
| lv_selfmoni_mo_msgno | TYPE SY-MSGNO, " | |||
| lv_selfmoni_msc_name | TYPE ALMTCREATE-NAME, " | |||
| lv_selfmoni_msc_mte_class | TYPE ALMTCREATE-CUSGROUPMT, " | |||
| lv_selfmoni_msc_cg | TYPE ALMTCREATE-CUSGROUPOT, " | |||
| lv_selfmoni_msc_msgid | TYPE SY-MSGID. " |
|   CALL FUNCTION 'SDBMON01_SELFMONI_BUILD_NODE' " |
| EXPORTING | ||
| SELFMONI_MC_NAME | = lv_selfmoni_mc_name | |
| SELFMONI_MSC_MSGNO | = lv_selfmoni_msc_msgno | |
| SELFMONI_MO_NAME | = lv_selfmoni_mo_name | |
| SELFMONI_MO_MTE_CLASS | = lv_selfmoni_mo_mte_class | |
| SELFMONI_MO_MSGID | = lv_selfmoni_mo_msgid | |
| SELFMONI_MO_MSGNO | = lv_selfmoni_mo_msgno | |
| SELFMONI_MSC_NAME | = lv_selfmoni_msc_name | |
| SELFMONI_MSC_MTE_CLASS | = lv_selfmoni_msc_mte_class | |
| SELFMONI_MSC_CG | = lv_selfmoni_msc_cg | |
| SELFMONI_MSC_MSGID | = lv_selfmoni_msc_msgid | |
| IMPORTING | ||
| SELFMONI_TID | = lv_selfmoni_tid | |
| EXCEPTIONS | ||
| COULD_NOT_BUILD_NODE = 1 | ||
| . " SDBMON01_SELFMONI_BUILD_NODE | ||
ABAP code using 7.40 inline data declarations to call FM SDBMON01_SELFMONI_BUILD_NODE
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 MCNAME FROM ALMCCREATE INTO @DATA(ld_selfmoni_mc_name). | ||||
| "SELECT single MSGNO FROM SY INTO @DATA(ld_selfmoni_msc_msgno). | ||||
| "SELECT single NAME FROM ALMTCREATE INTO @DATA(ld_selfmoni_mo_name). | ||||
| "SELECT single CUSGROUPMT FROM ALMTCREATE INTO @DATA(ld_selfmoni_mo_mte_class). | ||||
| "SELECT single MSGID FROM SY INTO @DATA(ld_selfmoni_mo_msgid). | ||||
| "SELECT single MSGNO FROM SY INTO @DATA(ld_selfmoni_mo_msgno). | ||||
| "SELECT single NAME FROM ALMTCREATE INTO @DATA(ld_selfmoni_msc_name). | ||||
| "SELECT single CUSGROUPMT FROM ALMTCREATE INTO @DATA(ld_selfmoni_msc_mte_class). | ||||
| "SELECT single CUSGROUPOT FROM ALMTCREATE INTO @DATA(ld_selfmoni_msc_cg). | ||||
| "SELECT single MSGID FROM SY INTO @DATA(ld_selfmoni_msc_msgid). | ||||
Search for further information about these or an SAP related objects