Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Nesting Case statements?
Summary
Is it possible to nest Case statements in otbi?Content
I am working on a recurring report that requires me to classify people based on certain characteristics. I am wondering if it is possible to nest case statements. I'm trying to do something along these lines -- for specific individuals, they should be flagged as senior management, otherwise categorize them into different buckets using Business units. This is the syntax I'm using:
CASE "Worker"."Person Number"
WHEN '111111' THEN 'Sr Mgmt'
WHEN '222222' THEN 'Sr Mgmt'
WHEN '333333' THEN 'Sr Mgmt'
WHEN '444444' THEN 'Sr Mgmt'
0