<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: binding type with decimal in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751043#M4399513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look on this on how to use the Odata Types : &lt;A href="https://help.sap.com/saphelp_uiaddon10/helpdata/en/33/3a9dac5a614b1590c61916c9cecbf5/content.htm" title="https://help.sap.com/saphelp_uiaddon10/helpdata/en/33/3a9dac5a614b1590c61916c9cecbf5/content.htm"&gt;OData Types - User Interface Add-On for SAP NetWeaver - SAP Library&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be adding constraints solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Viplove&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jun 2016 13:18:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-06-23T13:18:09Z</dc:date>
    <item>
      <title>binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaq-p/11751039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having issues with validating input fields, hopefully someone can explain to me what is going wrong because clearly I am doing something wrong &lt;SPAN __jive_emoticon_name="laugh" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/108/images/emoticons/laugh.gif"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have table in the Hana database which allows to enter materials, some of the fields contain weights and these must be entered in whole or decimal values with a maximum of two decimals. so in my hdbdd file I have an entry like this: "NET_DECL_WEIGHT: numbericDecimal;". This numbericDecimal type is defined as an decimal (type numbericDecimal: Decimal(8,2);).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So enough about the table definition, in my controller file I attached the validation handlers as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Attaching validation handlers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sap.ui.getCore().attachValidationError(function (oEvent) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEvent.getParameter("element").setValueState("Error");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("attachValidationError");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sap.ui.getCore().attachValidationSuccess(function(oEvent){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEvent.getParameter("element").setValueState("None");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("attachValidationSuccess");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sap.ui.getCore().attachFormatError(function(oEvent){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEvent.getParameter("element").setValueState("Error");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("attachFormatError");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sap.ui.getCore().attachParseError(function(oEvent){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEvent.getParameter("element").setValueState("Error");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert("attachParseError");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in my XML view I created an input field as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Input value="{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; path: 'NET_DECL_WEIGHT',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type:'sap.ui.model.odata.type.Decimal',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; formatOptions: {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minIntegerDigits: 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minFractionDigits: 2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxFractionDigits: 2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; decimals: 2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; decimalSeparator: '.',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; roundingMode: 'HALF_CEILING',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; groupingEnabled: false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }" textAlign="Right" placeholder="{i18n&amp;gt;assignmentPlaceholderWeight}" description="{i18n&amp;gt;assignmentMaterialWeightDesc}" /&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is however that the "attachValidationError" event is raised as soon as I type an decimal value in the input field. A comma is seen as a separator and a dot as a decimal. so when I type "1234,5678" then the "attachValidationSuccess" event is raised and the data is converted into "12345678.00". But when I type "&lt;SPAN style="font-size: 13.3333px;"&gt;1234.5678&lt;/SPAN&gt;" the "attachValidationError" event is raised. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previously I tried the type "sap.ui.model.type.Float" and that one works fine, however, I couldn't save the data back into the database which is caused (I assume) by the fact that the datafield in Hana is a Decimal and I Could not find a way to define it as a Float value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if you need any more information, if so please let me know. I am still quiet new with these binding techniques but love to learn how to do this in a correct way since in the past I wrote seperate "onChange" functions for this which I like to avoid if possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards, &lt;/P&gt;&lt;P&gt;Nico&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 14:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaq-p/11751039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-22T14:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751040#M4399510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's issue? what u want to achieve?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751040#M4399510</guid>
      <dc:creator>junwu</dc:creator>
      <dc:date>2016-06-22T16:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751041#M4399511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jun Wu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want these fields to check that only numeric values are added and when more then 2 decimals are entered it should round the second decimal up or down. I don't know how sapui5 handles locales because the app will be used in different countries of which some use 'comma's' and some use 'dots' as a decimal notation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my main issue at the moment is that an error in the validation is raised as soon as I enter a decimal value which I don't understand since the type is an odata Decimal type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually, what I noticed is that I can write any number ending on .00 and is gives a 'success' message e.g. 1234.00 validates successfull. But when I increase the decimal e.g. to 1234.01 then it gives an validation error... And I have no idea why?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 17:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751041#M4399511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-22T17:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751042#M4399512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I think my original question was not entirely clear, so let me try to rephrase it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a database field which is of type edm.Decimal(8,2), I don't see an option to use Float on Hana so therefore this Decimal type was used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sapui5 I use binding to my form, for the decimal fields I want to format them and only allow the correct decimal input. When I only use&amp;nbsp; &amp;lt;Input value="{ path: 'NET_DECL_WEIGHT' }" /&amp;gt; for the decimal field then it goes fine but it does not save the decimal value. I tried using "type: 'sap.ui.model.type.Float'" then I can use the formatters but as soon as I save the data I get the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The serialized resource has an invalid value in member 'NET_DECL_WEIGHT'."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error is caused (I assume) due to the fact that edm.decimal is not compatible with the sap.ui.model.type.Float type. So I looked around and found that you could use the sap.ui.model.odata.type.Decimal type. But when I use that I get the following issue: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- typing decimals in this input field (e.g. 2.1212) will always generate a validation error (although strangely enough 2.00 works fine...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question is how can I use a decimal input field with validation on the binding and save it back into the database as as edm.Decimal type.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 12:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751042#M4399512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-23T12:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751043#M4399513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look on this on how to use the Odata Types : &lt;A href="https://help.sap.com/saphelp_uiaddon10/helpdata/en/33/3a9dac5a614b1590c61916c9cecbf5/content.htm" title="https://help.sap.com/saphelp_uiaddon10/helpdata/en/33/3a9dac5a614b1590c61916c9cecbf5/content.htm"&gt;OData Types - User Interface Add-On for SAP NetWeaver - SAP Library&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be adding constraints solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Viplove&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 13:18:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751043#M4399513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-23T13:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751044#M4399514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but it would sounds strange that adding constraints would remove my validation errors? Anyway I gave it a quick try by changing the xmlview to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value="{ path: 'NET_DECL_WEIGHT', type: 'sap.ui.model.odata.type.Decimal', constraints: {maximum: 3000} }"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but even when I add more then 3000 it still validates successfully while typing 21.21 immediately validates with an error...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 18:47:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751044#M4399514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-23T18:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: binding type with decimal</title>
      <link>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751045#M4399515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Viplove, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I continued to struggle and found out that under the constraints area in the API guide SAP mentions the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="methodItem" style="font-size: 0.8em; color: #363636; font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="methodItemType" style="font-size: 12px; padding: 0 0.1em 0.1em; text-align: center;"&gt;&lt;SPAN class="light" style="color: #777777;"&gt;{int|string}&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="methodItemName" style="font-size: 12px; padding: 0 0.1em 0.1em;"&gt;&lt;STRONG&gt;oConstraints.precision&lt;/STRONG&gt;&lt;EM class="help" title="Optional parameter"&gt;?, Default: Infinity&lt;/EM&gt;&lt;/TD&gt;&lt;TD class="methodItemDesc" style="font-size: 12px; padding: 0 0.1em 0.1em;"&gt;the maximum number of digits allowed in the property’s value &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="methodItemType" style="font-size: 12px; padding: 0 0.1em 0.1em; text-align: center;"&gt;&lt;SPAN class="light" style="color: #777777;"&gt;{int|string}&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="methodItemName" style="font-size: 12px; padding: 0 0.1em 0.1em;"&gt;&lt;STRONG&gt;oConstraints.scale&lt;/STRONG&gt;&lt;EM class="help" title="Optional parameter"&gt;?&lt;/EM&gt;&lt;/TD&gt;&lt;TD class="methodItemDesc" style="font-size: 12px; padding: 0 0.1em 0.1em;"&gt;the maximum number of digits allowed to the right of the decimal point; the number must be less than &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;precision&lt;/CODE&gt; (if given). As a special case, "variable" is supported. &lt;P&gt;&lt;/P&gt;&lt;P&gt;The number of digits to the right of the decimal point may vary from zero to &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;scale&lt;/CODE&gt;, and the number of digits to the left of the decimal point may vary from one to &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;precision&lt;/CODE&gt; minus &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;scale&lt;/CODE&gt;. &lt;/P&gt;&lt;P&gt;The number is always displayed with exactly &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;scale&lt;/CODE&gt; digits to the right of the decimal point (unless &lt;CODE style="font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; padding: 0 2px;"&gt;scale&lt;/CODE&gt; is "variable").&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although the question marks (as far as I know) mean that they are optional I did find the message saying that the scale should be less&amp;nbsp; then the precision interesting since the precision has a default value while the scale does not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I tried to add the scale constraint to e.g. 50 (since the formatting already takes care of reducing the amount of decimals) and all of a sudden it works :-). So thanks for your answer because although it didn't immediately solve my issue it put me in the right direction..I still wonder though if this isn't simply a bug because I still do not understand why I should use a scale constraint if I don't even want one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards, &lt;/P&gt;&lt;P&gt;Nico van der Linden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2016 06:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/binding-type-with-decimal/qaa-p/11751045#M4399515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-29T06:45:36Z</dc:date>
    </item>
  </channel>
</rss>

