Get Started with Redwood for Oracle Cloud HCM Begin Now
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.
Subqueries in Logical SQL
Summary
I've probably failed at some simple syntax..Content
Attempting to build some fairly complex queries using Logical SQL Analysis in OTBI.
This query:
SELECT
"Worker"."Person Number",
"Worker"."Employee List Name",
"Worker"."Person Type"
FROM "Workforce Management - Worker Assignment Real Time"
Does exactly what you'd expect
This query:
SELECT
A.PerNum,
A.EmpName,
A.PerType
FROM
(
SELECT
"Worker"."Person Number" PerNum,
"Worker"."Employee List Name" EmpName,
"Worker"."Person Type" PerType
FROM "Workforce Management - Worker Assignment Real Time"
) A
Throws the following error:
View Display Error
Error generating view. Error getting cursor in GenerateHead
Error Details
Error Codes:
Tagged:
1