CNV_CMIS_A_GET_CLAS_OBJECTS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CNV_CMIS_A_GET_CLAS_OBJECTS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CNV_CMIS_10_SUPPORT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CNV_CMIS_A_GET_CLAS_OBJECTS' "
TABLES
xt_sel = " cnvcmis_a_10_sel
xt_clas = " cnvcmis_a_1_clas
xt_comp = " cnvcmis_a_1_comp
xt_clfr = " cnvcmis_a_1_clfr
xt_cosu = " cnvcmis_a_1_cosu
xt_core = " cnvcmis_a_1_core
xt_clco = " cnvcmis_a_1_clco
it_clas_sel = " cnvcmis_a_10_sel
xt_cinc = " cnvcmis_a_1_cinc
. " CNV_CMIS_A_GET_CLAS_OBJECTS
The ABAP code below is a full code listing to execute function module CNV_CMIS_A_GET_CLAS_OBJECTS including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_xt_sel | TYPE STANDARD TABLE OF CNVCMIS_A_10_SEL,"TABLES PARAM |
| wa_xt_sel | LIKE LINE OF it_xt_sel , |
| it_xt_clas | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLAS,"TABLES PARAM |
| wa_xt_clas | LIKE LINE OF it_xt_clas , |
| it_xt_comp | TYPE STANDARD TABLE OF CNVCMIS_A_1_COMP,"TABLES PARAM |
| wa_xt_comp | LIKE LINE OF it_xt_comp , |
| it_xt_clfr | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLFR,"TABLES PARAM |
| wa_xt_clfr | LIKE LINE OF it_xt_clfr , |
| it_xt_cosu | TYPE STANDARD TABLE OF CNVCMIS_A_1_COSU,"TABLES PARAM |
| wa_xt_cosu | LIKE LINE OF it_xt_cosu , |
| it_xt_core | TYPE STANDARD TABLE OF CNVCMIS_A_1_CORE,"TABLES PARAM |
| wa_xt_core | LIKE LINE OF it_xt_core , |
| it_xt_clco | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLCO,"TABLES PARAM |
| wa_xt_clco | LIKE LINE OF it_xt_clco , |
| it_it_clas_sel | TYPE STANDARD TABLE OF CNVCMIS_A_10_SEL,"TABLES PARAM |
| wa_it_clas_sel | LIKE LINE OF it_it_clas_sel , |
| it_xt_cinc | TYPE STANDARD TABLE OF CNVCMIS_A_1_CINC,"TABLES PARAM |
| wa_xt_cinc | LIKE LINE OF it_xt_cinc . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| it_xt_sel | TYPE STANDARD TABLE OF CNVCMIS_A_10_SEL , |
| wa_xt_sel | LIKE LINE OF it_xt_sel, |
| it_xt_clas | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLAS , |
| wa_xt_clas | LIKE LINE OF it_xt_clas, |
| it_xt_comp | TYPE STANDARD TABLE OF CNVCMIS_A_1_COMP , |
| wa_xt_comp | LIKE LINE OF it_xt_comp, |
| it_xt_clfr | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLFR , |
| wa_xt_clfr | LIKE LINE OF it_xt_clfr, |
| it_xt_cosu | TYPE STANDARD TABLE OF CNVCMIS_A_1_COSU , |
| wa_xt_cosu | LIKE LINE OF it_xt_cosu, |
| it_xt_core | TYPE STANDARD TABLE OF CNVCMIS_A_1_CORE , |
| wa_xt_core | LIKE LINE OF it_xt_core, |
| it_xt_clco | TYPE STANDARD TABLE OF CNVCMIS_A_1_CLCO , |
| wa_xt_clco | LIKE LINE OF it_xt_clco, |
| it_it_clas_sel | TYPE STANDARD TABLE OF CNVCMIS_A_10_SEL , |
| wa_it_clas_sel | LIKE LINE OF it_it_clas_sel, |
| it_xt_cinc | TYPE STANDARD TABLE OF CNVCMIS_A_1_CINC , |
| wa_xt_cinc | LIKE LINE OF it_xt_cinc. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CNV_CMIS_A_GET_CLAS_OBJECTS or its description.
CNV_CMIS_A_GET_CLAS_OBJECTS - CNV_CMIS_A_GET_BADI_OBJECTS - CNV_CMIS_A_COMPARE_STRINFO - CMIS : Structure Overview Comp for new Anal type objs CNV_CMIS_A_COMPARE - rfc function to rtansfer analysis data to central system CNV_CMIS_A_COLLECT - RFC FUNCTION MODULE TO COLLECT DATA CNV_CMIS_A_CHK_NOT_COMPARABLE -