Categories
- All Categories
- Oracle Analytics Learning Hub
- 30 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 238 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 88 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE Prompt Limit value through SQL script
I want to create the script (Within prompt )so that I can limit the values of employee location name as per employee location country. I have created the below mentioned script however the script populate the country name instead of limiting location name as per country.
SELECT Distinct"Employee Location"."Employee
Location Name" FROM "Human Resources - Workforce Profile" where "Employee
Location"."Employee Location Country Name " IN (SELECT
"Employee Location"."Employee Location Country Name" FROM
"Human Resources - Workforce Profile")FETCH FIRST 65001 ROWS
ONLY
Answers
-
Things like this normally go into Data Filters in the RPD so that they're reusable:
0