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 am attempting to incorporate a FUSREXX in my code. I am working with FOCUS 7.2 on an OS/390. At this time, I have successfully invoked the REXX code, but the results I am getting back are not as expected. I have written a simple REXX to accept 1 arg and return the same as follows:
000100 /* PROG1 FUSREXX */ 000110 ARG A 000110 RETURN A
I then assign this value to a column in my FOCUS report in the following fashion:
I managed to hit send before I was done on my last. Here is my problem restated:
I am attempting to incorporate a FUSREXX in my code. I am working with FOCUS 7.2 on an OS/390. At this time, I have successfully invoked the REXX code, but the results I am getting back are not as expected. I have written a simple REXX to accept 1 arg and return the same as follows:
000100 /* PROG1 FUSREXX */ 000110 ARG A 000110 RETURN A
I then assign this value to a column in my FOCUS report in the following fashion:
I then incorporate the field into my table as follows:
000056 TABLE FILE WSHISTN 000057 PRINT REVTIME_C1 000058 STATUS 000059 FUN 000060 FILLER 000061 BY ID 000062 WHERE FUN EQ '02' 000063 WHERE STATUS EQ 'C1' 000064 ON TABLE HOLD AS TIEUP1 FORMAT ALPHA 000065 END
My problem is that FILLER/A6 is appearing in the data file as '010 '. I have run the REXX separately and verified that it is providing the correct response. I know that the FUSREXX is being called and that it is providing an answer. I have reviewed the documentation many times over, and I am sure that I have provided the correct syntax for the call. So, I'm not too sure what it is that I have neglected to account for that would cause the result to be truncated.