SAP CACS_SD_COND_READ_EXT_STDCTR Function Module for read also enhancements to new standard contract
CACS_SD_COND_READ_EXT_STDCTR is a standard cacs sd cond read ext stdctr SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for read also enhancements to new standard contract 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 sd cond read ext stdctr FM, simply by entering the name CACS_SD_COND_READ_EXT_STDCTR into the relevant SAP transaction such as SE37 or SE38.
Function Group: CACS_SD_COND_EXTENTION
Program Name: SAPLCACS_SD_COND_EXTENTION
Main Program: SAPLCACS_SD_COND_EXTENTION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CACS_SD_COND_READ_EXT_STDCTR 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_SD_COND_READ_EXT_STDCTR'"read also enhancements to new standard contract.
EXPORTING
ID_KOTAB = "Condition Table
ID_KVEWE = "Usage of the Condition Table
ID_KAPPL = "Application
ID_KSCHL = "Condition Type
ID_TECH_DATE = "Technically Valid from
ID_BUSI_DATE = "Effective From
ID_CTRTST_ID = "Number of Standard Commission Contract
ID_STCAGR_OVERLOADED = "
ID_APPL = "Identification of Application
TABLES
T_KOND_TAB = "
T_CODING_TAB_STD = "
IMPORTING Parameters details for CACS_SD_COND_READ_EXT_STDCTR
ID_KOTAB - Condition Table
Data type: KOTABOptional: No
Call by Reference: Yes
ID_KVEWE - Usage of the Condition Table
Data type: KVEWEOptional: No
Call by Reference: Yes
ID_KAPPL - Application
Data type: KAPPLOptional: No
Call by Reference: Yes
ID_KSCHL - Condition Type
Data type: KSCHAOptional: No
Call by Reference: Yes
ID_TECH_DATE - Technically Valid from
Data type: CACS_TECHTIME_BOptional: No
Call by Reference: Yes
ID_BUSI_DATE - Effective From
Data type: CACS_BUSITIME_BOptional: No
Call by Reference: Yes
ID_CTRTST_ID - Number of Standard Commission Contract
Data type: CACS_CTRTST_IDOptional: No
Call by Reference: Yes
ID_STCAGR_OVERLOADED -
Data type: CACS_CTRTST_IDOptional: No
Call by Reference: Yes
ID_APPL - Identification of Application
Data type: CACSAPPLOptional: No
Call by Reference: Yes
TABLES Parameters details for CACS_SD_COND_READ_EXT_STDCTR
T_KOND_TAB -
Data type:Optional: No
Call by Reference: Yes
T_CODING_TAB_STD -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CACS_SD_COND_READ_EXT_STDCTR 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_id_kotab | TYPE KOTAB, " | |||
| lt_t_kond_tab | TYPE STANDARD TABLE OF KOTAB, " | |||
| lv_id_kvewe | TYPE KVEWE, " | |||
| lt_t_coding_tab_std | TYPE STANDARD TABLE OF KVEWE, " | |||
| lv_id_kappl | TYPE KAPPL, " | |||
| lv_id_kschl | TYPE KSCHA, " | |||
| lv_id_tech_date | TYPE CACS_TECHTIME_B, " | |||
| lv_id_busi_date | TYPE CACS_BUSITIME_B, " | |||
| lv_id_ctrtst_id | TYPE CACS_CTRTST_ID, " | |||
| lv_id_stcagr_overloaded | TYPE CACS_CTRTST_ID, " | |||
| lv_id_appl | TYPE CACSAPPL. " |
|   CALL FUNCTION 'CACS_SD_COND_READ_EXT_STDCTR' "read also enhancements to new standard contract |
| EXPORTING | ||
| ID_KOTAB | = lv_id_kotab | |
| ID_KVEWE | = lv_id_kvewe | |
| ID_KAPPL | = lv_id_kappl | |
| ID_KSCHL | = lv_id_kschl | |
| ID_TECH_DATE | = lv_id_tech_date | |
| ID_BUSI_DATE | = lv_id_busi_date | |
| ID_CTRTST_ID | = lv_id_ctrtst_id | |
| ID_STCAGR_OVERLOADED | = lv_id_stcagr_overloaded | |
| ID_APPL | = lv_id_appl | |
| TABLES | ||
| T_KOND_TAB | = lt_t_kond_tab | |
| T_CODING_TAB_STD | = lt_t_coding_tab_std | |
| . " CACS_SD_COND_READ_EXT_STDCTR | ||
ABAP code using 7.40 inline data declarations to call FM CACS_SD_COND_READ_EXT_STDCTR
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