SAP CO_DS_SEQUENCE_DETAIL_CALL Function Module for CIM-Auftrag: Aufruf eines Auftragsfolgendetailbildes









CO_DS_SEQUENCE_DETAIL_CALL is a standard co ds sequence detail 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 CIM-Auftrag: Aufruf eines Auftragsfolgendetailbildes 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 ds sequence detail call FM, simply by entering the name CO_DS_SEQUENCE_DETAIL_CALL into the relevant SAP transaction such as SE37 or SE38.

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



Function CO_DS_SEQUENCE_DETAIL_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 'CO_DS_SEQUENCE_DETAIL_CALL'"CIM-Auftrag: Aufruf eines Auftragsfolgendetailbildes
EXPORTING
AFFLD_IMP = "
* WINX2 = 0 "Window coordinate line bottom
* WINY1 = 0 "Window coordinate column left
* WINY2 = 0 "Window coordinate column right
AKTYP = "Activity Category
CAUFVDWA = "
DYNNR = "Screen number
RC27M_IMP = "Material field string
RC27S_IMP = "
RC27X_IMP = "
TC10_IMP = "
* WINX1 = 0 "Window coordinate line top

IMPORTING
AFFLD_EXP = "
FLG_ESC = "
OK_CODE = "
RC27S_EXP = "
RC27X_EXP = "
.



IMPORTING Parameters details for CO_DS_SEQUENCE_DETAIL_CALL

AFFLD_IMP -

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

WINX2 - Window coordinate line bottom

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

WINY1 - Window coordinate column left

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

WINY2 - Window coordinate column right

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

AKTYP - Activity Category

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

CAUFVDWA -

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

DYNNR - Screen number

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

RC27M_IMP - Material field string

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

RC27S_IMP -

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

RC27X_IMP -

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

TC10_IMP -

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

WINX1 - Window coordinate line top

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

EXPORTING Parameters details for CO_DS_SEQUENCE_DETAIL_CALL

AFFLD_EXP -

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

FLG_ESC -

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

OK_CODE -

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

RC27S_EXP -

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

RC27X_EXP -

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

Copy and paste ABAP code example for CO_DS_SEQUENCE_DETAIL_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_affld_exp  TYPE AFFLD, "   
lv_affld_imp  TYPE AFFLD, "   
lv_winx2  TYPE T185V-WINX2, "   0
lv_winy1  TYPE T185V-WINY1, "   0
lv_winy2  TYPE T185V-WINY2, "   0
lv_aktyp  TYPE TC01A-AKTYP, "   
lv_flg_esc  TYPE TC01A, "   
lv_ok_code  TYPE T185-FCODE, "   
lv_caufvdwa  TYPE CAUFVD, "   
lv_dynnr  TYPE T185V-DYNNR, "   
lv_rc27s_exp  TYPE RC27S, "   
lv_rc27m_imp  TYPE RC27M, "   
lv_rc27x_exp  TYPE RC27X, "   
lv_rc27s_imp  TYPE RC27S, "   
lv_rc27x_imp  TYPE RC27X, "   
lv_tc10_imp  TYPE TC10, "   
lv_winx1  TYPE T185V-WINX1. "   0

  CALL FUNCTION 'CO_DS_SEQUENCE_DETAIL_CALL'  "CIM-Auftrag: Aufruf eines Auftragsfolgendetailbildes
    EXPORTING
         AFFLD_IMP = lv_affld_imp
         WINX2 = lv_winx2
         WINY1 = lv_winy1
         WINY2 = lv_winy2
         AKTYP = lv_aktyp
         CAUFVDWA = lv_caufvdwa
         DYNNR = lv_dynnr
         RC27M_IMP = lv_rc27m_imp
         RC27S_IMP = lv_rc27s_imp
         RC27X_IMP = lv_rc27x_imp
         TC10_IMP = lv_tc10_imp
         WINX1 = lv_winx1
    IMPORTING
         AFFLD_EXP = lv_affld_exp
         FLG_ESC = lv_flg_esc
         OK_CODE = lv_ok_code
         RC27S_EXP = lv_rc27s_exp
         RC27X_EXP = lv_rc27x_exp
. " CO_DS_SEQUENCE_DETAIL_CALL




ABAP code using 7.40 inline data declarations to call FM CO_DS_SEQUENCE_DETAIL_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.

 
 
"SELECT single WINX2 FROM T185V INTO @DATA(ld_winx2).
 
"SELECT single WINY1 FROM T185V INTO @DATA(ld_winy1).
 
"SELECT single WINY2 FROM T185V INTO @DATA(ld_winy2).
 
"SELECT single AKTYP FROM TC01A INTO @DATA(ld_aktyp).
 
 
"SELECT single FCODE FROM T185 INTO @DATA(ld_ok_code).
 
 
"SELECT single DYNNR FROM T185V INTO @DATA(ld_dynnr).
 
 
 
 
 
 
 
"SELECT single WINX1 FROM T185V INTO @DATA(ld_winx1).
 


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!