Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

OracleJET data densification 5.1.3 (thru 18.1)

Scott WesleyJan 16 2018 — edited Mar 20 2018

G'day all,

After reading Hilary's comments in these posts, I was a little surprised to find us struggling with data densification behaviour in 5.1.3.

(I was looking forward to not including outer joins to small sets of months)

Oracle APEX 5.1 stacked bar chart

The release notes in both 5.1.3 and 5.1.4 state the following

8.1.4 JET Chart Data Densification

Oracle JET requires that each series of a multi-series chart contains a data point for each label that is represented on the x-axis. Otherwise, the multi-series chart may not render correctly by Oracle JET. Prior to release 5.1.3, the user was required to handle the densification of their data in their chart SQL query to ensure that each series had the same number of data points, even if they were null or zero. Oracle Application Express release 5.1.3 now includes support to automatically fill in gaps, injecting missing data points for multi-series charts.

I created the following tables, where sales is complete for the year, and budget only has data for the last half of the calendar year (lucky it's january)

create table data_sales as

select adD_months(trunc(sysdate,'mm'),-rownum) mth, round(dbms_random.value(70,100)) val

from dual connect by level <= 12;

create table data_budget as

select adD_months(trunc(sysdate,'mm'),-rownum) mth, round(dbms_random.value(70,100)) val

from dual connect by level <= 6;

select * from data_budget

pastedImage_7.png

Then I create region

Region Type: Chart

Type: Line

Time Axis Type: Enabled

And add the SQL for the two series

pastedImage_10.png

Here is the result in 5.1.4 - as expected

pastedImage_6.png

And in 5.1.3, the months in the second series have been erroneously transposed.

pastedImage_5.png

Reversing the series in 5.1.4 is fine, but in 5.1.3 it's... demon spawn.

pastedImage_8.png

We certainly need to get our ordering right.

Is the fix in 5.1.3 or 5.1.4?

Or have I missed something.

Cheers

edit: changed subject to include 18.1

Comments

user7417334
If you re-create the join with the exact name / identifier you can still open the workbook without any problem.
Make sure it is similar join which was deleted.
dianap
Thanks for the feedback.

The thing is I don't know the exact identifier anymore of the deleted joins.

Regards,
Diana
user7417334
Do you have any other instance, where you can find the identifier for the same join ?
dianap
No :(
user13716376
There is a workbook DUMP utility that will have a section that will show the EXACT name of the join for updating .. then the the workbook will open
dianap
Thanks,

Where is this workbook DUMP utility?

Diana
dianap
Hi,

After some search, I found how the dump works.
So I executed this.

For some joins, it's showing that the name has been changed:
Example:
*** Found in EUL by id *** Name has changed to r_area_well.r_area_s 1
So now I changed the name of the joins in the BA to the naming showing in the file ( for this example: r_area_well.r_area_s 1).

But still the workbook will not open. It keeps giving the item dependency not found error.

Diana
user7417334
I guess this time its looking for another item and identifier which might have been deleted. More investigation needs to continue
1 - 8
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 17 2018
Added on Jan 16 2018
7 comments
3,081 views