<?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 Separated by comma in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819947#M918723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Im doing smartform for displaying the sales order details.In that im displaying the net value also.&lt;/P&gt;&lt;P&gt;Actually im taking this net value from VBRK table there net value is of type NETWR. In my program for displaying this net value in smartform for that i have changed net value is of type char. So in smartform comma is not coming. it is display as 5000.00. But i need comma like 5,000.00. How can i add comma. Please help me for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 09:15:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T09:15:36Z</dc:date>
    <item>
      <title>Separated by comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819947#M918723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Im doing smartform for displaying the sales order details.In that im displaying the net value also.&lt;/P&gt;&lt;P&gt;Actually im taking this net value from VBRK table there net value is of type NETWR. In my program for displaying this net value in smartform for that i have changed net value is of type char. So in smartform comma is not coming. it is display as 5000.00. But i need comma like 5,000.00. How can i add comma. Please help me for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819947#M918723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Separated by comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819948#M918724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hima,&lt;/P&gt;&lt;P&gt;  Why have you changed the data to char?  You can pass the value as it is.  In the smartform you can mention the value as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X(10.0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where X is the variable for printing NETWR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aravinda Sarma M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819948#M918724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Separated by comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819949#M918725</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;Refer to the same Data Element NETWR. it will print as same way that you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close if it works,&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819949#M918725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Separated by comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819950#M918726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI hima,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have got the data in NETWR field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"WRITE netwr TO lv_char15." to move the '5000.00' to char15 in format '5,000.00'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here lv_char15 is a local variable of type char15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sent this lv_char15 field for display in smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is something like this code &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : test1 TYPE char15,
       test2 TYPE netwr VALUE '5000.00'.

WRITE test2 to test1 CURRENCY '2'.

WRITE : test1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;hope this helps.let me know if there is any problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull,&lt;/P&gt;&lt;P&gt;taher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819950#M918726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Separated by comma</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819951#M918727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ADITYA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i am not changing the data elemnt from netwr to char17 it will not display the smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/separated-by-comma/m-p/3819951#M918727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:14:38Z</dc:date>
    </item>
  </channel>
</rss>

