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'm trying to pass some parms into my sql passthru for a standard report, The column in question is alpha numeric (plant number) if I put '6' in the parm it works just fine but if I put 6 then I get an error invalid number. Know do a put quotes around my parms?
code follows
APP PATH MFGVIS ENGINE SQLORA SET DEFAULT_CONNECTION mfgvis SQL SQLORA PREPARE SQLOUT FOR with cal as ( select to_date('01/01/1900','mm/dd/yyyy') as end_paywk from dual union (select end_paywk from (select distinct c.end_paywk as end_paywk from visuser.PCC_CALENDAR C where c.calendar_date >= trunc(sysdate-150) order by c.end_paywk ) where rownum < &Enter_No_Of_Wks) ), part as ( select e.en_part_id , pep.yield_6_month_n as yield_n from visuser.en_part e, visuser.commodity c, visuser.pcc_en_part pep where e.commodity_id = c.commodity_id and (c.commodity_x between '100' and '199' or substr(c.commodity_x,1,1) =6) and e.en_part_id = pep.en_part_id (+) and pep.plant_c = &Enter_Plant_No ),This message has been edited. Last edited by: Kerry,