What Tables Store Application Engine SQL and PeopleCode?
SELECT * FROM PSPCMPROG WHERE OBJECTVALUE7 LIKE 'OnExecute%'
PSSQLTEXTDEFN
Contains all SQL objects in the database. The following SELECT will show all entries for AE programs.
SELECT * FROM PSSQLTEXTDEFN WHERE SQLID like '%Step%'
The following SQL will show the program name, last update time, and last user to update the program.
SELECT AE_APPLID, LASTUPDOPRID, LASTUPDDTTM FROM PSAEAPPLDEFN ORDER BY LASTUPDDTTM
Comments
Post a Comment