SAP ISM_SD_SQP_FOR_ISSUE_CALL Function Module for Access JKSDCQP01 from JKSD03N
ISM_SD_SQP_FOR_ISSUE_CALL is a standard ism sd sqp for issue call SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Access JKSDCQP01 from JKSD03N 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 sd sqp for issue call FM, simply by entering the name ISM_SD_SQP_FOR_ISSUE_CALL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JKSDSQP_FOR_CUST_MAINTAIN
Program Name: SAPLJKSDSQP_FOR_CUST_MAINTAIN
Main Program: SAPLJKSDSQP_FOR_CUST_MAINTAIN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_SD_SQP_FOR_ISSUE_CALL 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_SD_SQP_FOR_ISSUE_CALL'"Access JKSDCQP01 from JKSD03N.
EXPORTING
* I_BP = "IS-M: Ship-to Party
* I_ROLE = "Partner role
* I_VBELN = "Sales and Distribution Document Number
* I_POSNR = "Item Number of Sales Document
* I_ISSUE = "Media Issue
* I_PRODUCT = "Media Product
* I_VIEW_ID = "Quantity Planning View
* I_MODE = '01' "IS-M: Mode
* I_PLANORG = "Planning Organization for Sales Planning
EXCEPTIONS
VIEW_NOT_ALLOWED = 1
IMPORTING Parameters details for ISM_SD_SQP_FOR_ISSUE_CALL
I_BP - IS-M: Ship-to Party
Data type: KUNNROptional: Yes
Call by Reference: Yes
I_ROLE - Partner role
Data type: PARVWOptional: Yes
Call by Reference: Yes
I_VBELN - Sales and Distribution Document Number
Data type: VBELNOptional: Yes
Call by Reference: Yes
I_POSNR - Item Number of Sales Document
Data type: POSNROptional: Yes
Call by Reference: Yes
I_ISSUE - Media Issue
Data type: ISMMATNR_ISSUEOptional: Yes
Call by Reference: Yes
I_PRODUCT - Media Product
Data type: ISMMATNR_PRODUCTOptional: Yes
Call by Reference: Yes
I_VIEW_ID - Quantity Planning View
Data type: JVIEWIDOptional: Yes
Call by Reference: Yes
I_MODE - IS-M: Mode
Data type: ISM_MODEDefault: '01'
Optional: Yes
Call by Reference: Yes
I_PLANORG - Planning Organization for Sales Planning
Data type: JPLANORG_SQPOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
VIEW_NOT_ALLOWED - View does not exist
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_SD_SQP_FOR_ISSUE_CALL 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_i_bp | TYPE KUNNR, " | |||
| lv_view_not_allowed | TYPE KUNNR, " | |||
| lv_i_role | TYPE PARVW, " | |||
| lv_i_vbeln | TYPE VBELN, " | |||
| lv_i_posnr | TYPE POSNR, " | |||
| lv_i_issue | TYPE ISMMATNR_ISSUE, " | |||
| lv_i_product | TYPE ISMMATNR_PRODUCT, " | |||
| lv_i_view_id | TYPE JVIEWID, " | |||
| lv_i_mode | TYPE ISM_MODE, " '01' | |||
| lv_i_planorg | TYPE JPLANORG_SQP. " |
|   CALL FUNCTION 'ISM_SD_SQP_FOR_ISSUE_CALL' "Access JKSDCQP01 from JKSD03N |
| EXPORTING | ||
| I_BP | = lv_i_bp | |
| I_ROLE | = lv_i_role | |
| I_VBELN | = lv_i_vbeln | |
| I_POSNR | = lv_i_posnr | |
| I_ISSUE | = lv_i_issue | |
| I_PRODUCT | = lv_i_product | |
| I_VIEW_ID | = lv_i_view_id | |
| I_MODE | = lv_i_mode | |
| I_PLANORG | = lv_i_planorg | |
| EXCEPTIONS | ||
| VIEW_NOT_ALLOWED = 1 | ||
| . " ISM_SD_SQP_FOR_ISSUE_CALL | ||
ABAP code using 7.40 inline data declarations to call FM ISM_SD_SQP_FOR_ISSUE_CALL
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.| DATA(ld_i_mode) | = '01'. | |||
Search for further information about these or an SAP related objects