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 generate xml report using webfocus. The source code is shown below:
-* File daily_account_interface.fex APP FI ACCOUNTXML DISK BASEAPP/ACCOUNTXML.XML JOIN DA_PARTNER.DA_PARTNER.BUDGET_ID IN DA_PARTNER TO UNIQUE BUDGET.BUDGET.ID IN BUDGET TAG J1 AS J1 END JOIN DA_PARTNER.DA_PARTNER.EXTERNAL_ID IN DA_PARTNER TO UNIQUE DA_SIM_PARTNER.DA_SIM_PARTNER.ID IN DA_SIM_PARTNER TAG J2 AS J2 END DEFINE FILE DA_PARTNER AccType/A20= IF J2.DA_SIM_PARTNER.ACCOUNT_TYPE EQ 1 THEN 'Self service' ELSE IF J2.DA_SIM_PARTNER.ACCOUNT_TYPE EQ 2 THEN 'Full Service' ELSE IF J2.DA_SIM_PARTNER.ACCOUNT_TYPE EQ 3 THEN 'LongTail' ELSE 'NONE'; aa/A10=TRIM('L', EDIT(DA_PARTNER.DA_PARTNER.ID), 20, '0', 1, 'A10'); CRLF/A1 = HEXBYT(10,'A1'); XML_ROW/A200 = ''; END
TABLE FILE DA_PARTNER PRINT XML_ROW CRLF HEADING "header" FOOTING "footer" ON TABLE SAVE AS ACCOUNTXML
END
The source code generates the below format:
My question is how can I append header and trialing part (as shown below) to above genearted report?
header part:
Trailer part:
The required format should look like the following:
Also I have problems on how to trim leading occurences of 0's ? example: 00009941 must be shown as 9941 I have used trim funtion but it cuts off the next field values as shown below: