SAP BAPI_IFBUS1037SR_SAVEREPLICAM Function Module for BAPI Business Partner Sales Activity Receiver
BAPI_IFBUS1037SR_SAVEREPLICAM is a standard bapi ifbus1037sr savereplicam SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BAPI Business Partner Sales Activity Receiver 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 bapi ifbus1037sr savereplicam FM, simply by entering the name BAPI_IFBUS1037SR_SAVEREPLICAM into the relevant SAP transaction such as SE37 or SE38.
Function Group: IF1037SR
Program Name: SAPLIF1037SR
Main Program:
Appliation area: V
Release date: 24-Mar-1999
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_IFBUS1037SR_SAVEREPLICAM 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 'BAPI_IFBUS1037SR_SAVEREPLICAM'"BAPI Business Partner Sales Activity Receiver.
EXPORTING
SENDER = "Logical System - Sender
TABLES
CONTROLDATA = "Control Data
* GENERALDATA = "General Data
* GENERALDATAX = "General data - Change Indicators
* BUSINESSPARTNER = "Document Partner
* BUSINESSPARTNERX = "Document Partner - Change Indicators
* TEXT = "Document Texts
* TEXTX = "Document Texts - Change Indicators
* RETURN = "Error Code
IMPORTING Parameters details for BAPI_IFBUS1037SR_SAVEREPLICAM
SENDER - Logical System - Sender
Data type: BAPI_SENDEROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_IFBUS1037SR_SAVEREPLICAM
CONTROLDATA - Control Data
Data type: BAPI_VBKA_CONTROLOptional: No
Call by Reference: No ( called with pass by value option)
GENERALDATA - General Data
Data type: BAPI_BUS1037_VBKAKOM_CROptional: Yes
Call by Reference: No ( called with pass by value option)
GENERALDATAX - General data - Change Indicators
Data type: BAPI_BUS1037_VBKAKOM_CRXOptional: Yes
Call by Reference: No ( called with pass by value option)
BUSINESSPARTNER - Document Partner
Data type: BAPI_VBKA_VBPA2KOMOptional: Yes
Call by Reference: No ( called with pass by value option)
BUSINESSPARTNERX - Document Partner - Change Indicators
Data type: BAPI_VBKA_VBPA2KOMXOptional: Yes
Call by Reference: No ( called with pass by value option)
TEXT - Document Texts
Data type: BAPI_VBKA_TLINEKOMOptional: Yes
Call by Reference: No ( called with pass by value option)
TEXTX - Document Texts - Change Indicators
Data type: BAPI_VBKA_TLINEKOMXOptional: Yes
Call by Reference: No ( called with pass by value option)
RETURN - Error Code
Data type: BAPIRET2Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BAPI_IFBUS1037SR_SAVEREPLICAM 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_sender | TYPE BAPI_SENDER, " | |||
| lt_controldata | TYPE STANDARD TABLE OF BAPI_VBKA_CONTROL, " | |||
| lt_generaldata | TYPE STANDARD TABLE OF BAPI_BUS1037_VBKAKOM_CR, " | |||
| lt_generaldatax | TYPE STANDARD TABLE OF BAPI_BUS1037_VBKAKOM_CRX, " | |||
| lt_businesspartner | TYPE STANDARD TABLE OF BAPI_VBKA_VBPA2KOM, " | |||
| lt_businesspartnerx | TYPE STANDARD TABLE OF BAPI_VBKA_VBPA2KOMX, " | |||
| lt_text | TYPE STANDARD TABLE OF BAPI_VBKA_TLINEKOM, " | |||
| lt_textx | TYPE STANDARD TABLE OF BAPI_VBKA_TLINEKOMX, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2. " |
|   CALL FUNCTION 'BAPI_IFBUS1037SR_SAVEREPLICAM' "BAPI Business Partner Sales Activity Receiver |
| EXPORTING | ||
| SENDER | = lv_sender | |
| TABLES | ||
| CONTROLDATA | = lt_controldata | |
| GENERALDATA | = lt_generaldata | |
| GENERALDATAX | = lt_generaldatax | |
| BUSINESSPARTNER | = lt_businesspartner | |
| BUSINESSPARTNERX | = lt_businesspartnerx | |
| TEXT | = lt_text | |
| TEXTX | = lt_textx | |
| RETURN | = lt_return | |
| . " BAPI_IFBUS1037SR_SAVEREPLICAM | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_IFBUS1037SR_SAVEREPLICAM
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.Search for further information about these or an SAP related objects