SAP KONASSMT_ANALYSE Function Module for Analysis for Release (All Objects)









KONASSMT_ANALYSE is a standard konassmt analyse SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Analysis for Release (All Objects) 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 konassmt analyse FM, simply by entering the name KONASSMT_ANALYSE into the relevant SAP transaction such as SE37 or SE38.

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



Function KONASSMT_ANALYSE 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 'KONASSMT_ANALYSE'"Analysis for Release (All Objects)
EXPORTING
I_SFGOBJ = "Freigabeobjekt gemäß TZFO
I_SKEY1 = "zusammengesetzter Schlüssel Teil 1
I_SKEY2 = "zusammengesetzter Schlüssel Teil 2
I_VZFGD = "Freigabedaten (Informationsdaten für das Freigabeverfahren)

IMPORTING
E_STATUS = "Icon Name
E_WFSTATUS = "Icon Name

EXCEPTIONS
OBJECT_NOT_FOUND = 1
.



IMPORTING Parameters details for KONASSMT_ANALYSE

I_SFGOBJ - Freigabeobjekt gemäß TZFO

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

I_SKEY1 - zusammengesetzter Schlüssel Teil 1

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

I_SKEY2 - zusammengesetzter Schlüssel Teil 2

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

I_VZFGD - Freigabedaten (Informationsdaten für das Freigabeverfahren)

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

EXPORTING Parameters details for KONASSMT_ANALYSE

E_STATUS - Icon Name

Data type: ICON-NAME
Optional: No
Call by Reference: Yes

E_WFSTATUS - Icon Name

Data type: ICON-NAME
Optional: No
Call by Reference: Yes

EXCEPTIONS details

OBJECT_NOT_FOUND - Object Not Found

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

Copy and paste ABAP code example for KONASSMT_ANALYSE 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_e_status  TYPE ICON-NAME, "   
lv_i_sfgobj  TYPE VZFGD-SFGOBJ, "   
lv_object_not_found  TYPE VZFGD, "   
lv_i_skey1  TYPE VZFGD-SKEY1, "   
lv_e_wfstatus  TYPE ICON-NAME, "   
lv_i_skey2  TYPE VZFGD-SKEY2, "   
lv_i_vzfgd  TYPE VZFGD. "   

  CALL FUNCTION 'KONASSMT_ANALYSE'  "Analysis for Release (All Objects)
    EXPORTING
         I_SFGOBJ = lv_i_sfgobj
         I_SKEY1 = lv_i_skey1
         I_SKEY2 = lv_i_skey2
         I_VZFGD = lv_i_vzfgd
    IMPORTING
         E_STATUS = lv_e_status
         E_WFSTATUS = lv_e_wfstatus
    EXCEPTIONS
        OBJECT_NOT_FOUND = 1
. " KONASSMT_ANALYSE




ABAP code using 7.40 inline data declarations to call FM KONASSMT_ANALYSE

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 NAME FROM ICON INTO @DATA(ld_e_status).
 
"SELECT single SFGOBJ FROM VZFGD INTO @DATA(ld_i_sfgobj).
 
 
"SELECT single SKEY1 FROM VZFGD INTO @DATA(ld_i_skey1).
 
"SELECT single NAME FROM ICON INTO @DATA(ld_e_wfstatus).
 
"SELECT single SKEY2 FROM VZFGD INTO @DATA(ld_i_skey2).
 
 


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!