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 need my date time fields to have a T between date and time yyyy-mm-ddThh:mm:ss.
Example: 2016-04-01T13:45:23
I found a T separator option in the Help file: - T applies the letter “T” as the separator. Note: The T separator option is available for DateTime field formats (which is the U separator in the Master File), and enables recognition and output of the ISO standard format, where T is the delimiter between date and time.
I don't understand how to get it to work. Anyone use this before?This message has been edited. Last edited by: Mikey,
Try putting a 'U' between the date and time format components, and setting DTSTANDARD:
SET DTSTANDARD = ON
SET PAGE = OFF
DEFINE FILE CAR
-* Create a field in DATE-TIME Format.
MIKEY/HYYMDS = DT(2005 DEC 26 05:45);
-* Convert format.
LIFECEREAL/HYYMDUS = MIKEY;
END
TABLE FILE CAR
PRINT CAR NOPRINT
MIKEY
LIFECEREAL
IF RECORDLIMIT EQ 1
ON TABLE SET STYLEMODE FIXED
END
SET DTSTANDARD = ON SET PAGE = OFF DEFINE FILE CAR -* Create a field in DATE-TIME Format. MIKEY/HYYMDS = DT(2005 DEC 26 05:45); -* Convert format. LIFECEREAL/HYYMDUS = MIKEY; END TABLE FILE CAR PRINT CAR NOPRINT MIKEY LIFECEREAL IF RECORDLIMIT EQ 1 ON TABLE SET STYLEMODE FIXED END
- FOCUS Man, just FOCUS! ----------------------------- Product: WebFOCUS Version: 8.1.04 Server: Windows 2008 Server
We don't do a lot of MS Excel output; when we do we use FORMAT EXL2K.
When I added 'ON TABLE PCHOLD FORMAT EXL2K' to the model code the data appeared fine in Excel 2013. This message has been edited. Last edited by: David Briars,
Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
I forgot about the EXL07 output getting different results with certain code. I bumped the HYYMDUS code up to a HOLD table and the T is there in my output table.