|
|
|
|
|
Re: List of KeyFlexfields in Oracle Apps [message #209181 is a reply to message #209128] |
Wed, 13 December 2006 11:10 |
adragnes
Messages: 241 Registered: February 2005 Location: Oslo, Norway
|
Senior Member |
|
|
Sanjay,
The query below will return all key flexfields defined in your instance of the Oracle E-Business Suite:
SELECT fa.application_short_name
, fat.application_name
, fif.id_flex_code
, fif.id_flex_name
FROM fnd_id_flexs fif
JOIN fnd_application fa
ON fa.application_id = fif.application_id
JOIN fnd_application_tl fat
ON fat.application_id = fa.application_id
WHERE fat.language = 'US'
ORDER BY fat.application_name
, fif.id_flex_name;
The result is as follows:
- Assets: Asset Key Flexfield
- Assets: Category Flexfield
- Assets: Location Flexfield
- Capital Resource Logistics - Assets: Group Asset
- Capital Resource Logistics - Assets: Super Group
- Common Modules-AK: FWK Item Flexfield
- Complex Maintenance Repair and Overhaul: AHL Operation
- Complex Maintenance Repair and Overhaul: AHL Route
- Financial Intelligence: Management Flexfield
- General Ledger: Accounting Flexfield
- General Ledger: Reporting Attributes:Accountin
- Human Resources: CAGR Flexfield
- Human Resources: Competence Flexfield
- Human Resources: Grade Flexfield
- Human Resources: Item Contexts Keyflex
- Human Resources: Job Flexfield
- Human Resources: Personal Analysis Flexfield
- Human Resources: Position Flexfield
- Human Resources: Soft Coded KeyFlexfield
- Inventory: Account Aliases
- Inventory: Item Catalogs
- Inventory: Item Categories
- Inventory: Sales Orders
- Inventory: Service Items
- Inventory: Stock Locators
- Inventory: System Items
- Learning Management: Training Resources
- Payroll: Bank Details KeyFlexField
- Payroll: Cost Allocation Flexfield
- Payroll: People Group Flexfield
- Public Sector Budgeting: PSB Position Flexfield
- Receivables: ARTA-Receipt Prof Ident
- Receivables: Sales Tax Location Flexfield
- Receivables: Territory Flexfield
--
Aleksander Dragnes
|
|
|
|