SAP SD_MONITOR_PROTOCOL_GET Function Module for NOTRANSL: SD-Monitor: Extrahieren Teilprotokoll aus Gesamtprotokoll
SD_MONITOR_PROTOCOL_GET is a standard sd monitor protocol get 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: SD-Monitor: Extrahieren Teilprotokoll aus Gesamtprotokoll 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 sd monitor protocol get FM, simply by entering the name SD_MONITOR_PROTOCOL_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: V01A
Program Name: SAPLV01A
Main Program: SAPLV01A
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_MONITOR_PROTOCOL_GET 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 'SD_MONITOR_PROTOCOL_GET'"NOTRANSL: SD-Monitor: Extrahieren Teilprotokoll aus Gesamtprotokoll.
EXPORTING
* FVBELN = "
* FPROTTYP = "
* FPOSNR = "
* FETENR = "
* FUSRPROTYP = "
* FPROT_REFRESH = 'X' "
FPAPPL = "
TABLES
* FSDPROTOCOL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FPROT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FTVBELN = "
* FTUSRPROTYP = "
* FTPROTTYP = "
* FTPAPPL = "
* FPROTHEAD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for SD_MONITOR_PROTOCOL_GET
FVBELN -
Data type: SDPROTHEAD-VBELNOptional: Yes
Call by Reference: No ( called with pass by value option)
FPROTTYP -
Data type: SDPROTHEAD-PROTTYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
FPOSNR -
Data type: SDPROTHEAD-POSNROptional: Yes
Call by Reference: No ( called with pass by value option)
FETENR -
Data type: SDPROTHEAD-ETENROptional: Yes
Call by Reference: No ( called with pass by value option)
FUSRPROTYP -
Data type: SDPROTHEAD-USRPROTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
FPROT_REFRESH -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
FPAPPL -
Data type: SDPROTHEAD-PAPPLOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SD_MONITOR_PROTOCOL_GET
FSDPROTOCOL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SDPROTOCOLOptional: Yes
Call by Reference: No ( called with pass by value option)
FPROT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FTVBELN -
Data type: RVBELNOptional: Yes
Call by Reference: No ( called with pass by value option)
FTUSRPROTYP -
Data type: RUSRPROTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
FTPROTTYP -
Data type: RPROTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
FTPAPPL -
Data type: RSDPAPPLOptional: Yes
Call by Reference: No ( called with pass by value option)
FPROTHEAD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SDPROTHEADOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_MONITOR_PROTOCOL_GET 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_fvbeln | TYPE SDPROTHEAD-VBELN, " | |||
| lt_fsdprotocol | TYPE STANDARD TABLE OF SDPROTOCOL, " | |||
| lt_fprot | TYPE STANDARD TABLE OF SDPROTOCOL, " | |||
| lv_fprottyp | TYPE SDPROTHEAD-PROTTYPE, " | |||
| lv_fposnr | TYPE SDPROTHEAD-POSNR, " | |||
| lt_ftvbeln | TYPE STANDARD TABLE OF RVBELN, " | |||
| lv_fetenr | TYPE SDPROTHEAD-ETENR, " | |||
| lt_ftusrprotyp | TYPE STANDARD TABLE OF RUSRPROTYP, " | |||
| lt_ftprottyp | TYPE STANDARD TABLE OF RPROTYP, " | |||
| lv_fusrprotyp | TYPE SDPROTHEAD-USRPROTYP, " | |||
| lt_ftpappl | TYPE STANDARD TABLE OF RSDPAPPL, " | |||
| lv_fprot_refresh | TYPE RSDPAPPL, " 'X' | |||
| lv_fpappl | TYPE SDPROTHEAD-PAPPL, " | |||
| lt_fprothead | TYPE STANDARD TABLE OF SDPROTHEAD. " |
|   CALL FUNCTION 'SD_MONITOR_PROTOCOL_GET' "NOTRANSL: SD-Monitor: Extrahieren Teilprotokoll aus Gesamtprotokoll |
| EXPORTING | ||
| FVBELN | = lv_fvbeln | |
| FPROTTYP | = lv_fprottyp | |
| FPOSNR | = lv_fposnr | |
| FETENR | = lv_fetenr | |
| FUSRPROTYP | = lv_fusrprotyp | |
| FPROT_REFRESH | = lv_fprot_refresh | |
| FPAPPL | = lv_fpappl | |
| TABLES | ||
| FSDPROTOCOL | = lt_fsdprotocol | |
| FPROT | = lt_fprot | |
| FTVBELN | = lt_ftvbeln | |
| FTUSRPROTYP | = lt_ftusrprotyp | |
| FTPROTTYP | = lt_ftprottyp | |
| FTPAPPL | = lt_ftpappl | |
| FPROTHEAD | = lt_fprothead | |
| . " SD_MONITOR_PROTOCOL_GET | ||
ABAP code using 7.40 inline data declarations to call FM SD_MONITOR_PROTOCOL_GET
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 VBELN FROM SDPROTHEAD INTO @DATA(ld_fvbeln). | ||||
| "SELECT single PROTTYPE FROM SDPROTHEAD INTO @DATA(ld_fprottyp). | ||||
| "SELECT single POSNR FROM SDPROTHEAD INTO @DATA(ld_fposnr). | ||||
| "SELECT single ETENR FROM SDPROTHEAD INTO @DATA(ld_fetenr). | ||||
| "SELECT single USRPROTYP FROM SDPROTHEAD INTO @DATA(ld_fusrprotyp). | ||||
| DATA(ld_fprot_refresh) | = 'X'. | |||
| "SELECT single PAPPL FROM SDPROTHEAD INTO @DATA(ld_fpappl). | ||||
Search for further information about these or an SAP related objects