SAP CO_OSP_SPLIT_DATA_GET Function Module for NOTRANSL: Retrieval of order split information









CO_OSP_SPLIT_DATA_GET is a standard co osp split data get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Retrieval of order split information 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 co osp split data get FM, simply by entering the name CO_OSP_SPLIT_DATA_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function CO_OSP_SPLIT_DATA_GET 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 'CO_OSP_SPLIT_DATA_GET'"NOTRANSL: Retrieval of order split information
EXPORTING
* I_AUFNR = "
* I_WITH_VBKZ_ONLY = "

IMPORTING
E_LAUFNR = "

TABLES
* ET_SPREL = "
* ET_SPOPR = "

EXCEPTIONS
NOT_PART_OF_SPLIT = 1
.



IMPORTING Parameters details for CO_OSP_SPLIT_DATA_GET

I_AUFNR -

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

I_WITH_VBKZ_ONLY -

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

EXPORTING Parameters details for CO_OSP_SPLIT_DATA_GET

E_LAUFNR -

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

TABLES Parameters details for CO_OSP_SPLIT_DATA_GET

ET_SPREL -

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

ET_SPOPR -

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

EXCEPTIONS details

NOT_PART_OF_SPLIT -

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

Copy and paste ABAP code example for CO_OSP_SPLIT_DATA_GET 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_aufnr  TYPE AFKO-AUFNR, "   
lt_et_sprel  TYPE STANDARD TABLE OF AFSPRELB, "   
lv_e_laufnr  TYPE AFSPREL-L_AUFNR, "   
lv_not_part_of_split  TYPE AFSPREL, "   
lt_et_spopr  TYPE STANDARD TABLE OF AFSPOPRB, "   
lv_i_with_vbkz_only  TYPE AFSPOPRB. "   

  CALL FUNCTION 'CO_OSP_SPLIT_DATA_GET'  "NOTRANSL: Retrieval of order split information
    EXPORTING
         I_AUFNR = lv_i_aufnr
         I_WITH_VBKZ_ONLY = lv_i_with_vbkz_only
    IMPORTING
         E_LAUFNR = lv_e_laufnr
    TABLES
         ET_SPREL = lt_et_sprel
         ET_SPOPR = lt_et_spopr
    EXCEPTIONS
        NOT_PART_OF_SPLIT = 1
. " CO_OSP_SPLIT_DATA_GET




ABAP code using 7.40 inline data declarations to call FM CO_OSP_SPLIT_DATA_GET

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 AUFNR FROM AFKO INTO @DATA(ld_i_aufnr).
 
 
"SELECT single L_AUFNR FROM AFSPREL INTO @DATA(ld_e_laufnr).
 
 
 
 


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!