SAP Function Modules

CNV_CMIS_A_GET_CLAS_OBJECTS SAP Function module







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
Normal function module settings


Pattern for FM CNV_CMIS_A_GET_CLAS_OBJECTS - CNV CMIS A GET CLAS OBJECTS





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

ABAP code example for Function Module 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).

DATA:
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 .


"populate fields of struture and append to itab
append wa_xt_sel to it_xt_sel.

"populate fields of struture and append to itab
append wa_xt_clas to it_xt_clas.

"populate fields of struture and append to itab
append wa_xt_comp to it_xt_comp.

"populate fields of struture and append to itab
append wa_xt_clfr to it_xt_clfr.

"populate fields of struture and append to itab
append wa_xt_cosu to it_xt_cosu.

"populate fields of struture and append to itab
append wa_xt_core to it_xt_core.

"populate fields of struture and append to itab
append wa_xt_clco to it_xt_clco.

"populate fields of struture and append to itab
append wa_it_clas_sel to it_it_clas_sel.

"populate fields of struture and append to itab
append wa_xt_cinc to it_xt_cinc. . CALL FUNCTION 'CNV_CMIS_A_GET_CLAS_OBJECTS' TABLES xt_sel = it_xt_sel xt_clas = it_xt_clas xt_comp = it_xt_comp xt_clfr = it_xt_clfr xt_cosu = it_xt_cosu xt_core = it_xt_core xt_clco = it_xt_clco it_clas_sel = it_it_clas_sel xt_cinc = it_xt_cinc . " CNV_CMIS_A_GET_CLAS_OBJECTS
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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.


"populate fields of struture and append to itab
append wa_xt_sel to it_xt_sel.

"populate fields of struture and append to itab
append wa_xt_clas to it_xt_clas.

"populate fields of struture and append to itab
append wa_xt_comp to it_xt_comp.

"populate fields of struture and append to itab
append wa_xt_clfr to it_xt_clfr.

"populate fields of struture and append to itab
append wa_xt_cosu to it_xt_cosu.

"populate fields of struture and append to itab
append wa_xt_core to it_xt_core.

"populate fields of struture and append to itab
append wa_xt_clco to it_xt_clco.

"populate fields of struture and append to itab
append wa_it_clas_sel to it_it_clas_sel.

"populate fields of struture and append to itab
append wa_xt_cinc to it_xt_cinc.

Contribute (Add Comments)

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.