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.
HI, I have started seeing this strange issue. Active report is passing incorrect field to URL.
The only it works properly is when I remove "ON TABLE SET WEBVIEWER ON"
or have less than 10 fields before the field with URL.
Has anyone encountered such issue?
The code below passes a wrong field to URL
TABLE FILE CAR
SUM
CAR.BODY.RETAIL_COST
BY CAR.ORIGIN.COUNTRY AS '1'
BY CAR.BODY.BODYTYPE AS '2'
BY CAR.ORIGIN.COUNTRY AS '3'
BY CAR.BODY.BODYTYPE AS '4'
BY CAR.ORIGIN.COUNTRY AS '5'
BY CAR.BODY.BODYTYPE AS '6'
BY CAR.ORIGIN.COUNTRY AS '7'
BY CAR.BODY.BODYTYPE AS '8'
BY CAR.BODY.BODYTYPE AS '9'
BY CAR.ORIGIN.COUNTRY AS '10'
BY CAR.CARREC.MODEL AS '11'
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET WEBVIEWER ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
LINES-PER-PAGE=20,
$
TYPE=DATA,
COLUMN=MODEL,
URL=http://somepage/browse.aspx?( \
MODEL=MODEL \
),
TARGET='NEW',
$
ENDSTYLE
END
If I remove one of the field no matter which one it starts working
TABLE FILE CAR
SUM
CAR.BODY.RETAIL_COST
BY CAR.ORIGIN.COUNTRY AS '1'
BY CAR.BODY.BODYTYPE AS '2'
BY CAR.ORIGIN.COUNTRY AS '3'
BY CAR.BODY.BODYTYPE AS '4'
BY CAR.ORIGIN.COUNTRY AS '5'
BY CAR.BODY.BODYTYPE AS '6'
BY CAR.ORIGIN.COUNTRY AS '7'
BY CAR.BODY.BODYTYPE AS '8'
BY CAR.BODY.BODYTYPE AS '9'
-*BY CAR.ORIGIN.COUNTRY AS '10'
BY CAR.CARREC.MODEL AS '11'
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET WEBVIEWER ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=REPORT,
LINES-PER-PAGE=20,
$
TYPE=DATA,
COLUMN=MODEL,
URL=http://somepage/browse.aspx?( \
MODEL=MODEL \
),
TARGET='NEW',
$
ENDSTYLE
END
ThanksThis message has been edited. Last edited by: FP Mod Chuck,
WebFOCUS 8202M
Posts: 167 | Location: Montreal | Registered: September 23, 2014
But, you should read about WEBVIEWER - this is to create paged HTML rpeorts, and is not required for Active HTML reports, which are paged as a functionality of AHTML.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server