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 search for the command having the column title in 2 or more lines. Now i generate a table and after the COMPUTE command I save the collumn title AS 'Workorder pending for clarification (KUND) by customer service', but this is too long as a title and I want this to be in multiple lines. Does anyone of you have a good suggestion? Thanks in advance! Katy
TABLE FILE SQLOUT HEADING "Generated &DATE at &TOD o'clock" PRINT COMPUTE MYAMPEL1/A500= IF AMPEL1 EQ 'gruen' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=AU&|Team=' || TEAM || '&img_link' || '&image_gruen' || '&ende' ELSE IF AMPEL1 EQ 'gruen' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=AU&|Team=' || TEAM || '&img_link' || '&image_gruen' || '&ende' ELSE IF AMPEL1 EQ 'rot' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=AU&|Team=' || TEAM || '&img_link' || '&image_rot' || '&ende' ELSE IF AMPEL1 EQ 'rot' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=AU&|Team=' || TEAM || '&img_link' || '&image_rot' || '&ende' ELSE IF AMPEL1 EQ 'gelb' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=AU&|Team=' || TEAM || '&img_link' || '&image_gelb' || '&ende' ELSE IF AMPEL1 EQ 'gelb' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=AU&|Team=' || TEAM || '&img_link' || '&image_gelb' || '&ende' ;NOPRINT MYAMPEL1 AS 'Workorder pending for clarification (KUND) by customer service'
COMPUTE MYAMPEL2/A500= IF AMPEL2 EQ 'gruen' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=KU&|Team=' || TEAM || '&img_link' || '&image_gruen' || '&ende' ELSE IF AMPEL2 EQ 'gruen' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=KU&|Team=' || TEAM || '&img_link' || '&image_gruen' || '&ende' ELSE IF AMPEL2 EQ 'rot' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=KU&|Team=' || TEAM || '&img_link' || '&image_rot' || '&ende' ELSE IF AMPEL2 EQ 'rot' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=KU&|Team=' || TEAM || '&img_link' || '&image_rot' || '&ende' ELSE IF AMPEL2 EQ 'gelb' AND T EQ 'Day' THEN '&report_link' | '&|KZ=AT&|k=KU&|Team=' || TEAM || '&img_link' || '&image_gelb' || '&ende' ELSE IF AMPEL2 EQ 'gelb' AND T EQ 'Week' THEN '&report_link' | '&|KZ=AW&|k=KU&|Team=' || TEAM || '&img_link' || '&image_gelb' || '&ende' ;NOPRINT MYAMPEL2 AS 'Number of workorder pending for clarifications (KUND) by customer' BY TEAM AS 'TEAM' BY T AS 'BASE PERIOD' ON TABLE SET PAGE-NUM OFF ON TABLE HOLD AS TEMP1 FORMAT HTMLTABLE ON TABLE SET STYLE * TYPE=REPORT, GRID=OFF, SQUEEZE=ON, FONT=ARIAL,UNITS=IN, $ TYPE=DATA, COLUMN=TEAM, COLOR=BLACK, STYLE=BOLD, SIZE=9, $ TYPE=HEADING, SIZE =9,STYLE=BOLD, COLOR=NAVY, $ END