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 have created a splash page showing Work Orders which were opened in the last 30 days. There are two kinds here, CUSTOMER WORK ORDERS and just WORK ORDERS.
Here is the report as it is coded now:
quote:
OPEN WORK ORDER FOR LAST <= 30 DAYS CUSTOMER ORDERS AND WORK ORDERS DATE: November 28, 2012
WDC WORKDESC COUNT
OPEN CUSTOMER WORK ORDERS
058 REINSPECT FOR SERVICE LEAK 4 303 CURB STOP INOPERABLE 2
OPEN WORK ORDERS
303 CURB STOP INOPERABLE 5 058 REINSPECT FOR SERVICE LEAK 2 258 LOCATE/ADJUST VALVE BOX 2
Here is the code for it:
DEFINE FILE SPL2
DLT/A2 = '<=';
ASGST/A30 = IF ASSIGNEE EQ 'SM06' THEN 'OPEN CUSTOMER ORDERS'
ELSE 'OPEN WORK ORDERS';
END
TABLE FILE SPL2
" OPEN WORK ORDER FOR LAST <DLT 30 DAYS "
" CUSTOMER ORDERS AND WORK ORDERS "
" DATE: &DATEMtrDYY "
" "
SUM SWDC
BY ASGST NOPRINT
BY HIGHEST SWDC NOPRINT
BY ASSIGNEE NOPRINT
BY WDC
BY WORKDESC
ON ASGST SKIP-LINE SUBHEAD
" "
" <ASGST "
ON TABLE SET PAGE NOPAGE
END
-RUN
I am trying to reformat it to look like this:
quote:
OPEN WORK ORDER FOR LAST <= 30 DAYS CUSTOMER ORDERS AND WORK ORDERS DATE: November 28, 2012
OPEN CUSTOMER WORK ORDERS
WDC WORKDESC COUNT 058 REINSPECT FOR SERVICE LEAK 4 303 CURB STOP INOPERABLE 4
OPEN WORK ORDERS
WDC WORKDESC COUNT 303 CURB STOP INOPERABLE 5 058 REINSPECT FOR SERVICE LEAK 2 258 LOCATE/ADJUST VALVE BOX 2
I have been looking through the doc and I cannot find an example for something like this.
Has anyone tried this?
Thanks.This message has been edited. Last edited by: Tomsweb,