Skip to Main Content

Apex 5.1 Badge list

jmaagMar 21 2017 — edited Mar 23 2017

running apex 5.1 trying to create badge list in the classic report

Used this query to get a badge list.

When it executes it creates a circle badge with line 9 and the word label under it and a badge with the count and the word value under it. Same for the union query.

What I was expecting is the value of the count in the badge and the word line 9 under the badge.

What am I missing here? In addition to this I'd like to create a link to another page.

is there a another/better way in apex 5.1 to do this?

pastedImage_0.png

--

select 'Line 9' Label,count(*) value from

jmaag.duplicate_rod_count

where

trunc(create_date)='16-mar-2017'

and decode(location_id,57,9,59,9,61,9,11)=9

union all

select 'Line 11' label,count(*) value from

jmaag.duplicate_rod_count

where

trunc(create_date)='16-mar-2017'

and decode(location_id,57,9,59,9,61,9,11)=11

This post has been answered by jmaag on Mar 23 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked due to inactivity on Apr 20 2017
Added on Mar 21 2017
12 comments
7,029 views