<?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 How to declare a 2 digit number that must have a padded 0 to the left? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902572#M1144840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is on a custom subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01    02      03    04......10    11    12    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is declaration syntax?      Thank-You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2008 15:56:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-09T15:56:32Z</dc:date>
    <item>
      <title>How to declare a 2 digit number that must have a padded 0 to the left?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902572#M1144840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is on a custom subscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01    02      03    04......10    11    12    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is declaration syntax?      Thank-You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 15:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902572#M1144840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T15:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to declare a 2 digit number that must have a padded 0 to the left?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902573#M1144841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Type N, length 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: l_num(2) type n .

L_NUM = 1.

WRITE: L_NUM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 16:02:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902573#M1144841</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-12-09T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to declare a 2 digit number that must have a padded 0 to the left?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902574#M1144842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Type N will do this automatically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 16:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902574#M1144842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T16:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to declare a 2 digit number that must have a padded 0 to the left?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902575#M1144843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
report .

data: i type i  value 1 .

 do 12 times .
 write: i .
 i = i + 1 .
 enddo .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 16:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-a-2-digit-number-that-must-have-a-padded-0-to-the-left/m-p/4902575#M1144843</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2008-12-09T16:07:42Z</dc:date>
    </item>
  </channel>
</rss>

