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.
We used to have a variable, displayable using either “-? &” or “-? &&”, which contains the environment, prod or dev, before we went to the latest 8202M. The question is: How do we get it back?
I can use &EXCELSERVURL even though it doesn't show up in “-? &”, it's available.This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
Those still work in my 8202M environment. However, they seem incomplete. So I have created a fex to query the sysset master file.
TABLE FILE sysset
PRINT
SETVALTYPE
SETMAXLEN AS 'Max,Length/,Value'
SETFPROMPT AS 'From,PROMPT'
SETFTAB AS 'From,TABLE'
SETFPARMS AS 'From,PARAMS'
VALUE AS 'Available,Values'
VALDESC
CURR_VALUE
IS_DEFAULT
BY SETNAME
BY SETDESC
BY SERVDESC
WHERE SETNAME CONTAINS '&';
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET BYDISPLAY OFF
ON TABLE SET NODATA ''
ON TABLE SET STYLE *
INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty,$
TYPE=REPORT, LINES-PER-PAGE=UNLIMITED, $
ENDSTYLE
END
Although, this list still seems incomplete.
For example &DATEHHMIA is not included in that query, but if you have this code:
-TYPE &|DATEHHIA: &DATEHHIA
It will return the time of day in AM/PM format.This message has been edited. Last edited by: Hallway,
Hallway
Prod: 8202M1
Test: 8202M4
Repository:
OS:
Outputs:
Posts: 608 | Location: Salt Lake City, UT, USA | Registered: November 18, 2015
1) We can use "-SET &HOSTNAME=FGETENV(20,'COMPUTERNAME',20,A20);" with caution. That is, keep track of where it's used as WebFOCUS is moved to another server and the hostname changes?
2) The use of "&EXCELSERVURL" as mentioned earlier. But, that comes with the risk of it being blanked out to 'fix' some Excel issues.
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005