SAP BBP_SUS_BUPA_REG_NOTIFICATION Function Module for Benachrichtigung mit Anmeldungsdaten an Lieferanten versenden
BBP_SUS_BUPA_REG_NOTIFICATION is a standard bbp sus bupa reg notification SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Benachrichtigung mit Anmeldungsdaten an Lieferanten versenden 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 bbp sus bupa reg notification FM, simply by entering the name BBP_SUS_BUPA_REG_NOTIFICATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_BUPA_SUPPLIER_GEN
Program Name: SAPLBBP_BUPA_SUPPLIER_GEN
Main Program: SAPLBBP_BUPA_SUPPLIER_GEN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_SUS_BUPA_REG_NOTIFICATION 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 'BBP_SUS_BUPA_REG_NOTIFICATION'"Benachrichtigung mit Anmeldungsdaten an Lieferanten versenden.
EXPORTING
* IV_TO_SMTP = "E-Mail-Adresse
* IV_TO_LANGU = "Sprachenschlüssel
* IV_LOGON_USER = "Benutzername im Benutzerstamm
* IV_LOGON_PWD = "Neues Kennwort
* IV_TO_NAME1 = "Name 1 der Organisation
* IT_MAIL_TEXT = "Tabelle mit Breite 132 Zeichen
* IV_SEND_EMAIL = 'X' "Feld zum Ankreuzen
* IT_MAIL_TEXT_PWD = "Table With a Width of 132 Characters
IMPORTING
ET_MAIL_TEXT = "Tabelle mit Breite 132 Zeichen
ET_MAIL_TEXT_PWD = "Table With a Width of 132 Characters
TABLES
* ET_RETURN = "Returnparameter
IMPORTING Parameters details for BBP_SUS_BUPA_REG_NOTIFICATION
IV_TO_SMTP - E-Mail-Adresse
Data type: AD_SMTPADROptional: Yes
Call by Reference: No ( called with pass by value option)
IV_TO_LANGU - Sprachenschlüssel
Data type: SPRASOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_LOGON_USER - Benutzername im Benutzerstamm
Data type: XUBNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_LOGON_PWD - Neues Kennwort
Data type: XUNCODEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_TO_NAME1 - Name 1 der Organisation
Data type: BU_NAMEOR1Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_MAIL_TEXT - Tabelle mit Breite 132 Zeichen
Data type: TDTAB_C132Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_SEND_EMAIL - Feld zum Ankreuzen
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_MAIL_TEXT_PWD - Table With a Width of 132 Characters
Data type: TDTAB_C132Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BBP_SUS_BUPA_REG_NOTIFICATION
ET_MAIL_TEXT - Tabelle mit Breite 132 Zeichen
Data type: TDTAB_C132Optional: No
Call by Reference: Yes
ET_MAIL_TEXT_PWD - Table With a Width of 132 Characters
Data type: TDTAB_C132Optional: No
Call by Reference: Yes
TABLES Parameters details for BBP_SUS_BUPA_REG_NOTIFICATION
ET_RETURN - Returnparameter
Data type: BAPIRET2Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for BBP_SUS_BUPA_REG_NOTIFICATION 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: | ||||
| lt_et_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_iv_to_smtp | TYPE AD_SMTPADR, " | |||
| lv_et_mail_text | TYPE TDTAB_C132, " | |||
| lv_iv_to_langu | TYPE SPRAS, " | |||
| lv_et_mail_text_pwd | TYPE TDTAB_C132, " | |||
| lv_iv_logon_user | TYPE XUBNAME, " | |||
| lv_iv_logon_pwd | TYPE XUNCODE, " | |||
| lv_iv_to_name1 | TYPE BU_NAMEOR1, " | |||
| lv_it_mail_text | TYPE TDTAB_C132, " | |||
| lv_iv_send_email | TYPE XFELD, " 'X' | |||
| lv_it_mail_text_pwd | TYPE TDTAB_C132. " |
|   CALL FUNCTION 'BBP_SUS_BUPA_REG_NOTIFICATION' "Benachrichtigung mit Anmeldungsdaten an Lieferanten versenden |
| EXPORTING | ||
| IV_TO_SMTP | = lv_iv_to_smtp | |
| IV_TO_LANGU | = lv_iv_to_langu | |
| IV_LOGON_USER | = lv_iv_logon_user | |
| IV_LOGON_PWD | = lv_iv_logon_pwd | |
| IV_TO_NAME1 | = lv_iv_to_name1 | |
| IT_MAIL_TEXT | = lv_it_mail_text | |
| IV_SEND_EMAIL | = lv_iv_send_email | |
| IT_MAIL_TEXT_PWD | = lv_it_mail_text_pwd | |
| IMPORTING | ||
| ET_MAIL_TEXT | = lv_et_mail_text | |
| ET_MAIL_TEXT_PWD | = lv_et_mail_text_pwd | |
| TABLES | ||
| ET_RETURN | = lt_et_return | |
| . " BBP_SUS_BUPA_REG_NOTIFICATION | ||
ABAP code using 7.40 inline data declarations to call FM BBP_SUS_BUPA_REG_NOTIFICATION
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.| DATA(ld_iv_send_email) | = 'X'. | |||
Search for further information about these or an SAP related objects