SAP ISM_ISSUE_SEQUENCE_APPEND Function Module for IS-M: Append Media Issue to Issue Sequence
ISM_ISSUE_SEQUENCE_APPEND is a standard ism issue sequence append SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M: Append Media Issue to Issue Sequence processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for ism issue sequence append FM, simply by entering the name ISM_ISSUE_SEQUENCE_APPEND into the relevant SAP transaction such as SE37 or SE38.
Function Group: JPBAPIDELSEQ
Program Name: SAPLJPBAPIDELSEQ
Main Program: SAPLJPBAPIDELSEQ
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_ISSUE_SEQUENCE_APPEND pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ISM_ISSUE_SEQUENCE_APPEND'"IS-M: Append Media Issue to Issue Sequence.
EXPORTING
* IN_ISSUE = "
* XCHRON_PROCESSES = "IS-M: Issue Sequence with Chronological Subsequent Processes
IN_XSET_END_OF_HORIZON = "Checkbox Field
* IN_PUBLICATION_DATE = "
* IN_COPYNUMBER = "Copy Number of Media Issue
IN_PRODUCT = "
* IN_TEMPLATE_ISSUE = "
* IN_TEMPLATE_VARTYPE = "
* IN_XTEST = 'X' "Indicator: Test Run
* IN_XCREATE_ISSUE = 'X' "
* IN_XACTIVATE_PLAN = "
IMPORTING
OUT_ISSUE = "
OUT_RETURN = "Error Message
IMPORTING Parameters details for ISM_ISSUE_SEQUENCE_APPEND
IN_ISSUE -
Data type: MARA-MATNROptional: Yes
Call by Reference: No ( called with pass by value option)
XCHRON_PROCESSES - IS-M: Issue Sequence with Chronological Subsequent Processes
Data type: XCHRONOLOGICALPROCESSESOptional: Yes
Call by Reference: Yes
IN_XSET_END_OF_HORIZON - Checkbox Field
Data type: XFELDOptional: No
Call by Reference: Yes
IN_PUBLICATION_DATE -
Data type: MARA-ISMPUBLDATEOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_COPYNUMBER - Copy Number of Media Issue
Data type: MARA-ISMCOPYNROptional: Yes
Call by Reference: No ( called with pass by value option)
IN_PRODUCT -
Data type: MARA-ISMREFMDPRODOptional: No
Call by Reference: No ( called with pass by value option)
IN_TEMPLATE_ISSUE -
Data type: RJP_MG3-ISMMATNR_PATTERNOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_TEMPLATE_VARTYPE -
Data type: RJP_MG3-ISMISSUETYPESTOptional: Yes
Call by Reference: No ( called with pass by value option)
IN_XTEST - Indicator: Test Run
Data type: JPSD_XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IN_XCREATE_ISSUE -
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IN_XACTIVATE_PLAN -
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISM_ISSUE_SEQUENCE_APPEND
OUT_ISSUE -
Data type: MARA-MATNROptional: No
Call by Reference: No ( called with pass by value option)
OUT_RETURN - Error Message
Data type: JYMSG_T_MSGOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISM_ISSUE_SEQUENCE_APPEND Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_in_issue | TYPE MARA-MATNR, " | |||
| lv_out_issue | TYPE MARA-MATNR, " | |||
| lv_xchron_processes | TYPE XCHRONOLOGICALPROCESSES, " | |||
| lv_in_xset_end_of_horizon | TYPE XFELD, " | |||
| lv_out_return | TYPE JYMSG_T_MSG, " | |||
| lv_in_publication_date | TYPE MARA-ISMPUBLDATE, " | |||
| lv_in_copynumber | TYPE MARA-ISMCOPYNR, " | |||
| lv_in_product | TYPE MARA-ISMREFMDPROD, " | |||
| lv_in_template_issue | TYPE RJP_MG3-ISMMATNR_PATTERN, " | |||
| lv_in_template_vartype | TYPE RJP_MG3-ISMISSUETYPEST, " | |||
| lv_in_xtest | TYPE JPSD_XFELD, " 'X' | |||
| lv_in_xcreate_issue | TYPE XFELD, " 'X' | |||
| lv_in_xactivate_plan | TYPE XFELD. " |
|   CALL FUNCTION 'ISM_ISSUE_SEQUENCE_APPEND' "IS-M: Append Media Issue to Issue Sequence |
| EXPORTING | ||
| IN_ISSUE | = lv_in_issue | |
| XCHRON_PROCESSES | = lv_xchron_processes | |
| IN_XSET_END_OF_HORIZON | = lv_in_xset_end_of_horizon | |
| IN_PUBLICATION_DATE | = lv_in_publication_date | |
| IN_COPYNUMBER | = lv_in_copynumber | |
| IN_PRODUCT | = lv_in_product | |
| IN_TEMPLATE_ISSUE | = lv_in_template_issue | |
| IN_TEMPLATE_VARTYPE | = lv_in_template_vartype | |
| IN_XTEST | = lv_in_xtest | |
| IN_XCREATE_ISSUE | = lv_in_xcreate_issue | |
| IN_XACTIVATE_PLAN | = lv_in_xactivate_plan | |
| IMPORTING | ||
| OUT_ISSUE | = lv_out_issue | |
| OUT_RETURN | = lv_out_return | |
| . " ISM_ISSUE_SEQUENCE_APPEND | ||
ABAP code using 7.40 inline data declarations to call FM ISM_ISSUE_SEQUENCE_APPEND
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single MATNR FROM MARA INTO @DATA(ld_in_issue). | ||||
| "SELECT single MATNR FROM MARA INTO @DATA(ld_out_issue). | ||||
| "SELECT single ISMPUBLDATE FROM MARA INTO @DATA(ld_in_publication_date). | ||||
| "SELECT single ISMCOPYNR FROM MARA INTO @DATA(ld_in_copynumber). | ||||
| "SELECT single ISMREFMDPROD FROM MARA INTO @DATA(ld_in_product). | ||||
| "SELECT single ISMMATNR_PATTERN FROM RJP_MG3 INTO @DATA(ld_in_template_issue). | ||||
| "SELECT single ISMISSUETYPEST FROM RJP_MG3 INTO @DATA(ld_in_template_vartype). | ||||
| DATA(ld_in_xtest) | = 'X'. | |||
| DATA(ld_in_xcreate_issue) | = 'X'. | |||
Search for further information about these or an SAP related objects