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.
Hi,
My report is having special requirement and constraint is I need to do through GUI only, not allowed to work in text editor.
-----------------------------
COUNTRY/ MODEL/
CAR BODYTYPE
-----------------------------
ENGLAND V12XKE AUTO
JAGUAR CONVERTIBLE
------------------------------
how to overlap two fields using GUI and output file is PDF
Please guide me further
SET BYDISPLAY=ON
DEFINE FILE CAR
COL1/A60 = COUNTRY || ';' || CAR ;
COL2/A60 = MODEL || ';' || BODYTYPE;
COL3/A30 = 'DC:' || FTOA(DEALER_COST,'(F7C)','A9') || '^' || 'RC:' || FTOA(RETAIL_COST,'(F7C)','A9') ;
COL1_CR/A60=CTRAN(60, COL1, 059, 013, COL1_CR);
COL2_CR/A60=CTRAN(60, COL2, 059, 013, COL2_CR);
COL3_CR/A30=CTRAN(30, COL3, 094, 013, COL3_CR);
END
TABLE FILE CAR
BY COL1_CR AS 'Country/,Car'
BY COL2_CR AS 'Model/,Body Type'
BY COL3_CR AS 'Dealer_Cost/,Retail_Cost'
-*BY Col2_CR AS ''
ON COL1_CR SKIP-LINE
ON COL2_CR SKIP-LINE
ON TABLE SET PAGE NOLEAD
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=REPORT,LINEBREAK='CR',$
TYPE=REPORT, WRAP=2.0, $
ENDSTYLE
END
Ram Prasad E: I did the same way u've mentioned , also used Line feed (LF) - but through text editor only ,but my company wants me to do it through GUI - everything
In ver 7.6.10 you can right click on the field, select "Options" from the pop up menu, then the "General" Tab. Within the "Output" section you'll see the check box option for "New Line (OVER)".
I just took that code, put it in the text editor and was able to bring it up in the gui - a minor error with a comment which is pretty obvious to find.
WebFOCUS 7.6.6/TomCat/Win2003,SQL Server 2005,Oracle
Posts: 125 | Location: New England | Registered: February 20, 2007