SAP TRIA_APPL_REP1_START Function Module for Treasury Interest Rate Adjustment: Start of Int. Rate Adjustment Schedule
TRIA_APPL_REP1_START is a standard tria appl rep1 start SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Treasury Interest Rate Adjustment: Start of Int. Rate Adjustment Schedule 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 tria appl rep1 start FM, simply by entering the name TRIA_APPL_REP1_START into the relevant SAP transaction such as SE37 or SE38.
Function Group: TRIA_APPL
Program Name: SAPLTRIA_APPL
Main Program: SAPLTRIA_APPL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TRIA_APPL_REP1_START 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 'TRIA_APPL_REP1_START'"Treasury Interest Rate Adjustment: Start of Int. Rate Adjustment Schedule.
EXPORTING
PI_TAB_TRIA = "Treasury: Int.Rate Adjust. - Registration and Int.Rate Adj.
PI_TAB_TRCPA = "TR: Commodity Price Adjustment-Registration and Fixing
* PI_TAB_TRCPA2 = "Commodity price fixing - Table type for TRCPAS2
PI_TAB_TRSPA = "TR: Security Price Adjustment-Registration and Fixing
* PI_VARIANT = "Layout
* PI_VARIANT_SAVEOPTION = 'A' "Speicheroption für Variante
IMPORTING
PE_EXIT = "Verlassenoption
EXCEPTIONS
FAILED = 1
IMPORTING Parameters details for TRIA_APPL_REP1_START
PI_TAB_TRIA - Treasury: Int.Rate Adjust. - Registration and Int.Rate Adj.
Data type: TRIAYOptional: No
Call by Reference: Yes
PI_TAB_TRCPA - TR: Commodity Price Adjustment-Registration and Fixing
Data type: TRCPAYOptional: No
Call by Reference: Yes
PI_TAB_TRCPA2 - Commodity price fixing - Table type for TRCPAS2
Data type: TRCPAY2Optional: Yes
Call by Reference: Yes
PI_TAB_TRSPA - TR: Security Price Adjustment-Registration and Fixing
Data type: TRSPAYOptional: No
Call by Reference: Yes
PI_VARIANT - Layout
Data type: DISVARIANTOptional: Yes
Call by Reference: Yes
PI_VARIANT_SAVEOPTION - Speicheroption für Variante
Data type: CDefault: 'A'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TRIA_APPL_REP1_START
PE_EXIT - Verlassenoption
Data type: SLIS_EXIT_BY_USEROptional: No
Call by Reference: Yes
EXCEPTIONS details
FAILED - Report konnte nicht gestartet werden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TRIA_APPL_REP1_START 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_failed | TYPE STRING, " | |||
| lv_pe_exit | TYPE SLIS_EXIT_BY_USER, " | |||
| lv_pi_tab_tria | TYPE TRIAY, " | |||
| lv_pi_tab_trcpa | TYPE TRCPAY, " | |||
| lv_pi_tab_trcpa2 | TYPE TRCPAY2, " | |||
| lv_pi_tab_trspa | TYPE TRSPAY, " | |||
| lv_pi_variant | TYPE DISVARIANT, " | |||
| lv_pi_variant_saveoption | TYPE C. " 'A' |
|   CALL FUNCTION 'TRIA_APPL_REP1_START' "Treasury Interest Rate Adjustment: Start of Int. Rate Adjustment Schedule |
| EXPORTING | ||
| PI_TAB_TRIA | = lv_pi_tab_tria | |
| PI_TAB_TRCPA | = lv_pi_tab_trcpa | |
| PI_TAB_TRCPA2 | = lv_pi_tab_trcpa2 | |
| PI_TAB_TRSPA | = lv_pi_tab_trspa | |
| PI_VARIANT | = lv_pi_variant | |
| PI_VARIANT_SAVEOPTION | = lv_pi_variant_saveoption | |
| IMPORTING | ||
| PE_EXIT | = lv_pe_exit | |
| EXCEPTIONS | ||
| FAILED = 1 | ||
| . " TRIA_APPL_REP1_START | ||
ABAP code using 7.40 inline data declarations to call FM TRIA_APPL_REP1_START
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_pi_variant_saveoption) | = 'A'. | |||
Search for further information about these or an SAP related objects