SAP FKK_EBPP_CHANGE_ADDRESS_1260 Function Module for Biller Direct: Change to an Address









FKK_EBPP_CHANGE_ADDRESS_1260 is a standard fkk ebpp change address 1260 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Biller Direct: Change to an Address 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 fkk ebpp change address 1260 FM, simply by entering the name FKK_EBPP_CHANGE_ADDRESS_1260 into the relevant SAP transaction such as SE37 or SE38.

Function Group: GEN_EBPP
Program Name: SAPLGEN_EBPP
Main Program: SAPLGEN_EBPP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function FKK_EBPP_CHANGE_ADDRESS_1260 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 'FKK_EBPP_CHANGE_ADDRESS_1260'"Biller Direct: Change to an Address
EXPORTING
I_PARTNER = "Biller Direct: Partner Data
* I_ADDRESS = "Transfer Structure for an Address (Special to Biller Direct)
* I_CHECKMODUS = ' ' "Biller Direct: Check Mode for Master Data Change
* I_PLEASE_COMMIT = 'X' "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')

IMPORTING
E_RETURNCODE = "Return Value, Return Value after ABAP Statements
RETURN = "Return Parameter(s)

TABLES
* T_TELEPHONES = "Telephone number data transfer structure (centr.addr.admin)
* T_FAXES = "Transfer structure for fax numbers (central address admin.)
* T_EMAILS = "SMTP addresses data transfer structure (centr. addr. admin.)
* T_R3MAILS = "Transfer structure for remote mail addresses (central address admin.)
* T_INTERNETS = "URI address transfer structure (central address management)
* T_MESSAGES = "Biller Direct: Messages
.



IMPORTING Parameters details for FKK_EBPP_CHANGE_ADDRESS_1260

I_PARTNER - Biller Direct: Partner Data

Data type: GENEBPP_PARTNER
Optional: No
Call by Reference: No ( called with pass by value option)

I_ADDRESS - Transfer Structure for an Address (Special to Biller Direct)

Data type: FKK_EBPP_ADDRESS
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECKMODUS - Biller Direct: Check Mode for Master Data Change

Data type: EBPP_CHECKMODUS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PLEASE_COMMIT - Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FKK_EBPP_CHANGE_ADDRESS_1260

E_RETURNCODE - Return Value, Return Value after ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: No ( called with pass by value option)

RETURN - Return Parameter(s)

Data type: BAPIRET1
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FKK_EBPP_CHANGE_ADDRESS_1260

T_TELEPHONES - Telephone number data transfer structure (centr.addr.admin)

Data type: FKKEBPP_ADTEL
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_FAXES - Transfer structure for fax numbers (central address admin.)

Data type: FKKEBPP_ADFAX
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_EMAILS - SMTP addresses data transfer structure (centr. addr. admin.)

Data type: FKKEBPP_ADSMTP
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_R3MAILS - Transfer structure for remote mail addresses (central address admin.)

Data type: FKKEBPP_ADRML
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_INTERNETS - URI address transfer structure (central address management)

Data type: FKKEBPP_ADURI
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_MESSAGES - Biller Direct: Messages

Data type: GENEBPP_MSG
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FKK_EBPP_CHANGE_ADDRESS_1260 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_partner  TYPE GENEBPP_PARTNER, "   
lv_e_returncode  TYPE SY-SUBRC, "   
lt_t_telephones  TYPE STANDARD TABLE OF FKKEBPP_ADTEL, "   
lv_return  TYPE BAPIRET1, "   
lt_t_faxes  TYPE STANDARD TABLE OF FKKEBPP_ADFAX, "   
lv_i_address  TYPE FKK_EBPP_ADDRESS, "   
lt_t_emails  TYPE STANDARD TABLE OF FKKEBPP_ADSMTP, "   
lv_i_checkmodus  TYPE EBPP_CHECKMODUS, "   SPACE
lt_t_r3mails  TYPE STANDARD TABLE OF FKKEBPP_ADRML, "   
lv_i_please_commit  TYPE BOOLE-BOOLE, "   'X'
lt_t_internets  TYPE STANDARD TABLE OF FKKEBPP_ADURI, "   
lt_t_messages  TYPE STANDARD TABLE OF GENEBPP_MSG. "   

  CALL FUNCTION 'FKK_EBPP_CHANGE_ADDRESS_1260'  "Biller Direct: Change to an Address
    EXPORTING
         I_PARTNER = lv_i_partner
         I_ADDRESS = lv_i_address
         I_CHECKMODUS = lv_i_checkmodus
         I_PLEASE_COMMIT = lv_i_please_commit
    IMPORTING
         E_RETURNCODE = lv_e_returncode
         RETURN = lv_return
    TABLES
         T_TELEPHONES = lt_t_telephones
         T_FAXES = lt_t_faxes
         T_EMAILS = lt_t_emails
         T_R3MAILS = lt_t_r3mails
         T_INTERNETS = lt_t_internets
         T_MESSAGES = lt_t_messages
. " FKK_EBPP_CHANGE_ADDRESS_1260




ABAP code using 7.40 inline data declarations to call FM FKK_EBPP_CHANGE_ADDRESS_1260

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 SUBRC FROM SY INTO @DATA(ld_e_returncode).
 
 
 
 
 
 
DATA(ld_i_checkmodus) = ' '.
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_please_commit).
DATA(ld_i_please_commit) = 'X'.
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!