SAP SD_ORDER_CHECK_XYTAB Function Module for NOTRANSL: X- / Y-Tabellen prüfen









SD_ORDER_CHECK_XYTAB is a standard sd order check xytab 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: X- / Y-Tabellen prüfen 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 sd order check xytab FM, simply by entering the name SD_ORDER_CHECK_XYTAB into the relevant SAP transaction such as SE37 or SE38.

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



Function SD_ORDER_CHECK_XYTAB 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 'SD_ORDER_CHECK_XYTAB'"NOTRANSL:  X- / Y-Tabellen prüfen
EXPORTING
IV_T180_TRTYP = "Transaction Type
* IT_XVBEP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_YVBEP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IS_VBAK = "Sales Document: Header Data
* IV_TEXT_STRING = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_XVBUP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_YVBUP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_XVBAP = "Table XVBAP
* IT_YVBAP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_XVBKD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_YVBKD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.



IMPORTING Parameters details for SD_ORDER_CHECK_XYTAB

IV_T180_TRTYP - Transaction Type

Data type: T180-TRTYP
Optional: No
Call by Reference: Yes

IT_XVBEP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_YVBEP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IS_VBAK - Sales Document: Header Data

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

IV_TEXT_STRING - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: STRING
Optional: Yes
Call by Reference: Yes

IT_XVBUP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_YVBUP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_XVBAP - Table XVBAP

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

IT_YVBAP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_XVBKD - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_YVBKD - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for SD_ORDER_CHECK_XYTAB 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_iv_t180_trtyp  TYPE T180-TRTYP, "   
lv_it_xvbep  TYPE TAB_XYVBEP, "   
lv_it_yvbep  TYPE TAB_XYVBEP, "   
lv_is_vbak  TYPE VBAK, "   
lv_iv_text_string  TYPE STRING, "   
lv_it_xvbup  TYPE TAB_XYVBUP, "   
lv_it_yvbup  TYPE TAB_XYVBUP, "   
lv_it_xvbap  TYPE TAB_XYVBAP, "   
lv_it_yvbap  TYPE TAB_XYVBAP, "   
lv_it_xvbkd  TYPE TAB_XYVBKD, "   
lv_it_yvbkd  TYPE TAB_XYVBKD. "   

  CALL FUNCTION 'SD_ORDER_CHECK_XYTAB'  "NOTRANSL: X- / Y-Tabellen prüfen
    EXPORTING
         IV_T180_TRTYP = lv_iv_t180_trtyp
         IT_XVBEP = lv_it_xvbep
         IT_YVBEP = lv_it_yvbep
         IS_VBAK = lv_is_vbak
         IV_TEXT_STRING = lv_iv_text_string
         IT_XVBUP = lv_it_xvbup
         IT_YVBUP = lv_it_yvbup
         IT_XVBAP = lv_it_xvbap
         IT_YVBAP = lv_it_yvbap
         IT_XVBKD = lv_it_xvbkd
         IT_YVBKD = lv_it_yvbkd
. " SD_ORDER_CHECK_XYTAB




ABAP code using 7.40 inline data declarations to call FM SD_ORDER_CHECK_XYTAB

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 TRTYP FROM T180 INTO @DATA(ld_iv_t180_trtyp).
 
 
 
 
 
 
 
 
 
 
 


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!