SAP SPLIT_EQUITY Function Module for Split Amounts Based on Current Equity Group Share Table









SPLIT_EQUITY is a standard split equity SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Split Amounts Based on Current Equity Group Share Table 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 split equity FM, simply by entering the name SPLIT_EQUITY into the relevant SAP transaction such as SE37 or SE38.

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



Function SPLIT_EQUITY 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 'SPLIT_EQUITY'"Split Amounts Based on Current Equity Group Share Table
EXPORTING
I_LOCAL_AMT = "Local Amount
I_TRANS_AMT = "Transaction Amount
* I_LOCAL2_AMT = 0 "
* I_LOCAL3_AMT = 0 "

IMPORTING
E_OPER_ALLOC_ERROR = "Operator Allocation Error (Y or N) {see notes}

TABLES
E_INT_EQ_SHARE = "Equity Share Table - structure T8JVT02

EXCEPTIONS
INCOMPLETE = 1
.



IMPORTING Parameters details for SPLIT_EQUITY

I_LOCAL_AMT - Local Amount

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

I_TRANS_AMT - Transaction Amount

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

I_LOCAL2_AMT -

Data type: T8JVT02-HSL2
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LOCAL3_AMT -

Data type: T8JVT02-HSL3
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for SPLIT_EQUITY

E_OPER_ALLOC_ERROR - Operator Allocation Error (Y or N) {see notes}

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

TABLES Parameters details for SPLIT_EQUITY

E_INT_EQ_SHARE - Equity Share Table - structure T8JVT02

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

EXCEPTIONS details

INCOMPLETE - Parameters Incomplete or Invalid

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

Copy and paste ABAP code example for SPLIT_EQUITY 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_incomplete  TYPE STRING, "   
lv_i_local_amt  TYPE T8JVT02-HSL, "   
lt_e_int_eq_share  TYPE STANDARD TABLE OF T8JVT02, "   
lv_e_oper_alloc_error  TYPE T8JVT02, "   
lv_i_trans_amt  TYPE T8JVT02-TSL, "   
lv_i_local2_amt  TYPE T8JVT02-HSL2, "   0
lv_i_local3_amt  TYPE T8JVT02-HSL3. "   0

  CALL FUNCTION 'SPLIT_EQUITY'  "Split Amounts Based on Current Equity Group Share Table
    EXPORTING
         I_LOCAL_AMT = lv_i_local_amt
         I_TRANS_AMT = lv_i_trans_amt
         I_LOCAL2_AMT = lv_i_local2_amt
         I_LOCAL3_AMT = lv_i_local3_amt
    IMPORTING
         E_OPER_ALLOC_ERROR = lv_e_oper_alloc_error
    TABLES
         E_INT_EQ_SHARE = lt_e_int_eq_share
    EXCEPTIONS
        INCOMPLETE = 1
. " SPLIT_EQUITY




ABAP code using 7.40 inline data declarations to call FM SPLIT_EQUITY

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.

 
"SELECT single HSL FROM T8JVT02 INTO @DATA(ld_i_local_amt).
 
 
 
"SELECT single TSL FROM T8JVT02 INTO @DATA(ld_i_trans_amt).
 
"SELECT single HSL2 FROM T8JVT02 INTO @DATA(ld_i_local2_amt).
 
"SELECT single HSL3 FROM T8JVT02 INTO @DATA(ld_i_local3_amt).
 


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!