Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Display two columns from field that has multiple entires

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Display two columns from field that has multiple entires
 Login/Join
 
Member
posted
Hi, I am trying create a report that displays Description and Resolution information around request tickets. The field I need to display is LDTEXT. The problem is that LDTEXT holds information for both Resolution and Description. This is determined by LDOWNERCOL. I.e., if LDOWNERCOL = DESCRIPTION then LDTEXT will display description information. If LDOWNERCOL = FR2CODE then LDTEXT will display resolution information. This generates two rows for the same ticket. One row has resolution info and the next row has Description information. My question is how do I get LDTEXT to be displayed into two different columns. I tried defining a new field but that didn't work. Any suggestions would be greatly appreciated.

Thanks

This message has been edited. Last edited by: <Kathryn Henning>,


WebFOCUS 7.6
Windows, All Outputs
 
Posts: 13 | Registered: August 22, 2013Report This Post
Platinum Member
posted Hide Post
DEFINE FILE XXXX
DESC_INFO /A100 = IF LDOWNERCOL EQ 'DESCRIPTION' THEN LDTEXT ELSE '';
RESOL_INFO/A100 = IF LDOWNERCOL EQ 'FR2CODE' THEN LDTEXT ELSE '';
END
TABLE FILE XXXX
SUM DESC_INFO
RESOL_INFO
BY request_ticket
END


WF 8 version 8.2.04. Windows.
In focus since 1990.
 
Posts: 189 | Location: pgh pa | Registered: October 06, 2004Report This Post
Member
posted Hide Post
Thanks, This got me a little further but it appears that the Resolution field is not changing. The Resolution appears to be repeating. I.e. the first 5 records show the same resolution even though that is not the resolution related to the ticket id.


WebFOCUS 7.6
Windows, All Outputs
 
Posts: 13 | Registered: August 22, 2013Report This Post
Platinum Member
posted Hide Post
Try this ...

TABLE FILE XXXX
SUM
MAX.DESC_INFO
MAX.RESOL_INFO
BY REQUEST_TICKET
END


WebFocus 8.201M, Windows, App Studio
 
Posts: 227 | Location: Lincoln Nebraska | Registered: August 12, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Display two columns from field that has multiple entires

Copyright © 1996-2020 Information Builders