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.
Portfolio MM Ref# Murex Ref# Type Counterparty NAIC Rating BCVOLRT MSS027089 1636 Swap BEAR STEARNS BK Subtotal BCVOLRT 1636 BCVOLRT MSS027116 1637 Swap UBS AG Subtotal BCVOLRT 1637 BCVOLRT MSO026994 2727 Option BEAR STEARNS BK Subtotal BCVOLRT 2727 BCVOLRT MSO026996 2728 Option BEAR STEARNS BK Subtotal BCVOLRT 2728 BCVOLRT MSO027027 2729 Option BEAR STEARNS BK Subtotal BCVOLRT 2729
But i need an ouput like this
BCVOLRT MSS027089 1636 Swap BEAR STEARNS BK BCVOLRT MSS027116 1637 Swap UBS AG BCVOLRT MSO026994 2727 Option BEAR STEARNS BK BCVOLRT MSO026996 2728 Option BEAR STEARNS BK BCVOLRT MSO027027 2729 Option BEAR STEARNS BK
Subtotal BCVOLRT
the code that i am using is PRINT PORTFOLIO_SUB_SEGMENT AS 'Portfolio' MM_REF_NUMBER AS 'MM Ref#' ASSET_ID AS 'Murex Ref#' ASSET_TYPE AS 'Type' COUNTERPARTY AS 'Counterparty' NAIC_RATING AS 'NAIC Rating' BY LEGAL_ENTITY_LONG_NAME NOPRINT BY ASSET_ID NOPRINT BY PORTFOLIO_SUB_SEGMENT NOPRINT BY COUNTERPARTY NOPRINT ON PORTFOLIO_SUB_SEGMENT NOPRINT SUBTOTAL AS 'Subtotal' ON LEGAL_ENTITY_LONG_NAME NOPRINT SUBTOTAL AS 'Grand Total'
PRINT
PORTFOLIO_SUB_SEGMENT NOPRINT
MM_REF_NUMBER AS 'MM Ref#'
ASSET_ID AS 'Murex Ref#'
ASSET_TYPE AS 'Type'
COUNTERPARTY AS 'Counterparty'
NAIC_RATING AS 'NAIC Rating'
BY LEGAL_ENTITY_LONG_NAME NOPRINT
BY ASSET_ID NOPRINT
BY PORTFOLIO_SUB_SEGMENT NOPRINT
BY COUNTERPARTY NOPRINT
ON PORTFOLIO_SUB_SEGMENT NOPRINT SUBTOTAL AS 'Subtotal'
ON PORTFOLIO_SUB_SEGMENT SUBHEAD
"<PORTFOLIO_SUB_SEGMENT"
ON LEGAL_ENTITY_LONG_NAME NOPRINT SUBTOTAL AS 'Grand Total'
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006
I think Gizmo is right !! ASSET_ID is changing on every record so you getting subtotal on every line. putting "BY PORTFOLIO_SUB_SEGMENT NOPRINT" as the first SORT/by field should give you what you want. ... TABLE FILE ... PRINT PORTFOLIO_SUB_SEGMENT AS 'Portfolio' MM_REF_NUMBER AS 'MM Ref#' ASSET_ID AS 'Murex Ref#' ASSET_TYPE AS 'Type' COUNTERPARTY AS 'Counterparty' NAIC_RATING AS 'NAIC Rating' -- BY PORTFOLIO_SUB_SEGMENT NOPRINT -- BY LEGAL_ENTITY_LONG_NAME NOPRINT BY ASSET_ID NOPRINT
BY COUNTERPARTY NOPRINT ON PORTFOLIO_SUB_SEGMENT NOPRINT SUBTOTAL AS 'Subtotal' ON LEGAL_ENTITY_LONG_NAME NOPRINT SUBTOTAL AS 'Grand Total'
-Yogesh Patel ------------------------------------------------------------------------ PROD: WF 764 on Linux Apache tomcat v5.5 DEV: WF 768 on Linux
Posts: 42 | Location: Edison, New Jersey | Registered: January 30, 2007