Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [Solved] Html Formatting Issues

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[Solved] Html Formatting Issues
 Login/Join
 
Member
posted
Please given the code below I am trying to have a line appear below "My Code" and "My Description".It has to start from "My code" and end below "My Description" Please how can i achieve this


   DEFINE FILE CAR
DUMMY/A2='';
END  

TABLE FILE CAR
PRINT
DUMMY AS 'MY,CODE'
DUMMY AS 'MY DESCRIPTION'
BY MODEL NOPRINT
BY COUNTRY NOPRINT
ACROSS DUMMY AS ''
ON MODEL SUBHEAD
"None"
ON TABLE SUBHEAD
-*"<SGL_PART_TXT<FY_TXT"
"<COUNTRY"
" "
" "
" "
" "
ON TABLE SUBFOOT
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
"Page <+0> <TABPAGENO <+0> of <+0> <TABLASTPAGE <+0>"
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
 UNITS=IN,
 SQUEEZE=ON,
 ORIENTATION=PORTRAIT,
 WIDTH=10,
$
TYPE=REPORT,
 GRID=OFF,
 FONT='TIMES NEW ROMAN',
 SIZE=10,
 BORDER=HEAVY,
 BORDER-COLOR=WHITE,
 BORDER-STYLE=DOTTED,
$
TYPE=TITLE,
 SIZE=10,
 FONT=TIMES NEW ROMAN,
$
TYPE=TITLE,
COLUMN=N4,
 JUSTIFY=CENTER,
$
TYPE=DATA,
 COLUMN=N3,
WIDTH=0.12,

$
TYPE=TABHEADING,
 LINE=1,
 OBJECT=FIELD,
 ITEM=1,
 WRAP=3.9,
 JUSTIFY=LEFT,
 WIDTH=3.9,
 STYLE=BOLD,
 SIZE=10,
$
TYPE=TABHEADING,
 LINE=1,
 OBJECT=FIELD,
 ITEM=2,
 JUSTIFY=RIGHT,
 WIDTH=2.65,
STYLE=BOLD,
SIZE=10,
$
TYPE=TABHEADING,
 LINE=3,
 OBJECT=TEXT,
 ITEM=1,
 JUSTIFY=LEFT,
 WIDTH=3.9,
STYLE=BOLD,
SIZE=10,
$
TYPE=TABHEADING,
 LINE=3,
 OBJECT=TEXT,
 ITEM=2,
 JUSTIFY=RIGHT,
 WIDTH=2.65,
STYLE=BOLD,
SIZE=10,
$
TYPE=TABHEADING,
 LINE=5,
 OBJECT=TEXT,
 JUSTIFY=CENTER,
 STYLE=BOLD,
FONT=TIMES NEW ROMAN,
SIZE=12,
$
TYPE=TABHEADING,
 LINE=6,
 OBJECT=TEXT,
 JUSTIFY=CENTER,
 STYLE=BOLD,
FONT=TIMES NEW ROMAN,
SIZE=12,
$
TYPE=TABFOOTING,
 LINE=45,
OBJECT=FIELD,
STYLE=BOLD,
SIZE=10,

$
TYPE=TABFOOTING,
 LINE=45,
OBJECT=TEXT,
STYLE=BOLD,
SIZE=10,

$
TYPE=TABFOOTING,
 LINE=45,
 OBJECT=TEXT,
 ITEM=1,
 POSITION=3.2,
STYLE=BOLD,


$
TYPE=TABFOOTING,
 LINE=45,
 OBJECT=FIELD,
 ITEM=1,
 POSITION=0.0,
STYLE=BOLD,

$
TYPE=TABFOOTING,
 LINE=45,
 OBJECT=TEXT,
 ITEM=7,
 POSITION=1.7,
 STYLE=BOLD,
$
TYPE=TABFOOTING,
 LINE=45,
 OBJECT=TEXT,
 ITEM=1,
STYLE=BOLD,

$
TYPE=TABFOOTING,
 LINE=45,
 OBJECT=TEXT,
 ITEM=2,
 STYLE=BOLD,
-* this is used for the date COLOR=RED,
$
TYPE=REPORT,
 COLUMN=N3,
 WRAP=1,
$
TYPE=REPORT,
 COLUMN=N4,
 WRAP=5.5,
 SIZE=10,
$
ENDSTYLE
END

This message has been edited. Last edited by: Kathleen Butler,


WebFOCUS 7.6.9
Windows
all output (Excel, HTML, PDF)
 
Posts: 20 | Registered: July 06, 2010Report This Post
Virtuoso
posted Hide Post
one approach is to nullify the column titles, and define pseudo titles as lower part of the page heading. You can align the page heading elements to the report's data columns, and specify column-span for heading elements as appropriate.
 
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005Report This Post
Expert
posted Hide Post
Hi joyesiji,

Please try the following suggestion from our technicals:

TABLE FILE CAR
PRINT
DUMMY AS 'MY,CODE'
DUMMY AS 'MY DESCRIPTION' OVER DUMMY AS ' '

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report This Post
Member
posted Hide Post
Did not work, tried but it did not work


WebFOCUS 7.6.9
Windows
all output (Excel, HTML, PDF)
 
Posts: 20 | Registered: July 06, 2010Report This Post
Expert
posted Hide Post
As you state that this is an HTML formatting problem, then this should help you -
DEFINE FILE CAR
DUMMY/A2='';
HR/A4 = '<hr>';
END  

TABLE FILE CAR
 PRINT DUMMY AS ''
       DUMMY AS ''
    BY MODEL NOPRINT
    BY COUNTRY NOPRINT
ACROSS DUMMY AS ''
HEADING
"My<+0>My Description"
"Code<+0> "
"<HR<+0><HR"
ON MODEL SUBHEAD
"None"
ON TABLE SUBHEAD
-*"<SGL_PART_TXT<FY_TXT"
"<COUNTRY </4"
ON TABLE SUBFOOT
"</44 Page <+0> <TABPAGENO <+0> of <+0> <TABLASTPAGE <+0>"
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
-* the rest of your code

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [Solved] Html Formatting Issues

Copyright © 1996-2020 Information Builders