Welcome

Welcome to HandsonERP.com

This site provides video based training of Oracle Financials.
Learn concepts and functionality in a step by step manner.

Login

HandsonERP - Oracle E-Business Suite Training
Welcome, Guest
Please Login or Register.    Lost Password?
Please post inquiries related to lessons content here. All questions and inquiries related to the website should be submitted directly using Contact form in the top menu.
Go to bottom Post Reply Favoured: 0
TOPIC: Re:data loader
#3471
handsonerp (Admin)
Admin
Posts: 1989
graph
User Offline Click here to see the profile of this user
Re:data loader 11 Years, 9 Months ago  
The account segment values reside in fnd_flex_values table. Translated descriptions reside in fnd_flex_values_tl table. For each record in fnd_flex_values you will have one record in fnd_flex_values_tl per installed language.
The account type could be found in the column compiled_value_attributes in table fnd_flex_values.
The fnd_flex_values table contains values for all value sets. So you will have to join this table with fnd_flex_value_sets to filter the values belonging to a particular value set.
Here is a sample SQL you could use:

SELECT FLEX_VALUE "Account",
SUBSTR(FV.COMPILED_VALUE_ATTRIBUTES,5,1)"Acc Type",
DESCRIPTION "Description"
FROM FND_FLEX_VALUES a, FND_FLEX_VALUES_TL b,
FND_FLEX_VALUE_SETS c
WHERE a.FLEX_VALUE_ID = b.FLEX_VALUE_ID
AND a.FLEX_VALUE_SET_ID = b.FLEX_VALUE_SET_ID
AND b.FLEX_VALUE_SET_NAME = 'HOE Account'
--- Replace it with your value set name

I have not tested this sql as I wrote it on the fly, but it should work fine.
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
      Topics Author Date
    thread link
data loader
jgood 2012/07/28 09:12
    thread link
thread linkthread link Re:data loader
handsonerp 2012/07/30 23:59
    thread link
thread linkthread link Re:data loader
jgood 2012/08/03 09:37
    thread link
thread linkthread linkthread link Re:data loader
handsonerp 2012/08/06 04:43
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop