SAP INTF_GET_OBJECT Function Module for









INTF_GET_OBJECT is a standard intf get object SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 intf get object FM, simply by entering the name INTF_GET_OBJECT into the relevant SAP transaction such as SE37 or SE38.

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



Function INTF_GET_OBJECT 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 'INTF_GET_OBJECT'"
EXPORTING
CLSKEY = "Object Type Name
* R3STATE = 'A' "ABAP: Program Status (Active, Saved, Transported...)

TABLES
PVSEOINTERF = "Generated table for view VSEOINTERF
PVSEOCOMPRI = "Meta relationship
PPOOL_SOURCE = "ABAP_SOURCE
PSOURCE = "Program source
PTRDIR = "View
PSMODILOG = "Log of Customer Modifications to Dev. Env. Objects
PSMODISRC = "Customer Modification Log: Object Data (Active)
PVSEOATTRIB = "Generated table for view VSEOATTRIB
PVSEOMETHOD = "Generated Table for View VSEOMETHOD
PVSEOEVENT = "Generated table for the view VSEOEVENT
* PVSEOTYPE = "Generated table for view VSEOTYPE
PVSEOPARAM = "View
PVSEOEXCEP = "Generated table for the view VSEOEXCEP
PSEOALIASES = "Alias definition
PSEOTYPEPLS = "Type group application

EXCEPTIONS
INTERFACE_NOT_EXISTING = 1 INTF_NOT_EXISTING = 2 VERSION_NOT_FOUND = 3
.



IMPORTING Parameters details for INTF_GET_OBJECT

CLSKEY - Object Type Name

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

R3STATE - ABAP: Program Status (Active, Saved, Transported...)

Data type: D010SINF-R3STATE
Default: 'A'
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for INTF_GET_OBJECT

PVSEOINTERF - Generated table for view VSEOINTERF

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

PVSEOCOMPRI - Meta relationship

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

PPOOL_SOURCE - ABAP_SOURCE

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

PSOURCE - Program source

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

PTRDIR - View

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

PSMODILOG - Log of Customer Modifications to Dev. Env. Objects

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

PSMODISRC - Customer Modification Log: Object Data (Active)

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

PVSEOATTRIB - Generated table for view VSEOATTRIB

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

PVSEOMETHOD - Generated Table for View VSEOMETHOD

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

PVSEOEVENT - Generated table for the view VSEOEVENT

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

PVSEOTYPE - Generated table for view VSEOTYPE

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

PVSEOPARAM - View

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

PVSEOEXCEP - Generated table for the view VSEOEXCEP

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

PSEOALIASES - Alias definition

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

PSEOTYPEPLS - Type group application

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

EXCEPTIONS details

INTERFACE_NOT_EXISTING -

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

INTF_NOT_EXISTING -

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

VERSION_NOT_FOUND -

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

Copy and paste ABAP code example for INTF_GET_OBJECT 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_clskey  TYPE SEOCLSKEY, "   
lt_pvseointerf  TYPE STANDARD TABLE OF VSEOINTERF, "   
lv_interface_not_existing  TYPE VSEOINTERF, "   
lt_pvseocompri  TYPE STANDARD TABLE OF VSEOCOMPRI, "   
lt_ppool_source  TYPE STANDARD TABLE OF ABAPTXT255, "   
lt_psource  TYPE STANDARD TABLE OF ABAPTXT255, "   
lt_ptrdir  TYPE STANDARD TABLE OF TRDIR, "   
lt_psmodilog  TYPE STANDARD TABLE OF SMODILOG, "   
lt_psmodisrc  TYPE STANDARD TABLE OF SMODISRC, "   
lv_r3state  TYPE D010SINF-R3STATE, "   'A'
lt_pvseoattrib  TYPE STANDARD TABLE OF VSEOATTRIB_VRS, "   
lv_intf_not_existing  TYPE VSEOATTRIB_VRS, "   
lt_pvseomethod  TYPE STANDARD TABLE OF VSEOMETHOD, "   
lv_version_not_found  TYPE VSEOMETHOD, "   
lt_pvseoevent  TYPE STANDARD TABLE OF VSEOEVENT, "   
lt_pvseotype  TYPE STANDARD TABLE OF VSEOTYPE_VRS, "   
lt_pvseoparam  TYPE STANDARD TABLE OF VSEOPARAM, "   
lt_pvseoexcep  TYPE STANDARD TABLE OF VSEOEXCEP, "   
lt_pseoaliases  TYPE STANDARD TABLE OF SEOALIASES, "   
lt_pseotypepls  TYPE STANDARD TABLE OF SEOTYPEPLS. "   

  CALL FUNCTION 'INTF_GET_OBJECT'  "
    EXPORTING
         CLSKEY = lv_clskey
         R3STATE = lv_r3state
    TABLES
         PVSEOINTERF = lt_pvseointerf
         PVSEOCOMPRI = lt_pvseocompri
         PPOOL_SOURCE = lt_ppool_source
         PSOURCE = lt_psource
         PTRDIR = lt_ptrdir
         PSMODILOG = lt_psmodilog
         PSMODISRC = lt_psmodisrc
         PVSEOATTRIB = lt_pvseoattrib
         PVSEOMETHOD = lt_pvseomethod
         PVSEOEVENT = lt_pvseoevent
         PVSEOTYPE = lt_pvseotype
         PVSEOPARAM = lt_pvseoparam
         PVSEOEXCEP = lt_pvseoexcep
         PSEOALIASES = lt_pseoaliases
         PSEOTYPEPLS = lt_pseotypepls
    EXCEPTIONS
        INTERFACE_NOT_EXISTING = 1
        INTF_NOT_EXISTING = 2
        VERSION_NOT_FOUND = 3
. " INTF_GET_OBJECT




ABAP code using 7.40 inline data declarations to call FM INTF_GET_OBJECT

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 R3STATE FROM D010SINF INTO @DATA(ld_r3state).
DATA(ld_r3state) = 'A'.
 
 
 
 
 
 
 
 
 
 
 


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!