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.
TABLE FILE MYFILENAME
BY TIME_DAY
ON TABLE HOLD AS HDFILE FORMAT FOCUS
END
-RUN
DEFINE FILE HDFILE
ALPHA_DATETIME/A8=FTOA(TIME_DAY ,'(D8c)','A8');
DATETIME/HYYMD = HINPUT(8, ALPHA_DATETIME, 8, 'HYYMD');
DATE/&dateformat=HDATE(DATETIME, 'YYMD');
ALPHADATE/A30 = DATETRAN(DATE, '(&dateformat)', '(-)', 'PT', 30, 'A30');
RESULT/A200 = ALPHADATE||',';
END
TABLE FILE HDFILE
PRINT RESULT
ON TABLE HOLD AS LISTDATE FORMAT ALPHA
END
What I get is a string like: 2011-05-21, 2011-05-22, 2011-05-23, 2011-05-24,
What I want is: 2011-05-21, 2011-05-22, 2011-05-23, 2011-05-24,
All in the same line, without the line break.
Thanks, Carlos Dias
WebFOCUS version: 7.6 Linux/Windows HTML, Excel
Posts: 127 | Location: Aveiro, Portugal | Registered: February 04, 2011
-SET &dateformat = 'DMYY' ;
DEFINE FILE EMPLOYEE
HIRE_DT/YYMD = HIRE_DATE ;
END
TABLE FILE EMPLOYEE
BY HIRE_DT
ON TABLE HOLD AS HDFILE
END
-RUN
DEFINE FILE HDFILE
DATE/&dateformat=HIRE_DT;
ALPHADATE/A30 = DATETRAN(DATE, '(&dateformat)', '(-)', 'PT', 30, 'A30');
RESULT/A300V = IF LAST ALPHADATE EQ ' ' THEN ALPHADATE ELSE LAST RESULT || (',' | ALPHADATE);
END
TABLE FILE HDFILE
SUM LST.RESULT
-*ON TABLE HOLD AS LISTDATE FORMAT ALPHA
END