2009 Jan 23 2:44 PM
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!
2009 Jan 26 10:38 AM
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.
2009 Jan 26 12:04 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |