<?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: are there any data elements to represent  %. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105779#M439409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are some existing data elements you could use to declare your data variable, and then use an edit mask as aRs suggested to add the '%' in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example P15_PERNE.  This is type DEC with 6 characters, 3 for decimals, and output length of 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also look at AM_PPERC, AGKPZ.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Apr 2007 15:29:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-05T15:29:15Z</dc:date>
    <item>
      <title>are there any data elements to represent  %.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105775#M439405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;I need to caliculate a Percentage amount and represent it as a XXX%. can I use any standard data element to acomplish this.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 14:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105775#M439405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T14:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: are there any data elements to represent  %.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105776#M439406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are no data elements for that.&lt;/P&gt;&lt;P&gt;Yu should probably concatenate the Percentage value with a % and diaply using a char type variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_int type i,&lt;/P&gt;&lt;P&gt;         v_char(10).&lt;/P&gt;&lt;P&gt;v_char = v_int.&lt;/P&gt;&lt;P&gt;concatenate v_char '%' into v_char.&lt;/P&gt;&lt;P&gt;write:/ v_char.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 14:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105776#M439406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T14:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: are there any data elements to represent  %.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105777#M439407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess there is nothing like that , you have to calculate the percentage and display as XXX%&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 14:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105777#M439407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T14:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: are there any data elements to represent  %.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105778#M439408</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;You can do this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data per type i value '153'.
write (4) per using edit mask '___%'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 14:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105778#M439408</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-04-05T14:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: are there any data elements to represent  %.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105779#M439409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are some existing data elements you could use to declare your data variable, and then use an edit mask as aRs suggested to add the '%' in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example P15_PERNE.  This is type DEC with 6 characters, 3 for decimals, and output length of 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also look at AM_PPERC, AGKPZ.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 15:29:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/are-there-any-data-elements-to-represent/m-p/2105779#M439409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T15:29:15Z</dc:date>
    </item>
  </channel>
</rss>

