SAP SEL_DBPROCEDURES_ADA Function Module for
SEL_DBPROCEDURES_ADA is a standard sel dbprocedures ada 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 dbprocedures ada FM, simply by entering the name SEL_DBPROCEDURES_ADA 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_DBPROCEDURES_ADA 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_DBPROCEDURES_ADA'".
EXPORTING
* CON_NAME = "Logical Name for a Database Connection
* TAB_COL = "
* PAKET = "Name of Package from which Procedure Was Loaded
* OWNER = "SAP DB User Name
TABLES
DBPROCEDURES = "DB Procedures: SAP DB (liveCache)
EXCEPTIONS
NO_CONNECTION = 1 GET_DB_INFO_FAILED = 2
IMPORTING Parameters details for SEL_DBPROCEDURES_ADA
CON_NAME - Logical Name for a Database Connection
Data type: DBCON_NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
TAB_COL -
Data type: CHAR32Optional: Yes
Call by Reference: No ( called with pass by value option)
PAKET - Name of Package from which Procedure Was Loaded
Data type: DBPROC_SDB-PACK_DLLOptional: Yes
Call by Reference: No ( called with pass by value option)
OWNER - SAP DB User Name
Data type: DBPROC_SDB-USERNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SEL_DBPROCEDURES_ADA
DBPROCEDURES - DB Procedures: SAP DB (liveCache)
Data type: DBPROC_SDBOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_CONNECTION - No Connection
Data type:Optional: No
Call by Reference: Yes
GET_DB_INFO_FAILED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SEL_DBPROCEDURES_ADA 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_con_name | TYPE DBCON_NAME, " | |||
| lt_dbprocedures | TYPE STANDARD TABLE OF DBPROC_SDB, " | |||
| lv_no_connection | TYPE DBPROC_SDB, " | |||
| lv_tab_col | TYPE CHAR32, " | |||
| lv_get_db_info_failed | TYPE CHAR32, " | |||
| lv_paket | TYPE DBPROC_SDB-PACK_DLL, " | |||
| lv_owner | TYPE DBPROC_SDB-USERNAME. " |
|   CALL FUNCTION 'SEL_DBPROCEDURES_ADA' " |
| EXPORTING | ||
| CON_NAME | = lv_con_name | |
| TAB_COL | = lv_tab_col | |
| PAKET | = lv_paket | |
| OWNER | = lv_owner | |
| TABLES | ||
| DBPROCEDURES | = lt_dbprocedures | |
| EXCEPTIONS | ||
| NO_CONNECTION = 1 | ||
| GET_DB_INFO_FAILED = 2 | ||
| . " SEL_DBPROCEDURES_ADA | ||
ABAP code using 7.40 inline data declarations to call FM SEL_DBPROCEDURES_ADA
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 PACK_DLL FROM DBPROC_SDB INTO @DATA(ld_paket). | ||||
| "SELECT single USERNAME FROM DBPROC_SDB INTO @DATA(ld_owner). | ||||
Search for further information about these or an SAP related objects