SAP SEL_INTERNAL_STATE_SDB Function Module for
SEL_INTERNAL_STATE_SDB is a standard sel internal state sdb 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 sel internal state sdb FM, simply by entering the name SEL_INTERNAL_STATE_SDB into the relevant SAP transaction such as SE37 or SE38.
Function Group: SADB
Program Name: SAPLSADB
Main Program: SAPLSADB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function SEL_INTERNAL_STATE_SDB 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 'SEL_INTERNAL_STATE_SDB'".
EXPORTING
* CON_NAME = "Logical Name for a Database Connection
* COMPO = "SAP DB: COMPONENT from sysdba.internal_state
* CASE_SENSITIVE = "Single-Character Flag
TABLES
ISTATE = "SAP DB: Structure for sysdba.internal_state
EXCEPTIONS
NO_CONNECTION = 1 TABLE_NOT_FOUND = 2 NO_ENTRY_FOUND = 3 GET_DB_INFO_FAILED = 4 KERNEL_VERSION_NOT_SUPPORTED = 5
IMPORTING Parameters details for SEL_INTERNAL_STATE_SDB
CON_NAME - Logical Name for a Database Connection
Data type: DBCON_NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
COMPO - SAP DB: COMPONENT from sysdba.internal_state
Data type: SDB_ISCOMPOptional: Yes
Call by Reference: No ( called with pass by value option)
CASE_SENSITIVE - Single-Character Flag
Data type: CHAR1Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SEL_INTERNAL_STATE_SDB
ISTATE - SAP DB: Structure for sysdba.internal_state
Data type: SDB_ISTATEOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_CONNECTION - No Connection
Data type:Optional: No
Call by Reference: Yes
TABLE_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
NO_ENTRY_FOUND -
Data type:Optional: No
Call by Reference: Yes
GET_DB_INFO_FAILED -
Data type:Optional: No
Call by Reference: Yes
KERNEL_VERSION_NOT_SUPPORTED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SEL_INTERNAL_STATE_SDB 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: | ||||
| lt_istate | TYPE STANDARD TABLE OF SDB_ISTATE, " | |||
| lv_con_name | TYPE DBCON_NAME, " | |||
| lv_no_connection | TYPE DBCON_NAME, " | |||
| lv_compo | TYPE SDB_ISCOMP, " | |||
| lv_table_not_found | TYPE SDB_ISCOMP, " | |||
| lv_case_sensitive | TYPE CHAR1, " | |||
| lv_no_entry_found | TYPE CHAR1, " | |||
| lv_get_db_info_failed | TYPE CHAR1, " | |||
| lv_kernel_version_not_supported | TYPE CHAR1. " |
|   CALL FUNCTION 'SEL_INTERNAL_STATE_SDB' " |
| EXPORTING | ||
| CON_NAME | = lv_con_name | |
| COMPO | = lv_compo | |
| CASE_SENSITIVE | = lv_case_sensitive | |
| TABLES | ||
| ISTATE | = lt_istate | |
| EXCEPTIONS | ||
| NO_CONNECTION = 1 | ||
| TABLE_NOT_FOUND = 2 | ||
| NO_ENTRY_FOUND = 3 | ||
| GET_DB_INFO_FAILED = 4 | ||
| KERNEL_VERSION_NOT_SUPPORTED = 5 | ||
| . " SEL_INTERNAL_STATE_SDB | ||
ABAP code using 7.40 inline data declarations to call FM SEL_INTERNAL_STATE_SDB
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