Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
+1
person also asked this
people also asked this
Replies
6 replies
Answers
1 answer
Subscribers
8 subscribers
Views
9292 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
AI and Rules
Do we have any data type to hold number exceeding 10 digits?...
nimishan
over 10 years ago
Do we have any data type to hold number exceeding 10 digits?...
OriginalPostID-116363
OriginalPostID-116363
Discussion posts and replies are publicly visible
Parents
+1
chandu
A Score Level 2
over 7 years ago
Hi Nimisha, Hope this will resolve your problem
Create a CDT with a field "amount" of type Number(decimal),
load(
local!value,
a!sectionLayout(
label:"Test the Number",
firstColumnContents:{
a!floatingPointField(
label:"Enter any number",
value:ri!CDT.amount,
saveInto:{
local!value,
a!save(ri!CDT.amount,fixed(local!value))
}
),
a!textField(
label:"entered Value",
value:fixed(ri!CDT.amount)
)
}
)
)
You need to use the fixed function to show it from exponential to number.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Reject Answer
Cancel
Reply
+1
chandu
A Score Level 2
over 7 years ago
Hi Nimisha, Hope this will resolve your problem
Create a CDT with a field "amount" of type Number(decimal),
load(
local!value,
a!sectionLayout(
label:"Test the Number",
firstColumnContents:{
a!floatingPointField(
label:"Enter any number",
value:ri!CDT.amount,
saveInto:{
local!value,
a!save(ri!CDT.amount,fixed(local!value))
}
),
a!textField(
label:"entered Value",
value:fixed(ri!CDT.amount)
)
}
)
)
You need to use the fixed function to show it from exponential to number.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Reject Answer
Cancel
Children
No Data