Thursday, October 28, 2021

Query to list Job Names in Oracle APPS

SELECT name job_name 
      ,TO_CHAR (date_from, 'DD-MON-RRRR') date_from
  FROM per_jobs_vl
 WHERE TRUNC (creation_date) BETWEEN TO_DATE ('01-JAN-2020', 'DD-MON-YYYY')
                                 AND TO_DATE ('31-DEC-2021', 'DD-MON-YYYY')

No comments:

Post a Comment

currentAppUi built in variable in VBCS

$global.currentAppUi.id :- The id of the App UI $global.currentAppUi.urlId :-The id of the App UI as shown in the URL $global.currentAppUi.d...