SAP CCMCS_SET_STRUCT_VALUES Function Module for Custom search method for BP
CCMCS_SET_STRUCT_VALUES is a standard ccmcs set struct values SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Custom search method for BP 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 ccmcs set struct values FM, simply by entering the name CCMCS_SET_STRUCT_VALUES into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_CIC_BP_SUB
Program Name: SAPLCRM_CIC_BP_SUB
Main Program: SAPLCRM_CIC_BP_SUB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CCMCS_SET_STRUCT_VALUES 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 'CCMCS_SET_STRUCT_VALUES'"Custom search method for BP.
EXPORTING
* SEARCHSTRUCT = "The BP1 structure
* CHECK_CHANGES = "boolean variable (X=true, -=false, space=unknown)
* DO_INIT = ' ' "Logical Variable
* CONSIDER_INIT_VALUES = ' ' "Consider initial values
IMPORTING
RET_STRUCTURE = "Search and Display Component - All Fields
TABLES
* DATA_TAB = "Query string for WWW server
EXCEPTIONS
NO_INPUT = 1 CANCEL = 2
IMPORTING Parameters details for CCMCS_SET_STRUCT_VALUES
SEARCHSTRUCT - The BP1 structure
Data type: CCMSEARCH_STRUCTOptional: Yes
Call by Reference: No ( called with pass by value option)
CHECK_CHANGES - boolean variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
DO_INIT - Logical Variable
Data type: CRMT_BOOLEANDefault: SPACE
Optional: Yes
Call by Reference: Yes
CONSIDER_INIT_VALUES - Consider initial values
Data type: CRMT_BOOLEANDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for CCMCS_SET_STRUCT_VALUES
RET_STRUCTURE - Search and Display Component - All Fields
Data type: CCMSEARCH_STRUCTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CCMCS_SET_STRUCT_VALUES
DATA_TAB - Query string for WWW server
Data type: CNHT_QUERY_TABLEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_INPUT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CANCEL -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CCMCS_SET_STRUCT_VALUES 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_data_tab | TYPE STANDARD TABLE OF CNHT_QUERY_TABLE, " | |||
| lv_no_input | TYPE CNHT_QUERY_TABLE, " | |||
| lv_searchstruct | TYPE CCMSEARCH_STRUCT, " | |||
| lv_ret_structure | TYPE CCMSEARCH_STRUCT, " | |||
| lv_cancel | TYPE CCMSEARCH_STRUCT, " | |||
| lv_check_changes | TYPE BOOLEAN, " | |||
| lv_do_init | TYPE CRMT_BOOLEAN, " SPACE | |||
| lv_consider_init_values | TYPE CRMT_BOOLEAN. " SPACE |
|   CALL FUNCTION 'CCMCS_SET_STRUCT_VALUES' "Custom search method for BP |
| EXPORTING | ||
| SEARCHSTRUCT | = lv_searchstruct | |
| CHECK_CHANGES | = lv_check_changes | |
| DO_INIT | = lv_do_init | |
| CONSIDER_INIT_VALUES | = lv_consider_init_values | |
| IMPORTING | ||
| RET_STRUCTURE | = lv_ret_structure | |
| TABLES | ||
| DATA_TAB | = lt_data_tab | |
| EXCEPTIONS | ||
| NO_INPUT = 1 | ||
| CANCEL = 2 | ||
| . " CCMCS_SET_STRUCT_VALUES | ||
ABAP code using 7.40 inline data declarations to call FM CCMCS_SET_STRUCT_VALUES
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_do_init) | = ' '. | |||
| DATA(ld_consider_init_values) | = ' '. | |||
Search for further information about these or an SAP related objects