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.
The above code is good. But if i add a single character to the &addl_alc variable (if the total length exceeds 137) then i am getting an error "SESSION LOST" . . Can anyone help me in figuring out this issue.
Firstly there is no requirement to terminate a DEFAULT with a semi colon. Remove the semi colon at the end of your DEFAULT and all will work comfortably upto 145 chars - should work with more but that's all I tested.
I would also use a -REPEAT loop in preference over the collection of GOTOs that you have but each to their own.
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
Must be something to do with supplying a string in quotes, as opposed to supplying a variable to the function. Not sure why.
Also change -IF 'A' || &F.&CNTR EQ 'A' THEN FINADDL_T; and -IF (&CNTR LT &CNTRR) THEN ADDL_TRUN ELSE FINADDL_T; to -IF 'A' || &F.&CNTR EQ 'A' THEN GOTO FINADDL_T; and -IF (&CNTR LT &CNTRR) THEN GOTO ADDL_TRUN ELSE GOTO FINADDL_T; otherwise the code will not branch as you expect.
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007