Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Help w/ counts in QuickViewer

Former Member
0 Likes
551

I hate QuickViewer...But, it's all I have right now.

I can NOT figure out how to consistently create count columns. I've had them work a couple times (seemingly at random), and I'm trying to make a few of them for a fairly simple query but my layout never even shows them as available columns. Is there some sort of trick to this? I've spent way too long trying to figure this out.

I'm layout mode... I drag the fields I want to count to the count toolbar. I select the sort fields and check the "display counting" option. I execute and... no counts anywhere!

I hate QuickViewer...But, it's all I have right now.

I can NOT figure out how to consistently create count columns. I've had them work a couple times (seemingly at random), and I'm trying to make a few of them for a fairly simple query but my layout never even shows them as available columns. Is there some sort of trick to this? I've spent way too long trying to figure this out.

I'm layout mode... I drag the fields I want to count to the count toolbar. I select the sort fields and check the "display counting" option. I execute and... no counts anywhere!

2 REPLIES 2
Read only

Former Member
0 Likes
521

This program allows you to count how many

Fields has a DB Table.

TABLES: dd03l.

DATA: count(3) TYPE n.

SELECT SINGLE COUNT(*) INTO count

FROM dd03l

WHERE tabname = 'PLPO'.

write: count.

Read only

0 Likes
521

I don't follow...