Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 213 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OTBI Time Series function error

Hi
Does anyone know why the OTBI function AGO("Assignment Event"."# Of Hires", "Time"."Month",1) does not work and give the error:
Formula syntax is invalid.
[nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27037] Unresolved level: "Time"."Time"."Month". (HY000)
SQL Issued: SELECT AGO("Assignment Event"."# Of Hires", "Time"."Time"."Month",1) FROM "Workforce Management - Worker Assignment Event Real Time"
Answers
-
User618255-OC wrote:[nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27037] Unresolved level: "Time"."Time"."Month". (HY000)
Is your level really "Time"."Time"."Month"?
The level's fully qualified name must be correct, then the formula will work perfectly fine:
0 -
Hi Christian
Thanks for the reply.
I tried AGO("Assignment Event"."# Of Hires", "Time"."Month",1)
and AGO("Assignment Event"."# Of Hires", "Time"."Time"."Month",1)
and both of them did not work. The error message is a bit of a mix-up.
Do you have the syntax that works?
thanks
Abhishek
0 -
Oh and the time hierarchy does not come up when you are writing the formula. It is there in the subject area but does not show up when you are in the formula box
0 -
Your formula is syntactically correct. A little trick you can use to see the actual names is to pull in the hierarchical column into a blank analysis, open it down to the level you want and then check the XML:
<saw:report xmlns:saw="com.siebel.analytics.web/report/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlVersion="201201160" xmlns:sawx="com.siebel.analytics.web/expression/v1.1"> <saw:criteria xsi:type="saw:simpleCriteria" subjectArea=""PC0""> <saw:columns> <saw:column xsi:type="saw:hierarchicalColumn" hierarchyID="Time" tableName=""Time"" dimensionID="Time" columnID="c50b56d07a0a51dbf"> <saw:hierarchyLevels> <saw:hierarchyLevel levelID="Total"/> <saw:hierarchyLevel levelID="Year"/> <saw:hierarchyLevel levelID="Quarter"/> <saw:hierarchyLevel levelID="Month"/> <saw:hierarchyLevel levelID="Day"/></saw:hierarchyLevels></saw:column></saw:columns></saw:criteria>
0 -
Other "trick" is to expand it in the left-panel when you can select columns to add to your analysis and then edit the formula of your column and move the edit window enough on the right to still see in the background the expanded hierarchy so you clearly see the names of the levels (table name, hierarchy name, level name).
0 -
I will check these and let you know the results, thank you
0