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 Webfocus 7.7.04, I can't use the LAST function on a field greater than A254V in the TABLE FILE section. It gives that dreaded EDASERVE error that gives you absolutely no clue as to what the problem is.
I tried looking it up in the manual to see if I missed a limitation or something, but I can't find one (not to say that it is not out there). So, I'm making this public service announcement in case somebody can't find it either.
For example:
This will crash the agent:
DEFINE FILE CAR
CAR2/A255V=CAR;
END
TABLE FILE CAR
PRINT COMPUTE CARLAST/A255V=LAST CAR2;
BY COUNTRY
BY CAR2
ON TABLE PCHOLD FORMAT HTML
END
But change it to this and it runs happily along:
DEFINE FILE CAR
CAR2/A254V=CAR;
END
TABLE FILE CAR
PRINT COMPUTE CARLAST/A254V=LAST CAR2;
BY COUNTRY
BY CAR2
ON TABLE PCHOLD FORMAT HTML
END
And using LAST in the DEFINE is just fine too:
DEFINE FILE CAR
CAR2/A255V=CAR;
CAR3/A255V=LAST CAR2;
END
TABLE FILE CAR
PRINT CAR3
BY COUNTRY
BY CAR2
ON TABLE PCHOLD FORMAT HTML
END
This message has been edited. Last edited by: Anatess,
A256V does not crash but it returns empty! I'm going psychotic...
So, here are the stunning results: A257V only returns the first character. A258V returns 2 characters. A259V returns 3 characters. ... and so on and so forth...
Francis, can you try A255V and A256V and A257V and see what happens?This message has been edited. Last edited by: Anatess,