SAP Function Modules

ISM_CB_SO_ORDER_DATA_MAP SAP Function module







ISM_CB_SO_ORDER_DATA_MAP 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 ISM_CB_SO_ORDER_DATA_MAP into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: JICB_SHIPPING_ORDER
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISM_CB_SO_ORDER_DATA_MAP - ISM CB SO ORDER DATA MAP





CALL FUNCTION 'ISM_CB_SO_ORDER_DATA_MAP' "
  EXPORTING
    iv_aufmeldart =             " aufmeldart
    is_jvtlfng =                " jvtlfng
    iv_ordnbr =                 " shipordnbr
    iv_posnbr =                 " shipordposnbr
  IMPORTING
    es_jitcircbook =            " jitcircbook
    es_jcbkankey =              " jcbkankey
    ev_xno_auditcat_found =     " xfeld
    ev_xerror_postal_data =     " xfeld
    ev_xerror_address_data =    " xfeld
    ev_xerror_abc_zone =        " xfeld
    ev_xno_county_key =         " xfeld
    .  "  ISM_CB_SO_ORDER_DATA_MAP

ABAP code example for Function Module ISM_CB_SO_ORDER_DATA_MAP





The ABAP code below is a full code listing to execute function module ISM_CB_SO_ORDER_DATA_MAP 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:
ld_es_jitcircbook  TYPE JITCIRCBOOK ,
ld_es_jcbkankey  TYPE JCBKANKEY ,
ld_ev_xno_auditcat_found  TYPE XFELD ,
ld_ev_xerror_postal_data  TYPE XFELD ,
ld_ev_xerror_address_data  TYPE XFELD ,
ld_ev_xerror_abc_zone  TYPE XFELD ,
ld_ev_xno_county_key  TYPE XFELD .

DATA(ld_iv_aufmeldart) = 'Check type of data required'.
DATA(ld_is_jvtlfng) = 'Check type of data required'.
DATA(ld_iv_ordnbr) = 'Check type of data required'.
DATA(ld_iv_posnbr) = 'Check type of data required'. . CALL FUNCTION 'ISM_CB_SO_ORDER_DATA_MAP' EXPORTING iv_aufmeldart = ld_iv_aufmeldart is_jvtlfng = ld_is_jvtlfng iv_ordnbr = ld_iv_ordnbr iv_posnbr = ld_iv_posnbr IMPORTING es_jitcircbook = ld_es_jitcircbook es_jcbkankey = ld_es_jcbkankey ev_xno_auditcat_found = ld_ev_xno_auditcat_found ev_xerror_postal_data = ld_ev_xerror_postal_data ev_xerror_address_data = ld_ev_xerror_address_data ev_xerror_abc_zone = ld_ev_xerror_abc_zone ev_xno_county_key = ld_ev_xno_county_key . " ISM_CB_SO_ORDER_DATA_MAP
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:
ld_es_jitcircbook  TYPE JITCIRCBOOK ,
ld_iv_aufmeldart  TYPE AUFMELDART ,
ld_es_jcbkankey  TYPE JCBKANKEY ,
ld_is_jvtlfng  TYPE JVTLFNG ,
ld_ev_xno_auditcat_found  TYPE XFELD ,
ld_iv_ordnbr  TYPE SHIPORDNBR ,
ld_ev_xerror_postal_data  TYPE XFELD ,
ld_iv_posnbr  TYPE SHIPORDPOSNBR ,
ld_ev_xerror_address_data  TYPE XFELD ,
ld_ev_xerror_abc_zone  TYPE XFELD ,
ld_ev_xno_county_key  TYPE XFELD .

ld_iv_aufmeldart = 'Check type of data required'.
ld_is_jvtlfng = 'Check type of data required'.
ld_iv_ordnbr = 'Check type of data required'.
ld_iv_posnbr = 'Check type of data required'.

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 ISM_CB_SO_ORDER_DATA_MAP or its description.