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.
Hi, I have recently migrated to WF 8.2.03 from 8.2.02. The Code which was working in old version is not working on 8.2.03.
When I do SQL Pass through on one of the tables in SQL Server. The Date field is getting converted to alphanumeric and throwing error if I use that date field as one of the Input parameters. I have attached my code and error message below. I couldn't recreate this issue using CAR or other sample file, as this is happening when I do SQL Pass through.
In the old version, the same code was working and when I checked the field definition of the HOLD1 file, the date field has YYMD format. But in the new version, it is showing as A10V.
Code ---- ENGINE SQLMSS SET DEFAULT_CONNECTION TESTSQLSER SQL SQLMSS PREPARE SQLOUT FOR Select Invoicenumber, Invoicedate from Invoices where ClientID = 1000 END
TABLE FILE SQLOUT PRINT * ON TABLE HOLD AS HOLD1 END
TABLE FILE HOLD1 PRINT * WHERE ( Invoicedate GE &InvoiceStart.(|FORMAT=YYMD).InvoiceStart:.QUOTEDSTRING ) AND ( Invoicedate LE &InvoiceEnd.(|FORMAT=YYMD).InvoiceEnd:.QUOTEDSTRING ); END -EXIT
Error Message: -------------
An error has occurred
Detail: 0 NUMBER OF RECORDS IN TABLE= 1923 LINES= 1923 ERROR AT OR NEAR LINE 27 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC015) THE TEST VALUE IS LONGER THAN THE FIELD FORMAT LENGTH: September 02 2018 (FOC009) Request failed validation, not executed.
Thanks, Joshy Webfocus 8.2.03This message has been edited. Last edited by: FP Mod Chuck,
I just tested this on a table that has a DATE field and a DATETIME field. ORD_DT is a DATE field and it's a YYMD in the HOLD file.
ENGINE SQLMSS SET DEFAULT_CONNECTION SQL_BN
SQL SQLMSS PREPARE SQLOUT FOR
SELECT
T1."ORD_DT",
T1."Freight" FROM Orders T1;
END
TABLE FILE SQLOUT
PRINT
*
ON TABLE HOLD AS HOLD1
END
-RUN
?FF HOLD1
This is what I get:
No output was returned
Possible causes:
- Output was directed to a destination such as a file or printer
Detail:
0 NUMBER OF RECORDS IN TABLE= 830 LINES= 830
FILENAME= HOLD1
ORD_DT E01 YYMD
Freight E02 P21.4
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
Using 8.2.03, if I query WF_RETAIL table wf_retail_time then I get the following against the time_date column which is declared as a DATE format -
SQL SQLMSS PREPARE SQLOUT FOR
select time_date
from _wf_retail_time
END
TABLE FILE SQLOUT
BY time_date
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE HOLD AS HOLD1
END
-RUN
?FF HOLD1
----
0 NUMBER OF RECORDS IN TABLE= 6575 LINES= 6575
FILENAME= HOLD1
time_date E01 YYMD
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
I have a feeling there might be another version of Invoice table in the database. If you look at the TESTSQLSER connection properties what's the default database? Try fully qualifying the select statement's FROM tablename to make sure you're looking at the right version of invoices. Something is different between the two environments and it's not the date format.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015
Hi, When I created the adapter, I have specified the default database which has all the data information for the reporting(which includes Invoices table). When I don't specify the default database, when I run the SQL Pass through, it is giving connection failed error.
And also, When I print the Hold file, In WF 8.2.02,it printed the date in yyyy/mm/dd In WF 8.2.03, it printed as yyyy-mm-dd.
I assume thats why Webfocus is understanding it as A10V instead of YYMD.
Did you try creating a master file for this table? That'll tell you what WebFOCUS sees when it interrogates the SQL Server table's column format. If you're seeing an A10 field for a Date column, then SQL Server is telling WebFOCUS it's a 10 character field. If you're pointing 8203 and 8202 to the exact same table, I'd expect it to create identical column properties.
You might need to open a case with IB Tech support to figure this one out.
WebFOCUS 8206, Unix, Windows
Posts: 1853 | Location: New York City | Registered: December 30, 2015