Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
207 views

SQL Query To Get The List of All HDL Objects

This SQL query selects various fields including the business object discriminator, file discriminator, processing order, user module name, and initialized module from the HRC_DL_BUSINESS_OBJECTS table and joins it with the Fnd_appl_taxonomy_vl table on the module ID field. It orders the results by the business object discriminator, processing order, and business object ID.

Uploaded by

Mugabe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
207 views

SQL Query To Get The List of All HDL Objects

This SQL query selects various fields including the business object discriminator, file discriminator, processing order, user module name, and initialized module from the HRC_DL_BUSINESS_OBJECTS table and joins it with the Fnd_appl_taxonomy_vl table on the module ID field. It orders the results by the business object discriminator, processing order, and business object ID.

Uploaded by

Mugabe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

select hdbo.bus_obj_top_discriminator, hdbo.

bus_obj_file_discriminator,
NVL(hdbo.processing_order, (select processing_order from HRC_DL_BUSINESS_OBJECTS
where business_object_id = parent_business_object_id)) processing_order,
fat.user_module_name,
initcap(substr(replace(BUSINESS_OBJECT_VO_FQ_NAME, 'oracle.apps.hcm.',''), 0,
instr(replace(BUSINESS_OBJECT_VO_FQ_NAME, 'oracle.apps.hcm.',''), '.')-1)) module
from HRC_DL_BUSINESS_OBJECTS hdbo, Fnd_appl_taxonomy_vl fat
where hdbo.module_id = fat.module_id
order by hdbo.bus_obj_top_discriminator, hdbo.processing_order,
hdbo.business_object_id

You might also like