Categories
- All Categories
- 75 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 59 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
Custom SQL in OTBI report
Hello,
I have the following problem. I would like to have the signing authorities in a OTBI report; the main issue is that I have the codes but not the meanings (I've been told that is stored in FND_LOOKUP_VALUES with particular lookup type). So my approach was basically add a new column that contains a CASE where I do the mapping code - > meaning; and is working fine:
CASEWHEN " "." " = aTHEN 'asdf'
WHEN " "." " = bTHEN 'ñlkj'
...
ELSE '' END
(I do not add the data and fields and values due to confidenciality stuff).
The issue I have now, is that the client is not fine with this approach, and wants to do it in another way; what I thought is basically add a query, but I have no idea how this table is mapped in OTBI: FND_LOOKUP_VALUES, so I can add a new column with the following query:
select meaning from FND_LOOKUP_VALUES where lookup_type='asdf'
Any hint or suggestion, will be welcome.
Kind regards.
Answers
-
Hi
Please review the given OTBI LIneage mapping documentation link details.https://community.oracle.com
HCM
=====
SCM
====
FSCM=======
Filter the data based on the database object(FND_LOOKUP_VALUES) and identify the OTBI subject area presentation column details.
0