<?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>topic Re: Convert string to decimal in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059759#M91551</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can directly assign string variable to packed integer with decimals (Type P) . But the string you have defined contains Comma (,) that is the reason it is not able to convert. use string functions to eliminate the comma from the string and assign to the numeric value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Dec 2005 16:14:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-08T16:14:04Z</dc:date>
    <item>
      <title>Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059757#M91549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to convert a string '127,280.01' to decimal is there any function module that i can use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059757#M91549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059758#M91550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jose, try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001
       no standard page heading.



       data: s type string.
       data: p Type p decimals 2.


       s = '127,280.01'.

       translate s using ', '.

       condense s no-gaps.
       clear p.
       p = p + s.

       write:/ p.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here we are removing the , for the thousands separator, condensing and just adding the value to a P field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059758#M91550</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-08T16:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059759#M91551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can directly assign string variable to packed integer with decimals (Type P) . But the string you have defined contains Comma (,) that is the reason it is not able to convert. use string functions to eliminate the comma from the string and assign to the numeric value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059759#M91551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059760#M91552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using FM CONVERT_STRING_TO_INTEGER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059760#M91552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059761#M91553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this &lt;/P&gt;&lt;P&gt;HRCM_STRING_TO_AMOUNT_CONVERT&lt;/P&gt;&lt;P&gt;STRING                          123,34.567   &lt;/P&gt;&lt;P&gt;DECIMAL_SEPARATOR               .               &lt;/P&gt;&lt;P&gt;THOUSANDS_SEPARATOR             ,               &lt;/P&gt;&lt;P&gt;WAERS  leave it balnk                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can convert to DEcimal&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059761#M91553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059762#M91554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi joes try this ..FM&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;HRCM_STRING_TO_AMOUNT_CONVERT&amp;lt;/b&amp;gt;
STRING                          123,34.567   
DECIMAL_SEPARATOR               .               
THOUSANDS_SEPARATOR             ,               
WAERS         (BALNK)                                 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059762#M91554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059763#M91555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please reward if you got the solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:20:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059763#M91555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059764#M91556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have string as 127,280.01 This is already in decimal notation.&lt;/P&gt;&lt;P&gt;Just u need to move the char value to integer value.&lt;/P&gt;&lt;P&gt;data : v1 type p decimals 2.&lt;/P&gt;&lt;P&gt;move string to v1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solves.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:22:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059764#M91556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T16:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059765#M91557</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;It's very easy operation, so I don't know if there are some fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You only need to move your string to decimal number by MOVE comand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before moving the string you have to delete the virgola, because the dump occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NUMBER_C(20) VALUE '127,280.01',&lt;/P&gt;&lt;P&gt;      NUMBER   TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Here NUMBER_C is 127,280.01&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;REPLACE ',' WITH SPACE INTO NUMBER_C.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0. EXIT. ENDIF.&lt;/P&gt;&lt;P&gt;CONDENSE NUMBER_C NO-GAP.&lt;/P&gt;&lt;P&gt;ENDDO.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now NUMBER_C is 127280.01&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MOVE NUMBER_C TO NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: max bianchi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 17:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059765#M91557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059766#M91558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the Function Module once...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijay Babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 17:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059766#M91558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T17:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059767#M91559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Vijay is suggesting, the function module works too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0001
       no standard page heading.

data: s type string.
data: p type p decimals 2.

s = '1,765,654.25'.

call function 'HRCM_STRING_TO_AMOUNT_CONVERT'
     exporting
          string              = s
          decimal_separator   = '.'
          thousands_separator = ','
     importing
          betrg               = p
     exceptions
          convert_error       = 1
          others              = 2.

