SAP BAPI_PROCORDCONF_GET_TE_PROP Function Module for Propose Data for Confirmation Time Event Process Order
BAPI_PROCORDCONF_GET_TE_PROP is a standard bapi procordconf get te prop SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Propose Data for Confirmation Time Event Process Order 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 bapi procordconf get te prop FM, simply by entering the name BAPI_PROCORDCONF_GET_TE_PROP into the relevant SAP transaction such as SE37 or SE38.
Function Group: 2016
Program Name: SAPL2016
Main Program: SAPL2016
Appliation area:
Release date: 31-Mar-2004
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_PROCORDCONF_GET_TE_PROP 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 'BAPI_PROCORDCONF_GET_TE_PROP'"Propose Data for Confirmation Time Event Process Order.
EXPORTING
* PROP_GMOV = ' ' "Indicator: Propose goods movements for confirmation
IMPORTING
RETURN = "Return Parameters
TABLES
TIMEEVENTS = "Process Order Confirmation: Time Event Confirmation
* GOODSMOVEMENTS = "BAPI Communication Structure: Create Material Document Item
* LINK_CONF_GOODSMOV = "Link: Confirmation with goods movements
* DETAIL_RETURN = "Return Information for APIs
IMPORTING Parameters details for BAPI_PROCORDCONF_GET_TE_PROP
PROP_GMOV - Indicator: Propose goods movements for confirmation
Data type: BAPI_CORU_PARAM-PROP_GMOVDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BAPI_PROCORDCONF_GET_TE_PROP
RETURN - Return Parameters
Data type: BAPIRET1Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_PROCORDCONF_GET_TE_PROP
TIMEEVENTS - Process Order Confirmation: Time Event Confirmation
Data type: BAPI_PI_TIMEEVENT1Optional: No
Call by Reference: Yes
GOODSMOVEMENTS - BAPI Communication Structure: Create Material Document Item
Data type: BAPI2017_GM_ITEM_CREATEOptional: Yes
Call by Reference: Yes
LINK_CONF_GOODSMOV - Link: Confirmation with goods movements
Data type: BAPI_LINK_CONF_GOODSMOVOptional: Yes
Call by Reference: Yes
DETAIL_RETURN - Return Information for APIs
Data type: BAPI_CORU_RETURNOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for BAPI_PROCORDCONF_GET_TE_PROP 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_return | TYPE BAPIRET1, " | |||
| lv_prop_gmov | TYPE BAPI_CORU_PARAM-PROP_GMOV, " SPACE | |||
| lt_timeevents | TYPE STANDARD TABLE OF BAPI_PI_TIMEEVENT1, " | |||
| lt_goodsmovements | TYPE STANDARD TABLE OF BAPI2017_GM_ITEM_CREATE, " | |||
| lt_link_conf_goodsmov | TYPE STANDARD TABLE OF BAPI_LINK_CONF_GOODSMOV, " | |||
| lt_detail_return | TYPE STANDARD TABLE OF BAPI_CORU_RETURN. " |
|   CALL FUNCTION 'BAPI_PROCORDCONF_GET_TE_PROP' "Propose Data for Confirmation Time Event Process Order |
| EXPORTING | ||
| PROP_GMOV | = lv_prop_gmov | |
| IMPORTING | ||
| RETURN | = lv_return | |
| TABLES | ||
| TIMEEVENTS | = lt_timeevents | |
| GOODSMOVEMENTS | = lt_goodsmovements | |
| LINK_CONF_GOODSMOV | = lt_link_conf_goodsmov | |
| DETAIL_RETURN | = lt_detail_return | |
| . " BAPI_PROCORDCONF_GET_TE_PROP | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_PROCORDCONF_GET_TE_PROP
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 PROP_GMOV FROM BAPI_CORU_PARAM INTO @DATA(ld_prop_gmov). | ||||
| DATA(ld_prop_gmov) | = ' '. | |||
Search for further information about these or an SAP related objects