SAP OXT_WZDATA_CHECK Function Module for Call Transport Addons









OXT_WZDATA_CHECK is a standard oxt wzdata check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Call Transport Addons 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 oxt wzdata check FM, simply by entering the name OXT_WZDATA_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function OXT_WZDATA_CHECK 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 'OXT_WZDATA_CHECK'"Call Transport Addons
EXPORTING
* IV_SHOWPOPUP = '' "General Flag
* IV_BUSOBJ = "Business Object
* IV_EXTENSIONTYP = "Enhancement Type
* IV_EXTSTATUS = "Status of an Extension
IV_WZDATA_NEW = "Table Type for Parameter Lines
IV_WZDATA_OLD = "Table Type for Parameter Lines

CHANGING
* CT_MESSAGES = "Table with BAPI Return Information

EXCEPTIONS
ACTION_CANCELLED = 1
.



IMPORTING Parameters details for OXT_WZDATA_CHECK

IV_SHOWPOPUP - General Flag

Data type: FLAG
Default: ''
Optional: Yes
Call by Reference: Yes

IV_BUSOBJ - Business Object

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

IV_EXTENSIONTYP - Enhancement Type

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

IV_EXTSTATUS - Status of an Extension

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

IV_WZDATA_NEW - Table Type for Parameter Lines

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

IV_WZDATA_OLD - Table Type for Parameter Lines

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

CHANGING Parameters details for OXT_WZDATA_CHECK

CT_MESSAGES - Table with BAPI Return Information

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

EXCEPTIONS details

ACTION_CANCELLED - Action Was Cancelled

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for OXT_WZDATA_CHECK 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_ct_messages  TYPE BAPIRETTAB, "   
lv_iv_showpopup  TYPE FLAG, "   ''
lv_action_cancelled  TYPE FLAG, "   
lv_iv_busobj  TYPE OXT_BUSOBJ, "   
lv_iv_extensiontyp  TYPE OXT_EXTTYP, "   
lv_iv_extstatus  TYPE OXT_EXTSTATUS, "   
lv_iv_wzdata_new  TYPE COMT_GOX_TABFIELD, "   
lv_iv_wzdata_old  TYPE COMT_GOX_TABFIELD. "   

  CALL FUNCTION 'OXT_WZDATA_CHECK'  "Call Transport Addons
    EXPORTING
         IV_SHOWPOPUP = lv_iv_showpopup
         IV_BUSOBJ = lv_iv_busobj
         IV_EXTENSIONTYP = lv_iv_extensiontyp
         IV_EXTSTATUS = lv_iv_extstatus
         IV_WZDATA_NEW = lv_iv_wzdata_new
         IV_WZDATA_OLD = lv_iv_wzdata_old
    CHANGING
         CT_MESSAGES = lv_ct_messages
    EXCEPTIONS
        ACTION_CANCELLED = 1
. " OXT_WZDATA_CHECK




ABAP code using 7.40 inline data declarations to call FM OXT_WZDATA_CHECK

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.

 
DATA(ld_iv_showpopup) = ''.
 
 
 
 
 
 
 


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!