ISM_SE_SAMPLE_ADD_ISSUE 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_SE_SAMPLE_ADD_ISSUE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JKSEORDER13
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISM_SE_SAMPLE_ADD_ISSUE' "
EXPORTING
in_nip = " cl_ism_se_nip
in_product = " vbap-matnr
in_next_issue_tab = " rjkseordergennextissue_tab
in_next_issue_failed = " rjkseordergenissue_failed_tab
in_add_issue_tab = " rjkseordergenadd_tab
in_vbeln = " rjksecontract-vbeln
in_posnr = " rjksecontract-posnr
in_testrun = " char01
in_no_success = " char01
in_message = " cl_ism_sd_message
IMPORTING
out_issue = " rjkseordergenadd-issue
out_quantity = " rjkseordergenadd-quantity
out_unit = " rjkseordergenadd-unit
EXCEPTIONS
NO_ISSUE_FOUND = 1 "
. " ISM_SE_SAMPLE_ADD_ISSUE
The ABAP code below is a full code listing to execute function module ISM_SE_SAMPLE_ADD_ISSUE 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_issue | TYPE RJKSEORDERGENADD-ISSUE , |
| ld_out_quantity | TYPE RJKSEORDERGENADD-QUANTITY , |
| ld_out_unit | TYPE RJKSEORDERGENADD-UNIT . |
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_issue | TYPE RJKSEORDERGENADD-ISSUE , |
| ld_in_nip | TYPE CL_ISM_SE_NIP , |
| ld_out_quantity | TYPE RJKSEORDERGENADD-QUANTITY , |
| ld_in_product | TYPE VBAP-MATNR , |
| ld_out_unit | TYPE RJKSEORDERGENADD-UNIT , |
| ld_in_next_issue_tab | TYPE RJKSEORDERGENNEXTISSUE_TAB , |
| ld_in_next_issue_failed | TYPE RJKSEORDERGENISSUE_FAILED_TAB , |
| ld_in_add_issue_tab | TYPE RJKSEORDERGENADD_TAB , |
| ld_in_vbeln | TYPE RJKSECONTRACT-VBELN , |
| ld_in_posnr | TYPE RJKSECONTRACT-POSNR , |
| ld_in_testrun | TYPE CHAR01 , |
| ld_in_no_success | TYPE CHAR01 , |
| ld_in_message | TYPE CL_ISM_SD_MESSAGE . |
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_SE_SAMPLE_ADD_ISSUE or its description.
ISM_SE_SAMPLE_ADD_ISSUE - ISM_SE_RFC_PACKET_DELETE_ORDER - IS-M: Delete Orders via RFC ISM_SE_RFC_PACKET_CREATE_ORDER - IS-M: Create Orders via RFC ISM_SE_RFC_GET_ORDER_DATA - Order Data Framework ISM_SE_RFC_GENORDER_RESTART - ISM_SE_RFC_CREATE_DELIVERYPLAN - IS-M: Adjust Delivery Schedule Record in Contract via RFC