ISM_SD_CHECK_SEQ_ADDITIONAL 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_SD_CHECK_SEQ_ADDITIONAL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JKSDDEMANDSEQUENCE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISM_SD_CHECK_SEQ_ADDITIONAL' "Select MVKE-Specific Data for Issue Sequence
EXPORTING
i_seq_tab = " rjksejptmg0_tab IS-M: Table Type for JPTMG0
* i_onsaledate_range_tab = " rjksd_onsaledate_range_tab Range Table for ISMONSALEDATE
* i_offsaledate_range_tab = " rjksd_offsaledate1_range_tab Range Table for RJKSD_OFFSALEDATE1_RANGE
* i_vmsta_range_tab = " rjksd_vmsta_range_tab IS-M: Range Type for Cross-Distribution Chain Status
* i_vkorg_range_tab = " rjksd_vkorg_range_tab IS-M: Range Table for VKORG
* i_vtweg_range_tab = " rjksd_vtweg_range_tab IS-M: Range Table for Distribution Channel
* i_mstae_range_tab = " rjksd_mstae_range_tab IS-M: Range Type for Cross-Plant Status
* i_mstav_range_tab = " rjksd_mstav_range_tab IS-M: Range Type for Cross-Distribution Chain Status
* i_mmsta_range_tab = " rjksd_mmsta_range_tab IS-M: Range Type for Plant-Specific Status
* i_podate_range_tab = " rjksd_purchasedate_range_tab IS-M: Range Table for PURCHASEDATE
* i_werks_range_tab = " rjksd_werks_range_tab Range Table for Plants
* iv_initshipdate_begin = " ismerstverdat
* iv_initshipdate_end = " ismerstverdat
IMPORTING
out_seq_tab = " rjksejptmg0_tab IS-M: Table Type for JPTMG0
out_issue_tab = " rjksd_product_issue_tab Table Type for RJKSD_PRODUCT_ISSUE
EXCEPTIONS
DATA_NOT_FOUND = 1 "
. " ISM_SD_CHECK_SEQ_ADDITIONAL
The ABAP code below is a full code listing to execute function module ISM_SD_CHECK_SEQ_ADDITIONAL 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_out_seq_tab | TYPE RJKSEJPTMG0_TAB , |
| ld_out_issue_tab | TYPE RJKSD_PRODUCT_ISSUE_TAB . |
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_out_seq_tab | TYPE RJKSEJPTMG0_TAB , |
| ld_i_seq_tab | TYPE RJKSEJPTMG0_TAB , |
| ld_out_issue_tab | TYPE RJKSD_PRODUCT_ISSUE_TAB , |
| ld_i_onsaledate_range_tab | TYPE RJKSD_ONSALEDATE_RANGE_TAB , |
| ld_i_offsaledate_range_tab | TYPE RJKSD_OFFSALEDATE1_RANGE_TAB , |
| ld_i_vmsta_range_tab | TYPE RJKSD_VMSTA_RANGE_TAB , |
| ld_i_vkorg_range_tab | TYPE RJKSD_VKORG_RANGE_TAB , |
| ld_i_vtweg_range_tab | TYPE RJKSD_VTWEG_RANGE_TAB , |
| ld_i_mstae_range_tab | TYPE RJKSD_MSTAE_RANGE_TAB , |
| ld_i_mstav_range_tab | TYPE RJKSD_MSTAV_RANGE_TAB , |
| ld_i_mmsta_range_tab | TYPE RJKSD_MMSTA_RANGE_TAB , |
| ld_i_podate_range_tab | TYPE RJKSD_PURCHASEDATE_RANGE_TAB , |
| ld_i_werks_range_tab | TYPE RJKSD_WERKS_RANGE_TAB , |
| ld_iv_initshipdate_begin | TYPE ISMERSTVERDAT , |
| ld_iv_initshipdate_end | TYPE ISMERSTVERDAT . |
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_SD_CHECK_SEQ_ADDITIONAL or its description.