SAP CACS_SCTR_HDR_EDIT_BO_WD_RFC Function Module for Standard Contract: Change Header Data, Before Screen Display
CACS_SCTR_HDR_EDIT_BO_WD_RFC is a standard cacs sctr hdr edit bo wd rfc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Standard Contract: Change Header Data, Before Screen Display 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 cacs sctr hdr edit bo wd rfc FM, simply by entering the name CACS_SCTR_HDR_EDIT_BO_WD_RFC into the relevant SAP transaction such as SE37 or SE38.
Function Group: CACS_SCTR_HDR_WD_RFC
Program Name: SAPLCACS_SCTR_HDR_WD_RFC
Main Program: SAPLCACS_SCTR_HDR_WD_RFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CACS_SCTR_HDR_EDIT_BO_WD_RFC 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 'CACS_SCTR_HDR_EDIT_BO_WD_RFC'"Standard Contract: Change Header Data, Before Screen Display.
IMPORTING
EV_CTRTST_ID = "Nummer des Standard-Provisionsvertrags
EV_BUSIBEGIN_DATE = "Beginndatum der fachlichen Gültigkeit
EV_BUSIEND_DATE = "Endedatum der fachlichen Gültigkeit
EV_DESCR_SHORT = "Kurzbezeichnung des Standard-Provisionsvertrags
EV_DESCR_LONG = "Langbezeichnung des Standard-Provisionsvertrags
EV_PROCESS_FLG = "Ausschlußkennzeichen Folgeprozesse
ET_MSG = "Returntabelle
EXPORTING Parameters details for CACS_SCTR_HDR_EDIT_BO_WD_RFC
EV_CTRTST_ID - Nummer des Standard-Provisionsvertrags
Data type: CACS_CTRTST_IDOptional: No
Call by Reference: No ( called with pass by value option)
EV_BUSIBEGIN_DATE - Beginndatum der fachlichen Gültigkeit
Data type: CACS_BUSIBEGIN_DATEOptional: No
Call by Reference: No ( called with pass by value option)
EV_BUSIEND_DATE - Endedatum der fachlichen Gültigkeit
Data type: CACS_BUSIEND_DATEOptional: No
Call by Reference: No ( called with pass by value option)
EV_DESCR_SHORT - Kurzbezeichnung des Standard-Provisionsvertrags
Data type: CACS_DESC_CTRTST_SHOptional: No
Call by Reference: No ( called with pass by value option)
EV_DESCR_LONG - Langbezeichnung des Standard-Provisionsvertrags
Data type: CACS_DESC_CTRTST_LGOptional: No
Call by Reference: No ( called with pass by value option)
EV_PROCESS_FLG - Ausschlußkennzeichen Folgeprozesse
Data type: CACS_PROCESSOptional: No
Call by Reference: No ( called with pass by value option)
ET_MSG - Returntabelle
Data type: BAPIRET2_TOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CACS_SCTR_HDR_EDIT_BO_WD_RFC 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_ev_ctrtst_id | TYPE CACS_CTRTST_ID, " | |||
| lv_ev_busibegin_date | TYPE CACS_BUSIBEGIN_DATE, " | |||
| lv_ev_busiend_date | TYPE CACS_BUSIEND_DATE, " | |||
| lv_ev_descr_short | TYPE CACS_DESC_CTRTST_SH, " | |||
| lv_ev_descr_long | TYPE CACS_DESC_CTRTST_LG, " | |||
| lv_ev_process_flg | TYPE CACS_PROCESS, " | |||
| lv_et_msg | TYPE BAPIRET2_T. " |
|   CALL FUNCTION 'CACS_SCTR_HDR_EDIT_BO_WD_RFC' "Standard Contract: Change Header Data, Before Screen Display |
| IMPORTING | ||
| EV_CTRTST_ID | = lv_ev_ctrtst_id | |
| EV_BUSIBEGIN_DATE | = lv_ev_busibegin_date | |
| EV_BUSIEND_DATE | = lv_ev_busiend_date | |
| EV_DESCR_SHORT | = lv_ev_descr_short | |
| EV_DESCR_LONG | = lv_ev_descr_long | |
| EV_PROCESS_FLG | = lv_ev_process_flg | |
| ET_MSG | = lv_et_msg | |
| . " CACS_SCTR_HDR_EDIT_BO_WD_RFC | ||
ABAP code using 7.40 inline data declarations to call FM CACS_SCTR_HDR_EDIT_BO_WD_RFC
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