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.
You can create a report to see all ACTIVE report caster jobs. There are tables that have all the information you are looking for. Below is an example.
TABLES: BOTSCHED, BOTTASK, BOTDEST
JOIN BOTSCHED.BOTSCHED.PACKETID IN BOTSCHED TO ALL BOTTASK.BOTTASK.PACKETID IN BOTTASK TAG J0 AS J0
DEFINE FILE BOTSCHED
METHOD/A10 = IF (METHOD_CODE EQ 'M') THEN 'Email' ELSE
IF (METHOD_CODE EQ 'P') THEN 'Printer' ELSE 'Other';
LIST_T/A25 = IF (LISTTYPE EQ 'D') THEN 'Distribution List' ELSE
IF (LISTTYPE EQ 'S') THEN 'Single Email Address(es)' ELSE 'Other';
END
TABLE FILE BOTSCHED
PRINT
LISTTYPE
COMPUTE LIST_TYPE/A25 = IF SCHEDULEID EQ LAST SCHEDULEID THEN '' ELSE LIST_T;
COMPUTE DIST_LIST/A800 = IF SCHEDULEID EQ LAST SCHEDULEID THEN '' ELSE DISTLIST;
BY JOBDESC
BY SCHEDULEID
BY CASTER_USER
BY ACTIVE
BY METHOD
BY MAILSUBJECT
BY TASKNAME
BY TASKOBJ
WHERE CASTER_USER IN ('wmgbatch'); -- YOU CAN LIMIT WHAT FOLDER YOU WANT TO SEE ACTIVE JOBS OR SEE ALL ACTIVE JOBS
WHERE ACTIVE EQ 'Y';
ON TABLE HOLD AS RC_INFO
END
-RUN