SAP CY_CHECK_GANTT_SORT Function Module for NOTRANSL: Prüft die eingegebene Sortierreihenfolge für die Graphik 'Vorgän









CY_CHECK_GANTT_SORT is a standard cy check gantt sort 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: Prüft die eingegebene Sortierreihenfolge für die Graphik 'Vorgän 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 cy check gantt sort FM, simply by entering the name CY_CHECK_GANTT_SORT into the relevant SAP transaction such as SE37 or SE38.

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



Function CY_CHECK_GANTT_SORT 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 'CY_CHECK_GANTT_SORT'"NOTRANSL: Prüft die eingegebene Sortierreihenfolge für die Graphik 'Vorgän
EXPORTING
GS_AUART = "Sort feature Order number
GS_AUFNR = "Sort feature Order number
GS_FSTA = "
GS_MATNR = "Sort feature material number
GS_PRIO = "
GS_SEND = "

IMPORTING
NOSORT = "

EXCEPTIONS
GAPS = 1 NOT_UNIQUE = 2
.



IMPORTING Parameters details for CY_CHECK_GANTT_SORT

GS_AUART - Sort feature Order number

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

GS_AUFNR - Sort feature Order number

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

GS_FSTA -

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

GS_MATNR - Sort feature material number

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

GS_PRIO -

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

GS_SEND -

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

EXPORTING Parameters details for CY_CHECK_GANTT_SORT

NOSORT -

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

EXCEPTIONS details

GAPS -

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

NOT_UNIQUE - Sorting sequence not unique

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

Copy and paste ABAP code example for CY_CHECK_GANTT_SORT 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_gaps  TYPE STRING, "   
lv_nosort  TYPE CYGRAPROF-NOSORT, "   
lv_gs_auart  TYPE TCY21-GS_AUART, "   
lv_gs_aufnr  TYPE TCY21-GS_AUFNR, "   
lv_not_unique  TYPE TCY21, "   
lv_gs_fsta  TYPE TCY21-GS_FSTA, "   
lv_gs_matnr  TYPE TCY21-GS_MATNR, "   
lv_gs_prio  TYPE TCY21-GS_PRIO, "   
lv_gs_send  TYPE TCY21-GS_SEND. "   

  CALL FUNCTION 'CY_CHECK_GANTT_SORT'  "NOTRANSL: Prüft die eingegebene Sortierreihenfolge für die Graphik 'Vorgän
    EXPORTING
         GS_AUART = lv_gs_auart
         GS_AUFNR = lv_gs_aufnr
         GS_FSTA = lv_gs_fsta
         GS_MATNR = lv_gs_matnr
         GS_PRIO = lv_gs_prio
         GS_SEND = lv_gs_send
    IMPORTING
         NOSORT = lv_nosort
    EXCEPTIONS
        GAPS = 1
        NOT_UNIQUE = 2
. " CY_CHECK_GANTT_SORT




ABAP code using 7.40 inline data declarations to call FM CY_CHECK_GANTT_SORT

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 NOSORT FROM CYGRAPROF INTO @DATA(ld_nosort).
 
"SELECT single GS_AUART FROM TCY21 INTO @DATA(ld_gs_auart).
 
"SELECT single GS_AUFNR FROM TCY21 INTO @DATA(ld_gs_aufnr).
 
 
"SELECT single GS_FSTA FROM TCY21 INTO @DATA(ld_gs_fsta).
 
"SELECT single GS_MATNR FROM TCY21 INTO @DATA(ld_gs_matnr).
 
"SELECT single GS_PRIO FROM TCY21 INTO @DATA(ld_gs_prio).
 
"SELECT single GS_SEND FROM TCY21 INTO @DATA(ld_gs_send).
 


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!