SAP ISB_DBPROT_MESSAGE Function Module for SAP-Banking: Nachricht (oder Texte) ins DB-Prot. und Detail-Prot.
ISB_DBPROT_MESSAGE is a standard isb dbprot message SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAP-Banking: Nachricht (oder Texte) ins DB-Prot. und Detail-Prot. 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 isb dbprot message FM, simply by entering the name ISB_DBPROT_MESSAGE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBTR
Program Name: SAPLJBTR
Main Program: SAPLJBTR
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_DBPROT_MESSAGE 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 'ISB_DBPROT_MESSAGE'"SAP-Banking: Nachricht (oder Texte) ins DB-Prot. und Detail-Prot..
EXPORTING
* I_OBJNR = "Finanzobjektnummer
* I_DETAILPROT = 'X' "
* I_RADKEY = ' ' "
* I_SEVERITY = 'I' "
* I_ARBGB = "Nachrichtenklasse
* I_MSGNR = "Nachrichtennummer
* I_MSGV1 = "Variable1 / Text1
* I_MSGV2 = "Variable2 / Text2
* I_MSGV3 = "Variable3 / Text3
* I_MSGV4 = "Variable4 / Text4
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLJBTR_001 User Exit for Balance Formation
EXIT_SAPLJBTR_002 User Exit for Average Volumes
EXIT_SAPLJBTR_003 User Exit for Interest Contribution
EXIT_SAPLJBTR_004 User Exit for Opportunity Interest Contribution
EXIT_SAPLJBTR_005 User Exit for Calculating NPV Margin
EXIT_SAPLJBTR_006 User Exit for Period Distribution of NPV Margin
EXIT_SAPLJBTR_007 User Exit for Calculating NPV of Average Effective Capital
EXIT_SAPLJBTR_008 User Exit for Calculating Market Volume
EXIT_SAPLJBTR_009 User Exit for Calculating Opportunity Volume
EXIT_SAPLJBTR_010 User Exit for Calculating Contract Volume
EXIT_SAPLJBTR_011 User Exit for Calculating Unrealised Exchange Gains/Losses
EXIT_SAPLJBTR_012 User Exit for Average Customer Interest
EXIT_SAPLJBTR_013 User Exit for Net Interest Margin
EXIT_SAPLJBTR_014 User Exit for Opportunity Interest
EXIT_SAPLJBTR_015 User Exit for Currency Transformation Contribution
EXIT_SAPLJBTR_016 User Exit for Minimum Reserve Costs
EXIT_SAPLJBTR_101 User Exit BEFORE Call of Fixed Procedures with Standard Value Fields
EXIT_SAPLJBTR_102 User Exit AFTER Call of Fixed Processes with Standard Value Fields
EXIT_SAPLJBTR_201 User Exit BEFORE Call Up of Flexible Procedures with Line Items
EXIT_SAPLJBTR_202 User Exit BEFORE Posting Line Items
EXIT_SAPLJBTR_301 User Exit for Isolating the Effect of Currency on Loans
IMPORTING Parameters details for ISB_DBPROT_MESSAGE
I_OBJNR - Finanzobjektnummer
Data type: JBDOBJ1-OBJNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_DETAILPROT -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_RADKEY -
Data type: JBTOBJ1-RADKEYDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SEVERITY -
Data type: MESG-MSGTYDefault: 'I'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ARBGB - Nachrichtenklasse
Data type: MESG-ARBGBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGNR - Nachrichtennummer
Data type: MESG-TXTNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV1 - Variable1 / Text1
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV2 - Variable2 / Text2
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV3 - Variable3 / Text3
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV4 - Variable4 / Text4
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_DBPROT_MESSAGE 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_objnr | TYPE JBDOBJ1-OBJNR, " | |||
| lv_i_detailprot | TYPE C, " 'X' | |||
| lv_i_radkey | TYPE JBTOBJ1-RADKEY, " SPACE | |||
| lv_i_severity | TYPE MESG-MSGTY, " 'I' | |||
| lv_i_arbgb | TYPE MESG-ARBGB, " | |||
| lv_i_msgnr | TYPE MESG-TXTNR, " | |||
| lv_i_msgv1 | TYPE MESG, " | |||
| lv_i_msgv2 | TYPE MESG, " | |||
| lv_i_msgv3 | TYPE MESG, " | |||
| lv_i_msgv4 | TYPE MESG. " |
|   CALL FUNCTION 'ISB_DBPROT_MESSAGE' "SAP-Banking: Nachricht (oder Texte) ins DB-Prot. und Detail-Prot. |
| EXPORTING | ||
| I_OBJNR | = lv_i_objnr | |
| I_DETAILPROT | = lv_i_detailprot | |
| I_RADKEY | = lv_i_radkey | |
| I_SEVERITY | = lv_i_severity | |
| I_ARBGB | = lv_i_arbgb | |
| I_MSGNR | = lv_i_msgnr | |
| I_MSGV1 | = lv_i_msgv1 | |
| I_MSGV2 | = lv_i_msgv2 | |
| I_MSGV3 | = lv_i_msgv3 | |
| I_MSGV4 | = lv_i_msgv4 | |
| . " ISB_DBPROT_MESSAGE | ||
ABAP code using 7.40 inline data declarations to call FM ISB_DBPROT_MESSAGE
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 OBJNR FROM JBDOBJ1 INTO @DATA(ld_i_objnr). | ||||
| DATA(ld_i_detailprot) | = 'X'. | |||
| "SELECT single RADKEY FROM JBTOBJ1 INTO @DATA(ld_i_radkey). | ||||
| DATA(ld_i_radkey) | = ' '. | |||
| "SELECT single MSGTY FROM MESG INTO @DATA(ld_i_severity). | ||||
| DATA(ld_i_severity) | = 'I'. | |||
| "SELECT single ARBGB FROM MESG INTO @DATA(ld_i_arbgb). | ||||
| "SELECT single TXTNR FROM MESG INTO @DATA(ld_i_msgnr). | ||||
Search for further information about these or an SAP related objects