retaining preceding zeros.

jks
Member Posts: 277
Hi all,
I want to retain the preceding zero how can i do that?
e.g I have one filed of type BigInteger in my table. If value is of one digit e.g 1 then i should be able to enter 01. How can i do that at table level?
Is there any function in c\al by which i can do that?
Thanks for any help.
I want to retain the preceding zero how can i do that?
e.g I have one filed of type BigInteger in my table. If value is of one digit e.g 1 then i should be able to enter 01. How can i do that at table level?
Is there any function in c\al by which i can do that?
Thanks for any help.
0
Comments
-
There is no property for that,
You can modify the OnFormat Trigger of the form you use to display your variableif strlen(text) = 1 then text := '0' + text;
This wil show a minimum of 2 digits on an Integer.
Regards,
Marq0 -
Why do you need to do it on table level? Users are not supposed to see your tables anyhow and they should not care how the numbers are represented there.
You can easily do it on forms just add a correct Format property to the integer field. One what works should be something similar to <integer,2><Filler Character,0>0 -
Hi,
It works. But one problem is there. What i want is:
I have one user id e.g USER01. i want to appent that biginteger with this userid e.g if value of biginteger is 10 then value is USER0110 but if value of biginteger is 9 then it should be USER0109. When i display the value of bigint then it displays 09 but when i append it, it appends only 9 so USER019
Please help.0 -
Use Format command before appending to format the integer using the same format specifier I described earlier. This should solve your problem.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions