OIRE_UPDATE_DTF is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name OIRE_UPDATE_DTF into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
OIRE_PC_DTF
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'OIRE_UPDATE_DTF' "Update one or more payment card transactions
EXPORTING
i_bukrs = " t001-bukrs Company code
i_ccins = " oireuplkxxxx-ssr_ccins Payment card type
* i_mode = ' ' " char1 'L' View-Update for Linknr, 'S'-View-upd for Settlnr
TABLES
t_dtf_hdr = " oireuplkxxxx Header data
* t_dtf_itm = " oireuplpxxxx Item data
* t_link = " oire1_t_link Control table for the update
EXCEPTIONS
DTF_TABLE_DOES_NOT_EXIST = 1 " No DTF table exists.
UPDATE_FAILURE = 2 " Update of payment card data failed.
. " OIRE_UPDATE_DTF
The ABAP code below is a full code listing to execute function module OIRE_UPDATE_DTF including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_t_dtf_hdr | TYPE STANDARD TABLE OF OIREUPLKXXXX,"TABLES PARAM |
| wa_t_dtf_hdr | LIKE LINE OF it_t_dtf_hdr , |
| it_t_dtf_itm | TYPE STANDARD TABLE OF OIREUPLPXXXX,"TABLES PARAM |
| wa_t_dtf_itm | LIKE LINE OF it_t_dtf_itm , |
| it_t_link | TYPE STANDARD TABLE OF OIRE1_T_LINK,"TABLES PARAM |
| wa_t_link | LIKE LINE OF it_t_link . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_bukrs | TYPE T001-BUKRS , |
| it_t_dtf_hdr | TYPE STANDARD TABLE OF OIREUPLKXXXX , |
| wa_t_dtf_hdr | LIKE LINE OF it_t_dtf_hdr, |
| ld_i_ccins | TYPE OIREUPLKXXXX-SSR_CCINS , |
| it_t_dtf_itm | TYPE STANDARD TABLE OF OIREUPLPXXXX , |
| wa_t_dtf_itm | LIKE LINE OF it_t_dtf_itm, |
| ld_i_mode | TYPE CHAR1 , |
| it_t_link | TYPE STANDARD TABLE OF OIRE1_T_LINK , |
| wa_t_link | LIKE LINE OF it_t_link. |
This function module is handling changes (insert, changes, delete) to
the payment card transactions. The action that is finally done by the
...See here for full SAP fm documentation
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name OIRE_UPDATE_DTF or its description.
OIRE_UPDATE_DTF - Update one or more payment card transactions OIRE_UPDATE_DBT_UPTASK - Call OIRA_UPDATE_DBT handling all non-a messages OIRE_SUBSEQUENT_DOC_DETERMINE - Determine subsequent documents for DTF transactions OIRE_SPLITTING - Payment Card Splitting OIRE_RECON_SCREEN_SEQ - SSR PC Reconciliation Screen Sequence OIRE_RECON_PROCESS_STATUS_SET - Set the process control status for reconciliation