Entering content frame

Background documentation DBPROCEDURES Locate the document in its SAP Library structure

Using the system table DBPROCEDURES, you can determine the following database information, among other things:

All database procedures and their comments generated in the last 10 days
SELECT owner, dbprocname, comment
  FROM DOMAIN.DBPROCEDURES
    WHERE createdate >= subdate(date,10)

Note

Parameters of a database procedure: see DBPROCPARAMS

 

Leaving content frame