SAP THMEX_CREATE_EXPOSURE_IR Function Module for Hedge Management: Create Exposure









THMEX_CREATE_EXPOSURE_IR is a standard thmex create exposure ir SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Hedge Management: Create Exposure 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 thmex create exposure ir FM, simply by entering the name THMEX_CREATE_EXPOSURE_IR into the relevant SAP transaction such as SE37 or SE38.

Function Group: THMEX_FRONTEND
Program Name: SAPLTHMEX_FRONTEND
Main Program: SAPLTHMEX_FRONTEND
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function THMEX_CREATE_EXPOSURE_IR 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 'THMEX_CREATE_EXPOSURE_IR'"Hedge Management: Create Exposure
EXPORTING
* I_P_PERSISTENCY_MANAGER = "Treasury Position Management: Persistence Service

CHANGING
C_EXPOSURE_IR = "Hedge Management: exposure created by transactions
C_EXPOSURE = "Hedge Management: exposure created by transactions

EXCEPTIONS
INSERT_EXPOSURE_FAILED = 1 INSERT_EXPOSURE_IR_FAILED = 2 INSERT_PLANNERID_FAILED = 3 PERSISTENCY_ERROR = 4 INVALID_PLANNER_ID = 5
.



IMPORTING Parameters details for THMEX_CREATE_EXPOSURE_IR

I_P_PERSISTENCY_MANAGER - Treasury Position Management: Persistence Service

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

CHANGING Parameters details for THMEX_CREATE_EXPOSURE_IR

C_EXPOSURE_IR - Hedge Management: exposure created by transactions

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

C_EXPOSURE - Hedge Management: exposure created by transactions

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

EXCEPTIONS details

INSERT_EXPOSURE_FAILED - DB Insert for exposure failed

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

INSERT_EXPOSURE_IR_FAILED - DB Insert for IR-exposure failed

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

INSERT_PLANNERID_FAILED - DB Insert for planner failed

Data type:
Optional: No
Call by Reference: Yes

PERSISTENCY_ERROR - Error in Persistence Service

Data type:
Optional: No
Call by Reference: Yes

INVALID_PLANNER_ID - Sicherungsplan existiert nicht

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for THMEX_CREATE_EXPOSURE_IR 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_c_exposure_ir  TYPE THMEXT_EXPOS_IR, "   
lv_insert_exposure_failed  TYPE THMEXT_EXPOS_IR, "   
lv_i_p_persistency_manager  TYPE CL_PERSISTENCY_MANAGER_TRG, "   
lv_c_exposure  TYPE THMEXT_EXPOS, "   
lv_insert_exposure_ir_failed  TYPE THMEXT_EXPOS, "   
lv_insert_plannerid_failed  TYPE THMEXT_EXPOS, "   
lv_persistency_error  TYPE THMEXT_EXPOS, "   
lv_invalid_planner_id  TYPE THMEXT_EXPOS. "   

  CALL FUNCTION 'THMEX_CREATE_EXPOSURE_IR'  "Hedge Management: Create Exposure
    EXPORTING
         I_P_PERSISTENCY_MANAGER = lv_i_p_persistency_manager
    CHANGING
         C_EXPOSURE_IR = lv_c_exposure_ir
         C_EXPOSURE = lv_c_exposure
    EXCEPTIONS
        INSERT_EXPOSURE_FAILED = 1
        INSERT_EXPOSURE_IR_FAILED = 2
        INSERT_PLANNERID_FAILED = 3
        PERSISTENCY_ERROR = 4
        INVALID_PLANNER_ID = 5
. " THMEX_CREATE_EXPOSURE_IR




ABAP code using 7.40 inline data declarations to call FM THMEX_CREATE_EXPOSURE_IR

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.

 
 
 
 
 
 
 
 


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!