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
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
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).
| 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 . |
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 . |
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.
ISM_CB_SO_ORDER_DATA_MAP - ISM_CB_SO_ORDERS_TO_DELIV_GET - ISM_CB_SO_DELIV_RELEVANT_CHECK - ISM_CB_SO_DELIVERY_GETLIST - ISM_CB_SHIPORD_CANKEY_BUILD - IS-M/SD: Generate Data for Circulation Book (Periodical Sales & Dist.) ISM_CB_MSD_SALES_PROMOTION_GET - IS-M/SD: Specify Sales Promotion for an Order Item