Focal Point
Asterix appearing in the count.

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5471076322

April 16, 2007, 05:54 AM
Adolf Mergulhao
Asterix appearing in the count.
DEFINE FILE PROD_EDW3EM_INTERACTION_KANA
DIRECTION_1/A20=
DECODE DIRECTION ('O' 'Outbound' 'I' 'Inbound' 'F' 'F Direction' 'R' 'R Direction' 'T' 'T Direction'
ELSE 'Other');
TEST11/I6=EDIT(CHANNEL);
END
TABLE FILE PROD_EDW3EM_INTERACTION_KANA
COUNT
TEST11 AS 'COUNT,TEST1'
BY DIRECTION_1

I am getting the following
DIRECTION_1 COUNT
TEST1
F Direction 8
Inbound *****
Outbound 21272
R Direction 6733
How do I get the figures to appear, I have tried increasing the defined field.


Webfocus 7.6.2 on Windows Enterprise 2003 Server and
Webfocus 7.6.2 on HP Unix Server
April 16, 2007, 06:17 AM
Alan B
Use

COUNT FLD/I9 to increase the count variable length


Alan.
WF 7.705/8.007
April 16, 2007, 09:25 AM
Leah
quote:
Posted April 16, 2007 06:17 AM Hide Post
Use

COUNT FLD/I9 to increase the count variable length

Plus in addition to Alan's suggestion, if you are summing the information anywhere else, you may find '*' in the totals if the field is not defined large enough as well.


Leah
April 16, 2007, 09:56 AM
susannah
fyi, COUNT gives you an I5 field , by default




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
April 16, 2007, 11:38 AM
codermonkey
I add:
SET COUNTWIDTH = ON
to all my fexes. Changes the default on COUNT from I5 to I9.