As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I am building an Accordian Report and am trying to represent a fraction in this form: "Numerator" "/" "Denominator" (example: 8/8, 3/10, 1/2 etc). I am not trying to do an operation. How do I display both numerator and denominator in the same field? I am working with extratcs from a SQLOUT query.
Here is an example:
ENGINE SQLMSS SET DEFAULT_CONNECTION DATABASE
SQL SQLMSS PREPARE SQLOUT FOR
................SQL Code..................
END
DEFINE FILE SQLOUT
a/A3=Numerator;
b/A3=Denominator;
c/A1='/';
abc/A7= a | c | b;
END
TABLE FILE SQLOUT
SUM
Total
BY
Country
Print
Sub-Total
abc AS 'ABC'
BY City
END
HEADING
" "
"Accordian Report"
" "
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET EXPANDABLE ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
Are the numerator and denominator decimal values or alphanumeric? If they are decimal values then your code will not work. You will need convert from decimal to alphanumeric. I tried a sample using the CAR file and it worked. The code is below.
DEFINE FILE CAR
NUM/A3='3';
DNUM/A3='4';
SYMBOL/A1='/';
END
TABLE FILE CAR
PRINT
'CAR.COMP.CAR'
'CAR.CARREC.MODEL'
COMPUTE WHOLEFRAC/A7 = NUM | SYMBOL | DNUM;
BY 'CAR.ORIGIN.COUNTRY'
END
If the numerator and denominator values are decimal you might want to try the following.
DEFINE FILE SQLOUT
NUM/A3=EDIT(NUMERATOR,'999');
DNUM/A3=EDIT(DENOMINATOR,'999');
SYMBOL/A1='/';
END
I hope this helps.
Dave
WebFOCUS 7.7.03 Windows Web Server 2008 MS SQL Server 2000 Excel,CSV,PDF,HTML
Posts: 71 | Location: Kingston, ON | Registered: May 03, 2011
When working with multi-set requests as your example does, you'll need to repeat all previous sort phrases. Your example should read:
TABLE FILE SQLOUT
SUM Total
BY Country
Print Sub-Total
abc AS 'ABC'
BY Country
BY City
HEADING
" "
"Accordian Report"
" "
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET EXPANDABLE ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
Maybe that helps ...
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
dburton, I used your second example because the fields are decimals:
quote:
DEFINE FILE SQLOUT NUM/A3=EDIT(NUMERATOR,'999'); DNUM/A3=EDIT(DENOMINATOR,'999'); SYMBOL/A1='/'; END
But the problem is I get "000/000" as outputs for the computed "fraction" field. I get the SUM of the NUMERATORfield and the SUM of the DENOMINATORfield, but I get "000/000" outputs for the "fraction" field. Any idea how I can get the SUM of the "NUMERATORfield" + "/" + "the SUM of the DENOMINATORfield" in the likes of (9/10, 2/8, 6/7 etc)? Here is Code I used:
DEFINE FILE SQLOUT
a/A3=EDIT(NUMERATORfield,'999');
b/A3=EDIT(DENOMINATORfield,'999');
c/A1='/';
END
TABLE FILE SQLOUT
SUM
NUMERATORfield AS 'field1'
DENOMINATORfield AS 'field2'
COMPUTE fraction/A7 = a|c|b;
BY LOWEST COUNTRY
SUM
NUMERATORfield AS 'field1'
DENOMINATORfield AS 'field2'
COMPUTE fraction/A7 = a | c | b;
BY LOWEST COUNTRY
BY LOWEST CITY
PRINT
This message has been edited. Last edited by: H8K,
I get "000/000" as outputs for the computed "fraction" field
That leads to the assumption that both fields have a numeric format that is more than 3 positions. If you use EDIT for an integer field, it will produce output with leading zeroes. But, from your code it seems that both fields already are alphanumeric. However, you do a SUM for them which apparently produces correct output. Hmmm. Something is defenitely not correct here. I'd first check to see what format the NUMERATORfield and DENOMINATORfield have. Then, use the edit statement as you already have it if the formats are A, but be sure to copy the correct positions; or if the formats are I, use EDIT(EDIT(field),'mask'); but if the formats are D use EDIT(FTOA(...),'mask').
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
The reason that you are getting 0 is because you are only picking up the first 3 digits of the amount fields, which are ussualy 0. You should change your defines to pick up the last 3 digits. This can be done several ways. The easiest is to put '$' in front of the define for each digit you are bypassing. There are many other ways of doing this.
WF 7.6.11 Oracle WebSphere Windows NT-5.2 x86 32bit
Originally posted by RSquared: The reason that you are getting 0 is because you are only picking up the first 3 digits of the amount fields, which are ussualy 0. You should change your defines to pick up the last 3 digits. This can be done several ways. The easiest is to put '$' in front of the define for each digit you are bypassing. There are many other ways of doing this.
This is correct. You need to adjust the length of your fields depending on the length of the NUMERATOR and DENOMINATOR. If each of the decimal fields are D12 then your alpha fields need to be the same. Sample below.
DEFINE FILE SQLOUT
NUM/A12=EDIT(NUMERATOR,'$$$$$$$$$999');
DNUM/A12=EDIT(DENOMINATOR,'$$$$$$$$$999');
SYMBOL/A1='/';
END
WebFOCUS 7.7.03 Windows Web Server 2008 MS SQL Server 2000 Excel,CSV,PDF,HTML
Posts: 71 | Location: Kingston, ON | Registered: May 03, 2011