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 have to display an invoice residing in OnBase from a link in my WebFOCUS report. The column is InvoiceImage. The problem is OnBase is expecting the exact URL, which includes several fields with ampersands (&) in their names. I tried &|clienttype and a couple different other methods.
The second drill is an example of a working link to PeopleSoft from PO_ID, so I know my syntax isn't too far off for the InvoiceImage drilldown.
Any ideas?
TYPE=DATA,
COLUMN=InvoiceImage,
COLOR='PURPLE',
ALT='Link to OnBase',
TARGET='_blank',
URL=http://ONBASE-WEBTEST.fhcrc.org/Val-ID/docpop/docpop.aspx?KT213_0_6_0=e1ea2fde9de249ac8582717d03639a4b&clienttype=html&keytype=,
$
TYPE=DATA,
COLUMN=PO_ID,
COLOR='BROWN',
ALT='Link to the PeopleSoft PO Inquiry report',
TARGET='_blank',
URL=https://pstfmsprd.fhcrc.org/psp/FMSPRD_newwin/EMPLOYEE/ERP/q/?( \
ICAction='ICQryNameURL=PUBLIC.FMS_PO_INQUIRY' \
BIND1= PO_ID ),
$
This message has been edited. Last edited by: FP Mod Chuck,
WebFOCUS 8.2.03 - Production WebFOCUS 8.2.04 - Sand Box Windows 2012 R2 Server HTML, PDF, Excel In FOCUS since 1980
Posts: 115 | Location: Seattle, WA | Registered: April 07, 2015
You might be able to create the string in a define and then use that defined field in your drill down. Something like this:
DEFINE FILE CAR
MY_URL/A300='http://ONBASE-WEBTEST.fhcrc.org/Val-ID/docpop/docpop.aspx?KT213_0_6_0=e1ea2fde9de249ac8582717d03639a4b'||'&'||'clienttype=html'||'&'||'keytype=';
END
TABLE FILE CAR
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
BY MY_URL
END
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015