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 trying to create a multi-verb request, where the last 5 fields (AR#017, etc.) should be prohibited on subsequent lines (they are unique by the IV$017 field) but still print the repeated date for the other columns.
Is there a way to make this work?This message has been edited. Last edited by: Lloyd,
Lloyd Prendergast Michael Kors (USA), Inc. Phone: 201-453-5076 Fax: 646-354-4776 Lloyd.Prendergast@Michaelkors.com
1. Why a multi-verb? 2. As for your AR$017 fields, you can use a COMPUTE with the LAST function:
COMPUTE SAR$017/format = IF IV$017 EQ LAST IV$017 THEN ' ' ELSE AR$017; AS AR$017
1. I tried to use a multi-verb as that was the only way I could think of doing it. (I am only an occasional WF programmer/user, so some times my brain forgets how to do things...)
2. Never used the last verb before, but I think that's exactly what I was looking for....
gonna try it out and let you know how its goes...
Yup, was exactly what I wanted, thanks Danny!....This message has been edited. Last edited by: Lloyd,
Lloyd Prendergast Michael Kors (USA), Inc. Phone: 201-453-5076 Fax: 646-354-4776 Lloyd.Prendergast@Michaelkors.com
The code is just as Danny explained, rather than creating a multi-verb report, I just did a natural sum, and used the LAST verb/function to only print the values once, :
COMPUTE SAR$017/A15 = IF IV#017 EQ LAST IV#017 THEN ' ' ELSE FTOA(AR$017, '(D12.2)', SAR$017); AS 'INVOICE, DOLLARS'
Lloyd Prendergast Michael Kors (USA), Inc. Phone: 201-453-5076 Fax: 646-354-4776 Lloyd.Prendergast@Michaelkors.com