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 am passing the values: schema, month and year thru from another focexe file. I did a type to see what value is being passed and does pass the correct values. However, when I do a recordlimit, readlimit, end exit, nothing displays when an individual schema is selected, I get a 0 tables 0 records. However, the "all" Schema does display a table.
-********************************* -SET &MASTER_SCHEMA = &SCHEMA; -SET &MASTER_MONTH = &MONTH; -SET &MASTER_YEAR = &YEAR; -* -SET &strSCHEMA= IF &MASTER_SCHEMA EQ 'ALL' THEN '' - ELSE 'WHERE USERNAME EQ ''&SCHEMA'''; -SET &strMONTH = IF &MONTH EQ 'ALL' THEN '' - ELSE 'WHERE LOG_MONTH EQ ''&MONTH'''; -SET &strYEAR= IF &MASTER_YEAR EQ 'ALL' THEN '' - ELSE 'WHERE LOG_YEAR EQ ''&YEAR'''; -* -SET &ALLSCHEMA_SWITCH = IF &MASTER_SCHEMA EQ 'ALL' THEN 1 ELSE 0; -SET &ALLMONTH_SWITCH = IF &MASTER_MONTH EQ 'ALL' THEN 1 ELSE 0; -SET &ALLYEAR_SWITCH = IF &MASTER_YEAR EQ 'ALL' THEN 1 ELSE 0; -* -* -**************************************** -*Values Below: 1 equals On; 0 equals off -**************************************** -TYPE All schema: &ALLSCHEMA_SWITCH -TYPE All Months: &ALLMONTH_SWITCH -TYPE All Years: &ALLYEAR_SWITCH
-******Check values******** -TYPE All Schema: &strSCHEMA.EVAL -* -TYPE All Month: &strMONTH.EVAL -* -TYPE All Year: &strYEAR.EVAL -************************** -* -*-****************************** -* From main table -******************************
TABLE FILE EFIP_USER_AUDIT_METRICS
COUNT DST.USERNAME -* BY LOG_YEAR BY LOG_MONTH -******* -* EVALUEAT THE SCHEMA VALUE &strSCHEMA.EVAL -* EVALUATE THE MONTH VALUE &strMONTH.EVAL -* EVALUATE THE YEAR VALUE &strYEAR.EVAL -******* -* DONE EVALUATE -* WHERE RECORDLIMIT EQ 100 WHERE READLIMIT EQ 100 END -EXIT
ON TABLE HOLD AS USR_DATA END
-**********************
any thoughts?This message has been edited. Last edited by: Kerry,