SAP FRML956_EQN_SOLVE Function Module for NOTRANSL: Löst lineares Gleichungssystem mit Matrixinvertierung









FRML956_EQN_SOLVE is a standard frml956 eqn solve SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Löst lineares Gleichungssystem mit Matrixinvertierung 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 frml956 eqn solve FM, simply by entering the name FRML956_EQN_SOLVE into the relevant SAP transaction such as SE37 or SE38.

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



Function FRML956_EQN_SOLVE 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 'FRML956_EQN_SOLVE'"NOTRANSL: Löst lineares Gleichungssystem mit Matrixinvertierung
EXPORTING
* I_R_SIZE_COL = "Size of a Matrix
* I_R_SIZE_ROW = "Size of a Matrix
* I_M_SIZE_COL = "Size of a Matrix
* I_M_SIZE_ROW = "Size of a Matrix
I_FLG_REQ_COND = "For General Usage
I_TAB_R = "Grid Entries
I_TAB_M = "Grid Entries

IMPORTING
E_X_SEIZE_COL = "Size of a Matrix
E_X_SEIZE_ROW = "Size of a Matrix
E_CONDITION = "Field of type FLTP
E_TAB_X = "Grid Entries
E_TAB_R_INV = "Grid Entries

EXCEPTIONS
TABLEINDEXOUTOFRANGE = 1 INVERSIONNOTPOSSIBLE = 2 INTERNAL_ERROR = 3
.



IMPORTING Parameters details for FRML956_EQN_SOLVE

I_R_SIZE_COL - Size of a Matrix

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

I_R_SIZE_ROW - Size of a Matrix

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

I_M_SIZE_COL - Size of a Matrix

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

I_M_SIZE_ROW - Size of a Matrix

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

I_FLG_REQ_COND - For General Usage

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

I_TAB_R - Grid Entries

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

I_TAB_M - Grid Entries

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

EXPORTING Parameters details for FRML956_EQN_SOLVE

E_X_SEIZE_COL - Size of a Matrix

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

E_X_SEIZE_ROW - Size of a Matrix

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

E_CONDITION - Field of type FLTP

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

E_TAB_X - Grid Entries

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

E_TAB_R_INV - Grid Entries

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

EXCEPTIONS details

TABLEINDEXOUTOFRANGE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

INVERSIONNOTPOSSIBLE -

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FRML956_EQN_SOLVE 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_i_r_size_col  TYPE FRMLEMATRIXSIZE, "   
lv_e_x_seize_col  TYPE FRMLEMATRIXSIZE, "   
lv_tableindexoutofrange  TYPE FRMLEMATRIXSIZE, "   
lv_i_r_size_row  TYPE FRMLEMATRIXSIZE, "   
lv_e_x_seize_row  TYPE FRMLEMATRIXSIZE, "   
lv_inversionnotpossible  TYPE FRMLEMATRIXSIZE, "   
lv_e_condition  TYPE FLOAT, "   
lv_i_m_size_col  TYPE FRMLEMATRIXSIZE, "   
lv_internal_error  TYPE FRMLEMATRIXSIZE, "   
lv_e_tab_x  TYPE FRMLTY_MATRIX_N, "   
lv_i_m_size_row  TYPE FRMLEMATRIXSIZE, "   
lv_e_tab_r_inv  TYPE FRMLTY_MATRIX_N, "   
lv_i_flg_req_cond  TYPE FRMLE_FLG, "   
lv_i_tab_r  TYPE FRMLTY_MATRIX_N, "   
lv_i_tab_m  TYPE FRMLTY_MATRIX_N. "   

  CALL FUNCTION 'FRML956_EQN_SOLVE'  "NOTRANSL: Löst lineares Gleichungssystem mit Matrixinvertierung
    EXPORTING
         I_R_SIZE_COL = lv_i_r_size_col
         I_R_SIZE_ROW = lv_i_r_size_row
         I_M_SIZE_COL = lv_i_m_size_col
         I_M_SIZE_ROW = lv_i_m_size_row
         I_FLG_REQ_COND = lv_i_flg_req_cond
         I_TAB_R = lv_i_tab_r
         I_TAB_M = lv_i_tab_m
    IMPORTING
         E_X_SEIZE_COL = lv_e_x_seize_col
         E_X_SEIZE_ROW = lv_e_x_seize_row
         E_CONDITION = lv_e_condition
         E_TAB_X = lv_e_tab_x
         E_TAB_R_INV = lv_e_tab_r_inv
    EXCEPTIONS
        TABLEINDEXOUTOFRANGE = 1
        INVERSIONNOTPOSSIBLE = 2
        INTERNAL_ERROR = 3
. " FRML956_EQN_SOLVE




ABAP code using 7.40 inline data declarations to call FM FRML956_EQN_SOLVE

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!