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     [Solv]How to display a column value(including zero at the beginning)i.e.'25' as '025'

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[Solv]How to display a column value(including zero at the beginning)i.e.'25' as '025'
 Login/Join
 
Gold member
posted
Just thought of this situation:Suppose i want to display a column value starting with '0'.

DEFINE FILE CAR
DCOST/D7 = IF DEALER_COST EQ 25000 THEN 0025000 ELSE DEALER_COST;
END

TABLE FILE CAR
PRINT
DCOST
WHERE CAR LIKE 'MAS%';
END

Here i'm trying to display '25000' as '0025000'. But i'm not able to get those zeroes in the beginning.

I'm able to display '0' at the beginning in decimals (like 0.25) by using this command SET CENT-ZERO=ON.

Similarly for whole number, is there any way to display '0' in the beginning (like 025)

This message has been edited. Last edited by: SriAravind,


WebFocus Version 7.7.05
Windows, HTML/PDF/EXL2K/AHTML
 
Posts: 63 | Registered: January 12, 2011Report This Post
Expert
posted Hide Post
DCOST/D7L
DEFINE FILE CAR
DCOSTNZ/D7 = IF DEALER_COST EQ 25000 THEN 0025000 ELSE DEALER_COST;
DCOSTLZ/D7L = IF DEALER_COST EQ 25000 THEN 0025000 ELSE DEALER_COST;
END

TABLE FILE CAR
PRINT 
DCOST DCOSTNZ DCOSTLZ
WHERE CAR LIKE 'MAS%';
END

Results:
DEALER_COST DCOSTNZ   DCOSTLZ 
     25,000  25,000 0,025,000 
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Guru
posted Hide Post
Change the code to include the L - show leading zeroes.

quote:
DEFINE FILE CAR
DCOST/D7L = IF DEALER_COST EQ 25000 THEN 0025000 ELSE DEALER_COST;
END


WF 7.6.11
Oracle
WebSphere
Windows NT-5.2 x86 32bit
 
Posts: 398 | Registered: February 04, 2008Report This Post
Gold member
posted Hide Post
Thanks Doug and RSquared.....ur code is working


WebFocus Version 7.7.05
Windows, HTML/PDF/EXL2K/AHTML
 
Posts: 63 | Registered: January 12, 2011Report This Post
Expert
posted Hide Post
This is FOCUS 101.

A quick check of the edit options of the field would have shown you then L for LEADING ZEROS.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report 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     [Solv]How to display a column value(including zero at the beginning)i.e.'25' as '025'

Copyright © 1996-2020 Information Builders