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.
In one of my webfocus fex file, it is executing a stored procedure as below.
SQL EX SP_RPT '&ETD_FROM','&ETD_TO','&ETA_FROM','&ETA_TO';
I have to pass last month start date, end date as parameters to ETD_FROM, ETD_TO values above and ETA_FROM, ETA_TO as null. i have a oracle query below, but not sure how to set thse values as ETD_FROM, ETD_TO in webfocus. can you please help me.
select trunc(trunc(sysdate,'MM')-1,'MM') "First Day of Last Month",trunc(sysdate,'MM')-1 "Last Day of Last Month" from dual
Use date functions DATEADD and DATEMOV (and you must use date function DATECVT when using date functions in Dialogue Manager -SET commands - convert a text string to a date, perform date function, convert back to string):
-* Determine date last month
-SET &DT_LM = DATECVT( DATEADD(DATECVT(&YYMD,'I8YYMD','YYMD'),'M', -1), 'YYMD','I8YYMD');
-* Determine Beginning of Month for selected date
-SET &BOLM =
- DATECVT(( DATEMOV((DATECVT(&DT_LM,'I8YYMD','YYMD')),'BOM')),
- 'YYMD','I8YYMD');
-* Determine End of Month for selected date
-SET &EOLM =
- DATECVT(( DATEMOV((DATECVT(&DT_LM,'I8YYMD','YYMD')),'EOM')),
- 'YYMD','I8YYMD');
-TYPE &YYMD / &DT_LM / &BOLM / &EOLM
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
can you please let me know how to take the last month start date (ETD_FROM), end date (ETD_TO) values in mm/dd/yyyy format and how to set them DEFAULT. so everytime it calculates last month start, end date values and pass it to SP_RPT.This message has been edited. Last edited by: a03654,
Maybe you should first try the answer Francis gave you, and investigate some time to understand what he showed. In the manuals is a lot to find about date formulas. We can give you all the answers, bit as the Chinese saying says, "give a man a fish and he can eat today, but teach him fishing and he can feed his family for months" We prefer to teach and not just give the answers.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006