Thursday, January 23, 2025

Business Classification in Oracle Supplier R12 - POS_BUSINESS_CLASSIFICATIONS

Query:
SELECT * 
  FROM fnd_lookup_values_vl flv
 WHERE lookup_type = 'POS_BUSINESS_CLASSIFICATIONS'
   AND flv.enabled_flag='Y' 
   --AND lookup_code = '8010'
   AND flv.start_date_active < sysdate 
   AND (flv.end_date_active > sysdate or flv.end_date_active is null) 


Application Developer->Application->Lookups->Application Object Library 

Query Type with POS_BUSINESS_CLASSIFICATIONS

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