Thursday, November 25, 2021

PO_HEADERS_ALL.TYPE_LOOKUP_CODE in Oracle APPS

SELECT lookup_type, lookup_code, meaning
  FROM fnd_lookup_values
 WHERE     1 = 1
       AND lookup_type = 'POO:DOCUMENT_TYPE'
       AND enabled_flag = 'Y'
       AND SYSDATE BETWEEN NVL (start_date_active, SYSDATE)
                       AND NVL (end_date_active, SYSDATE)

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...