SAP BAPI_PROCORDCONF_GET_TT_PROP Function Module for Propose Data for Process Order Confirmation Time Ticket









BAPI_PROCORDCONF_GET_TT_PROP is a standard bapi procordconf get tt 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 Process Order Confirmation Time Ticket 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 tt prop FM, simply by entering the name BAPI_PROCORDCONF_GET_TT_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_TT_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_TT_PROP'"Propose Data for Process Order Confirmation Time Ticket
EXPORTING
* PROPOSE = ' ' "Indicator: Propose Confirmation Data

IMPORTING
RETURN = "Return Parameters

TABLES
TIMETICKETS = "BAPI Structure: PP Confirmation Time Ticket
* 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_TT_PROP

PROPOSE - Indicator: Propose Confirmation Data

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

EXPORTING Parameters details for BAPI_PROCORDCONF_GET_TT_PROP

RETURN - Return Parameters

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

TABLES Parameters details for BAPI_PROCORDCONF_GET_TT_PROP

TIMETICKETS - BAPI Structure: PP Confirmation Time Ticket

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

GOODSMOVEMENTS - BAPI Communication Structure: Create Material Document Item

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

LINK_CONF_GOODSMOV - Link: Confirmation with goods movements

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

DETAIL_RETURN - Return Information for APIs

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

Copy and paste ABAP code example for BAPI_PROCORDCONF_GET_TT_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_propose  TYPE BAPI_PP_CONF_PROP, "   SPACE
lt_timetickets  TYPE STANDARD TABLE OF BAPI_PI_TIMETICKET1, "   
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_TT_PROP'  "Propose Data for Process Order Confirmation Time Ticket
    EXPORTING
         PROPOSE = lv_propose
    IMPORTING
         RETURN = lv_return
    TABLES
         TIMETICKETS = lt_timetickets
         GOODSMOVEMENTS = lt_goodsmovements
         LINK_CONF_GOODSMOV = lt_link_conf_goodsmov
         DETAIL_RETURN = lt_detail_return
. " BAPI_PROCORDCONF_GET_TT_PROP




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

 
DATA(ld_propose) = ' '.
 
 
 
 
 


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!