SAP GET_SIGNI_FROM_METHOD_ORA Function Module for Determines Significance Derived from Analysis Method and Option









GET_SIGNI_FROM_METHOD_ORA is a standard get signi from method ora SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determines Significance Derived from Analysis Method and Option 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 get signi from method ora FM, simply by entering the name GET_SIGNI_FROM_METHOD_ORA into the relevant SAP transaction such as SE37 or SE38.

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



Function GET_SIGNI_FROM_METHOD_ORA 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 'GET_SIGNI_FROM_METHOD_ORA'"Determines Significance Derived from Analysis Method and Option
EXPORTING
AMETH = "
* OPTIO = ' ' "

IMPORTING
TAB_SIGNI_OPT = "
IND_SIGNI_OPT = "
TAB_SIGNI_SPA = "
IND_SIGNI_SPA = "
.



IMPORTING Parameters details for GET_SIGNI_FROM_METHOD_ORA

AMETH -

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

OPTIO -

Data type: DBSTATAM-OPTIO
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for GET_SIGNI_FROM_METHOD_ORA

TAB_SIGNI_OPT -

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

IND_SIGNI_OPT -

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

TAB_SIGNI_SPA -

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

IND_SIGNI_SPA -

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

Copy and paste ABAP code example for GET_SIGNI_FROM_METHOD_ORA 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_ameth  TYPE DBSTATAM-AMETH, "   
lv_tab_signi_opt  TYPE DBSTATAM-SIGNI, "   
lv_optio  TYPE DBSTATAM-OPTIO, "   ' '
lv_ind_signi_opt  TYPE I, "   
lv_tab_signi_spa  TYPE I, "   
lv_ind_signi_spa  TYPE I. "   

  CALL FUNCTION 'GET_SIGNI_FROM_METHOD_ORA'  "Determines Significance Derived from Analysis Method and Option
    EXPORTING
         AMETH = lv_ameth
         OPTIO = lv_optio
    IMPORTING
         TAB_SIGNI_OPT = lv_tab_signi_opt
         IND_SIGNI_OPT = lv_ind_signi_opt
         TAB_SIGNI_SPA = lv_tab_signi_spa
         IND_SIGNI_SPA = lv_ind_signi_spa
. " GET_SIGNI_FROM_METHOD_ORA




ABAP code using 7.40 inline data declarations to call FM GET_SIGNI_FROM_METHOD_ORA

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 AMETH FROM DBSTATAM INTO @DATA(ld_ameth).
 
"SELECT single SIGNI FROM DBSTATAM INTO @DATA(ld_tab_signi_opt).
 
"SELECT single OPTIO FROM DBSTATAM INTO @DATA(ld_optio).
DATA(ld_optio) = ' '.
 
 
 
 


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!