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.
Is it possible to create a compound document report with 4 procedures and all output at one sheet? I am able to create it but with 4 sheets. One to each report.
ThanksThis message has been edited. Last edited by: Ricardo Augusto,
WebFOCUS 8.1.05 / APP Studio
Posts: 272 | Location: Brazil | Registered: October 31, 2006
SET NODATA = 0
SET COMPMISS = ON
-* File: IBFS:/localhost/EDA/EDASERVE/APPPATH/ibisamp/exemplos/Report1.fex Created by WebFOCUS AppStudio
TABLE FILE CAR
SUM
CAR.BODY.SALES/D12C
RANKED BY LOWEST CAR.COMP.CAR
ACROSS LOWEST CAR.ORIGIN.COUNTRY AS ''
ON CAR.COMP.CAR NOSPLIT
ON TABLE SUBHEAD
"Sales Analysis"
ON TABLE SUBFOOT
"Powered by WebFOCUS"
"&DATEtrMDYY <+0> &TOD"
" "
ON TABLE SET PAGE-NUM OFF
ON TABLE SET ASNAMES ON
ON TABLE SET POPUPDESC ON
ON TABLE ROW-TOTAL AS 'TOTAL'
ON TABLE COLUMN-TOTAL AS 'TOTAL'
ON TABLE PCHOLD FORMAT XLSX
ON TABLE SET XLSXPAGESETS ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
PAGESIZE='A4',
LEFTMARGIN=0.000000,
RIGHTMARGIN=0.000000,
TOPMARGIN=0.000000,
BOTTOMMARGIN=0.000000,
ORIENTATION=LANDSCAPE,
$
TYPE=DATA,
COLUMN=ROWTOTAL(1),
STYLE=BOLD,
$
TYPE=DATA,
COLUMN=ROWTOTAL(*),
STYLE=BOLD,
$
TYPE=TITLE,
COLUMN=ROWTOTAL(1),
STYLE=BOLD,
$
TYPE=TABFOOTING,
SIZE=10,
STYLE=BOLD+ITALIC,
JUSTIFY=CENTER,
$
TYPE=ACROSSVALUE,
ACROSS=1,
COLUMN=ROWTOTAL(1),
STYLE=-UNDERLINE+BOLD,
$
ENDSTYLE
END
report2:
-* File: IBFS:/localhost/EDA/EDASERVE/APPPATH/ibisamp/exemplos/Report1.fex Created by WebFOCUS AppStudio
TABLE FILE CAR
SUM
CAR.BODY.DEALER_COST
CAR.BODY.RETAIL_COST
CAR.BODY.SALES
BY CAR.CARREC.MODEL
ON TABLE SUBHEAD
"Sales by Model"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE COLUMN-TOTAL AS 'TOTAL'
ON TABLE PCHOLD FORMAT XLSX
ON TABLE SET XLSXPAGESETS ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
compound:
[CODE]
-* Default Mode: ResourceLayout
SET HTMLARCHIVE=ON
SET COMPOUND = NOBREAK
*-HOLD_SOURCE
COMPOUND LAYOUT PCHOLD FORMAT EXL2K
UNITS=CM, $
SECTION=section1, LAYOUT=ON, METADATA='prop_with_names^Margins_Left=0.5^Margins_Top=0.5^Margins_Right=0.5^Margins_Bottom=0.5^thumbnailscale=4', MERGE=OFF, ORIENTATION=LANDSCAPE, PAGESIZE=A4, SHOW_GLOBALFILTER=OFF, $
PAGELAYOUT=1, NAME='Page layout 1', text='Page layout 1', TOC-LEVEL=1, BOTTOMMARGIN=0.5, TOPMARGIN=0.5, METADATA='BOTTOMMARGIN=0.5,TOPMARGIN=0.5,LEFTMARGIN=0,RIGHTMARGIN=0,', $
COMPONENT='report1', TEXT='report1', TOC-LEVEL=2, POSITION=(1.531 0.000), DIMENSION=(17.659 8.265), BYTOC=0, ARREPORTSIZE=DIMENSION, METADATA='left: 1.531cm; top: 0cm; width: 17.659cm; height: 8.265cm; position: absolute; z-index: 1;', $
COMPONENT='report2', TEXT='report2', TOC-LEVEL=2, POSITION=(1.005 8.731), DIMENSION=(27.781 11.642), BYTOC=0, ARREPORTSIZE=DIMENSION, METADATA='left: 1.005cm; top: 8.731cm; width: 27.781cm; height: 11.642cm; position: absolute; z-index: 2;', $
END
SET COMPONENT='report1'
-*component_type report
-INCLUDE sales_by_country.fex
SET COMPONENT='report2'
-*component_type report
-INCLUDE sales_by_models.fex
COMPOUND END
[/CODE]
WebFOCUS 8.1.05 / APP Studio
Posts: 272 | Location: Brazil | Registered: October 31, 2006