SAP ISM_DELIVERY_ASSIGNED_ADMIX Function Module for









ISM_DELIVERY_ASSIGNED_ADMIX is a standard ism delivery assigned admix SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 delivery assigned admix FM, simply by entering the name ISM_DELIVERY_ASSIGNED_ADMIX into the relevant SAP transaction such as SE37 or SE38.

Function Group: JVSDSPLIT01
Program Name: SAPLJVSDSPLIT01
Main Program: SAPLJVSDSPLIT01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISM_DELIVERY_ASSIGNED_ADMIX 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_DELIVERY_ASSIGNED_ADMIX'"
EXPORTING
* IN_SHIPTOPARTY = "
* IN_SOLDTOPARTY = "
* IN_DOCUMENT = "
* IN_ITEM = "
IN_MEDIAISSUE = "

IMPORTING
OUT_ADMIX_TAB = "

EXCEPTIONS
NO_ADMIX_ASSIGNMENT = 1 NO_CONTRACT_FOUND = 2
.



IMPORTING Parameters details for ISM_DELIVERY_ASSIGNED_ADMIX

IN_SHIPTOPARTY -

Data type: VBPA-KUNNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_SOLDTOPARTY -

Data type: VBPA-KUNNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_DOCUMENT -

Data type: VBAP-VBELN
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_ITEM -

Data type: VBAP-POSNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IN_MEDIAISSUE -

Data type: VBAP-MATNR
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISM_DELIVERY_ASSIGNED_ADMIX

OUT_ADMIX_TAB -

Data type: RJVSDADMIXTAB
Optional: No
Call by Reference: Yes

EXCEPTIONS details

NO_ADMIX_ASSIGNMENT -

Data type:
Optional: No
Call by Reference: Yes

NO_CONTRACT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISM_DELIVERY_ASSIGNED_ADMIX 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_out_admix_tab  TYPE RJVSDADMIXTAB, "   
lv_in_shiptoparty  TYPE VBPA-KUNNR, "   
lv_no_admix_assignment  TYPE VBPA, "   
lv_in_soldtoparty  TYPE VBPA-KUNNR, "   
lv_no_contract_found  TYPE VBPA, "   
lv_in_document  TYPE VBAP-VBELN, "   
lv_in_item  TYPE VBAP-POSNR, "   
lv_in_mediaissue  TYPE VBAP-MATNR. "   

  CALL FUNCTION 'ISM_DELIVERY_ASSIGNED_ADMIX'  "
    EXPORTING
         IN_SHIPTOPARTY = lv_in_shiptoparty
         IN_SOLDTOPARTY = lv_in_soldtoparty
         IN_DOCUMENT = lv_in_document
         IN_ITEM = lv_in_item
         IN_MEDIAISSUE = lv_in_mediaissue
    IMPORTING
         OUT_ADMIX_TAB = lv_out_admix_tab
    EXCEPTIONS
        NO_ADMIX_ASSIGNMENT = 1
        NO_CONTRACT_FOUND = 2
. " ISM_DELIVERY_ASSIGNED_ADMIX




ABAP code using 7.40 inline data declarations to call FM ISM_DELIVERY_ASSIGNED_ADMIX

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 KUNNR FROM VBPA INTO @DATA(ld_in_shiptoparty).
 
 
"SELECT single KUNNR FROM VBPA INTO @DATA(ld_in_soldtoparty).
 
 
"SELECT single VBELN FROM VBAP INTO @DATA(ld_in_document).
 
"SELECT single POSNR FROM VBAP INTO @DATA(ld_in_item).
 
"SELECT single MATNR FROM VBAP INTO @DATA(ld_in_mediaissue).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!