This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
This RFE is being closed as a duplicate of RFE 104512
http://www.ibm.com/developerworks/rfe/execute?use_case=viewChangeRequest&CR_ID=104512
The example use case probably needs clarification. If the application returns a JSON file that is a 'large' number (i.e. that has too many digits in it for the IBM JSON parser to handle) then either an error is raised or the number is truncated and rounded and converted to a floating point value.
For example if the JSON string has "NUMFLD":123456789012345678901234567890
The IBM JSON parser will raise an error and the 'user' will get a lot of error information. (Note that the application is not made aware that this has occurred)
If the JSON string has "NMUMFLD":1234567890123456789012345678.123
the IBM JSON parser will treat the number as valid, but will change it to 1.2345678901234569e+27 (Note that it has been rounded and changed from a standard number with 3 decimal places to a floating-format number)