Categories
- All Categories
- 76 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
Iam trying to schedule the report but the report is failing as soon as it is submitted with the
::JOB_WAIT_TIME_SECONDS{1.6}::JOB_EXECUTION_TIME_SECONDS{0}::JOB_PRIORITY_COLON_NORMAL::::JOB_PROCESSOR_EXCEPTION::[INSTANCE_ID=bip.bi_serverHA] [INSTANCE_JOB_ID=48064]::Error parsing report parameters :: REPORT=[/~931355/Self-Reflection/FY20 Self Reflection/Self Reflection Report FY20.xdo] INSTANCE_JOB_ID=[48064]::parameters:{"p_period_name":"300000494706466","P_TEMP_NAME":"FY20 Annual Self-Reflection","p_person_name":"*","Test":"Note: Click on "Apply" to run the report"}::com.google.gson.stream.MalformedJsonException: Unterminated object near ":"Note: Click on "Apply" to run the repcom.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object near ":"Note: Click on "Apply" to run the rep
at com.google.gson.Streams.parse(Streams.java:51)
at com::[INSTANCE_ID=bip.bi_serverHA]
Can any one suggest the solution
Answers
-
Hi,
You were maybe a bit too focused on trying to find a fix for your issue when posting.
You could maybe start with a minimum of context, things like a product name and version (it is by far not an implicit thing) etc.
Just a random piece of an error message isn't really going to get you much other than random guesses.
0 -
What could be the issue causing this above error
0 -
Something...
Again, as I posted above:
You could maybe start with a minimum of context, things like a product name and version (it is by far not an implicit thing) etc.
Just a random piece of an error message isn't really going to get you much other than random guesses.
0 -
The error appears to be literally:
com.google.gson.stream.MalformedJsonException: Unterminated object near ":"Note: Click on "Apply" to run the repcom.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object near ":"Note: Click on "Apply"
At quick glance it looks like you messed up the string parsing with a colon unexpectedly?
":"Note: Click on "Apply"
No idea what gson is. Is this something oracle is using in OracleAnalyticsCloud? or something you wrote custom in a dashboard?
https://stackoverflow.com/questions/11484353/gson-throws-malformedjsonexception
GSON throws that particular error when there's extra characters after the end of the object that aren't whitespace, and it defines whitespace very narrowly (as the JSON spec does) - only
\t
,\n
,\r
, and space count as whitespace. In particular, note that trailing NUL (\0
) characters do not count as whitespace and will cause this error.0