Ansicht
Dokumentation

BAPI_PRODORDCONF_GETLIST - List of Confirmations

BAPI_PRODORDCONF_GETLIST - List of Confirmations

rdisp/max_wprun_time - Maximum work process run time   BAL_S_LOG - Application Log: Log header data  
This documentation is copyright by SAP AG.
SAP E-Book

Functionality

This method lists all the confirmations that fulfill pre-defined seletion criteria. All the key data for the confirmation and the confirmed object, such as order, sequence, operation and sub-operation is displayed in the list. The administrative data for the confirmation, such as confirmation date and time, person confirming, record type of the confirmation is also displayed.

Example

All confirmation for the orders with order numbers 100111 bis 100222 are to be listed.

Call the method:

DATA: AUFNR_TAB LIKE BAPI_PP_ORDERRANGE OCCURS 2 WITH HEADER LINE,
CONF_TAB LIKE BAPI_PP_CONF_KEY OCCURS 20 WITH HEADER LINE.
DATA: I_RETURN LIKE BAPIRET1.

REFRESH: AUFNR_TAB.
AUFNR_TAB-SIGN = 'I'.
AUFNR_TAB-OPTION = 'BT'.
AUFNR_TAB-LOW = '000000100111'.
AUFNR_TAB-HIGH = '000000100222'.
APPEND AUFNR_TAB.

CALL FUNCTION 'BAPI_PRODORDCONF_GETLIST'
IMPORTING
RETURN = I_RETURN
TABLES
ORDER_RANGE = AUFNR_TAB
CONFIRMATIONS = CONF_TAB.

Notes

The selection criteria can be transfered as

  • Individual values (for example, Parameter OPERATION)
  • Intervals (for example, ORDER_RANGE and CONF_RANGE)

If no limiting conditions are entered, all the confirmations are displayed in a list.

Note that selection criteria can only successfully select objects, if they do not contain any contradictions. For example, no confirmations can be found in a production order, if you enter an operation as a parameter that does not exist in the order.

If no confirmations could be found for selection criteria you enetered, you receive the relevant information in the RETURN parameter.

Further information





Parameters

CONFIRMATIONS
CONF_RANGE
OPERATION
ORDER_RANGE
RETURN
SEQUENCE
SUBOPERATION

Exceptions

Function Group

2116

Fill RESBD Structure from EBP Component Structure   RFUMSV00 - Advance Return for Tax on Sales/Purchases  
This documentation is copyright by SAP AG.

Length: 2835 Date: 20240523 Time: 182746     sap01-206 ( 48 ms )