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.
Hello all. I am getting my data from a diffrent server and can't get the CSS Style to apply to the results.
REMOTE DEST=
-REMOTE BEGIN
TABLE FILE PRINT .. .. .. ON TABLE HOLD AS filename FORMAT FOCUS END .. MORE CODE .. TABLE FILE FILENAME PRINT .. .. ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, LEFTGAP=0.000000, LINES-PER-PAGE=UNLIMITED, $ TYPE=DATA, BACKCOLOR=( BY=B4 'WHITE' 'SILVER' ), JUSTIFY=CENTER, $ TYPE=DATA, COLUMN=ROWTOTAL(*), BACKCOLOR=( BY=B-1 'WHITE' 'SILVER' ), $ TYPE=TITLE, STYLE=BOLD, JUSTIFY=CENTER, $ TYPE=TITLE, COLUMN=ROWTOTAL(*), STYLE=BOLD, $ TYPE=HEADING, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, JUSTIFY=CENTER, $ TYPE=HEADING, LINE=1, OBJECT=FIELD, ITEM=1, COLSPAN=1, STYLE=BOLD, JUSTIFY=CENTER, $ TYPE=ACROSSVALUE, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, $ TYPE=ACROSSTITLE, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, $ TYPE=GRANDTOTAL, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, $ TYPE=REPORT, COLUMN=ROWTOTAL(*), FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, $ ENDSTYLE -REMOTE END
No mater what I do the style will not apply to the report. Any suggestions? or am I missing something?This message has been edited. Last edited by: Ken DeNoma,
version 7.7.03, windows 7, microsoft office 2007
Posts: 13 | Location: Minnesota | Registered: October 03, 2012
Think about moving the -REMOTE END to just before your final report such that the data sent from the remote server is post processed at your local server instead?
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, 2004
To add to Tony's remark: 1. I would put the -REMOTE END before your TABLE FILE filename 2. I would use ON TABLE PCHOLD instead of ON TABLE HOLD so that your file is sent to your server.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
You need to ON TABLE PCHOLD AS .... statement in the last TABLE request on your DB server and then the -REMOTE END before your TABLE that does the report with the styling. The PCHOLD will bring your answer set back to your reporting server. That's where the styling happens.
WebFOCUS 8.0.09 Windows 7 Output: Excel, PDF, HTML
Posts: 10 | Location: Portland, OR | Registered: December 13, 2007
Thanks to everyone's help on this. I did move the -REMOTE END up and changed the ON TABLE HOLD commands as suggested.
Apparently any defined data doesn't transfer over? So, I moved the -REMOTE END all the way up to just under the data portion (which now makes sense). I then had to print that out AND TNEN defined the data the way I needed it. So, I got it to work now.
Here is what I came ended up with:
REMOTE DEST = EDASRV32 REMOTE USER = USER REMOTE PASS = PASS -RUN TABLE FILE TABLE PRINT .. .. ON TABLE PCHOLD END
-REMOTE END
TABLE FILE HOLD PRINT .. .. ON TABLE HOLD AS NEW_TABLE FORMAT FOCUS END
DEFINE FILE NEW_TABLE .. END
TABLE FILE NEW_TABLE PRINT .. .. ON TABLE HOLD AS NEW_TABLE_FIN FORMAT FOCUS END
TABLE FILE NEW_TABLE_FIN PRINT .. .. ON DATE PAGE-BREAK HEADING "ON TABLE SUBFOOT "End of Report" ON TABLE SET PAGE-NUM OFF ON TABLE SET BYDISPLAY ON ON TABLE NOTOTAL ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, FONT='TIMES NEW ROMAN', SIZE=10, COLOR='BLACK', STYLE=NORMAL, $ TYPE=DATA, BACKCOLOR=( BY=B4 'WHITE' 'SILVER' ), JUSTIFY=CENTER, $ TYPE=TITLE, STYLE=BOLD, JUSTIFY=CENTER, $ TYPE=HEADING, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, JUSTIFY=CENTER, $ ENDSTYLE ENDThis message has been edited. Last edited by: Ken DeNoma,
version 7.7.03, windows 7, microsoft office 2007
Posts: 13 | Location: Minnesota | Registered: October 03, 2012