write:/ p.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 17:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059767#M91559</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-08T17:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059768#M91560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where can I find the function "'HRCM_STRING_TO_AMOUNT_CONVERT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In System of my customer I can't find such function. I need to convert a CHAR field into a DEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Vjola&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 17:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059768#M91560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-05-23T17:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Convert string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059769#M91561</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is my solution.&lt;/P&gt;&lt;P&gt;And just call that static method like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        zcl_utils=&amp;gt;convert_str_to_dec(&lt;BR /&gt;          EXPORTING&lt;BR /&gt;            value  = lv_tmp1&lt;BR /&gt;          IMPORTING&lt;BR /&gt;            result = lv_tmp1&lt;BR /&gt;        ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;CLASS zcl_utils DEFINITION&lt;BR /&gt;  PUBLIC&lt;BR /&gt;  FINAL&lt;BR /&gt;  CREATE PUBLIC .&lt;BR /&gt;&lt;BR /&gt;  PUBLIC SECTION.&lt;BR /&gt;&lt;BR /&gt;    "Operation return status&lt;BR /&gt;    CONSTANTS c_stat_success TYPE char1 VALUE 'S' ##NO_TEXT.&lt;BR /&gt;    CONSTANTS c_stat_warning TYPE char1 VALUE 'W' ##NO_TEXT.&lt;BR /&gt;    CONSTANTS c_stat_error TYPE char1 VALUE 'E' ##NO_TEXT.&lt;BR /&gt;    CONSTANTS c_stat_info TYPE char1 VALUE 'I' ##NO_TEXT.&lt;BR /&gt;&lt;BR /&gt;    "Status Text&lt;BR /&gt;    TYPES: BEGIN OF gty_status,&lt;BR /&gt;             status      TYPE char1,&lt;BR /&gt;             status_text TYPE char255,&lt;BR /&gt;           END OF gty_status.&lt;BR /&gt;&lt;BR /&gt;    CLASS-METHODS convert_str_to_dec&lt;BR /&gt;      IMPORTING&lt;BR /&gt;        VALUE(value)  TYPE clike&lt;BR /&gt;        VALUE(format) TYPE char30 OPTIONAL&lt;BR /&gt;      EXPORTING&lt;BR /&gt;        result        TYPE clike&lt;BR /&gt;        status        TYPE gty_status.&lt;BR /&gt;&lt;BR /&gt;  PROTECTED SECTION.&lt;BR /&gt;  PRIVATE SECTION.&lt;BR /&gt;ENDCLASS.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;CLASS ZCL_UTILS IMPLEMENTATION.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;* &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt;* | Static Public Method ZCL_UTILS=&amp;gt;CONVERT_STR_TO_DEC&lt;BR /&gt;* +-------------------------------------------------------------------------------------------------+&lt;BR /&gt;* | [---&amp;gt;] VALUE                          TYPE        CLIKE&lt;BR /&gt;* | [---&amp;gt;] FORMAT                         TYPE        CHAR30(optional)&lt;BR /&gt;* | [&amp;lt;---] RESULT                         TYPE        CLIKE&lt;BR /&gt;* | [&amp;lt;---] STATUS                         TYPE        GTY_STATUS&lt;BR /&gt;* +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt;  METHOD convert_str_to_dec.&lt;BR /&gt;    "Expected input, sample £10.000,52&lt;BR /&gt;    "Output should be 10000.52&lt;BR /&gt;    DATA: exref TYPE REF TO cx_root.&lt;BR /&gt;    TRY.&lt;BR /&gt;&lt;BR /&gt;        REPLACE ALL OCCURRENCES OF REGEX '[^(0-9.,)]' IN value WITH ''.&lt;BR /&gt;&lt;BR /&gt;        IF value IS NOT INITIAL.&lt;BR /&gt;          IF format IS INITIAL.&lt;BR /&gt;            format = value.&lt;BR /&gt;          ENDIF.&lt;BR /&gt;&lt;BR /&gt;          FIND ALL OCCURRENCES OF '.' IN format MATCH COUNT DATA(dot_count).&lt;BR /&gt;          FIND ALL OCCURRENCES OF ',' IN format MATCH COUNT DATA(comma_count).&lt;BR /&gt;&lt;BR /&gt;          IF dot_count &amp;gt; 1.&lt;BR /&gt;            REPLACE ALL OCCURRENCES OF SUBSTRING '.' IN value WITH ''.&lt;BR /&gt;            TRANSLATE value USING ',.'.&lt;BR /&gt;&lt;BR /&gt;          ELSEIF comma_count &amp;gt; 1.&lt;BR /&gt;            REPLACE ALL OCCURRENCES OF SUBSTRING ',' IN value WITH ''.&lt;BR /&gt;&lt;BR /&gt;          ELSE.&lt;BR /&gt;            FIND FIRST OCCURRENCE OF '.' IN format MATCH OFFSET DATA(dot_place).&lt;BR /&gt;            FIND FIRST OCCURRENCE OF ',' IN format MATCH OFFSET DATA(comma_place).&lt;BR /&gt;&lt;BR /&gt;            "£10.000,00 -&amp;gt; 10,000.00&lt;BR /&gt;            IF dot_place IS NOT INITIAL AND comma_place IS NOT INITIAL.&lt;BR /&gt;              IF dot_place &amp;lt; comma_place.&lt;BR /&gt;                TRANSLATE value USING ',;'.&lt;BR /&gt;                REPLACE ALL OCCURRENCES OF SUBSTRING '.' IN value WITH ''.&lt;BR /&gt;                TRANSLATE value USING ';.'.&lt;BR /&gt;              ELSE.&lt;BR /&gt;                REPLACE ALL OCCURRENCES OF SUBSTRING ',' IN value WITH ''.&lt;BR /&gt;              ENDIF.&lt;BR /&gt;&lt;BR /&gt;                                                            "£10000,00&lt;BR /&gt;            ELSEIF dot_place IS INITIAL AND comma_place IS NOT INITIAL.&lt;BR /&gt;              TRANSLATE value USING ',.'.&lt;BR /&gt;            ENDIF.&lt;BR /&gt;          ENDIF.&lt;BR /&gt;&lt;BR /&gt;          result = value.&lt;BR /&gt;          CONDENSE result NO-GAPS.&lt;BR /&gt;        ENDIF.&lt;BR /&gt;&lt;BR /&gt;        status-status = c_stat_success.&lt;BR /&gt;&lt;BR /&gt;      CATCH cx_root INTO exref.&lt;BR /&gt;        status-status = c_stat_error.&lt;BR /&gt;        status-status_text = exref-&amp;gt;get_text( ).&lt;BR /&gt;    ENDTRY.&lt;BR /&gt;&lt;BR /&gt;  ENDMETHOD.&lt;BR /&gt;ENDCLASS.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Oct 2022 07:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-string-to-decimal/m-p/1059769#M91561</guid>
      <dc:creator>beyhan_meyrali</dc:creator>
      <dc:date>2022-10-20T07:23:10Z</dc:date>
    </item>
  </channel>
</rss>

