Do we have any data type to hold number exceeding 10 digits?...

Do we have any data type to hold number exceeding 10 digits?...

OriginalPostID-116363

OriginalPostID-116363

  Discussion posts and replies are publicly visible

Parents
  • 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.
Reply
  • 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.
Children
No Data