<?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: Length Specification not allowed error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910201#M937608</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey. One More doubt. &lt;/P&gt;&lt;P&gt;I have a &lt;/P&gt;&lt;P&gt;Data: NUM type of which is Curr.&lt;/P&gt;&lt;P&gt;But iam getting error saying that NUM shud be of type C N D T while ucchecking how to do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2008 11:40:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-28T11:40:12Z</dc:date>
    <item>
      <title>Length Specification not allowed error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910197#M937604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts.&lt;/P&gt;&lt;P&gt;In 4.6c a program has gen(3) type i.&lt;/P&gt;&lt;P&gt;During upgrade while performing ucheck there is an error saying that the length specification not allowed . How to rectify it.?any Idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 11:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910197#M937604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T11:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Length Specification not allowed error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910198#M937605</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;Do not mention any length.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : num type i.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 11:36:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910198#M937605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T11:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Length Specification not allowed error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910199#M937606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   u took the data type as integer.So u dont need to give length.When u will take as a numeric it need to give length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;     DATA: LIN TYPE I.&lt;/P&gt;&lt;P&gt;      Z(4) TYPE N ,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 11:39:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910199#M937606</guid>
      <dc:creator>geetha_k</dc:creator>
      <dc:date>2008-05-28T11:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Length Specification not allowed error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910200#M937607</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;Either you can declare &lt;/P&gt;&lt;P&gt;DATA: gen TYPE i.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;DATA:gen(3) TYPE N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 11:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910200#M937607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T11:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Length Specification not allowed error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910201#M937608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey. One More doubt. &lt;/P&gt;&lt;P&gt;I have a &lt;/P&gt;&lt;P&gt;Data: NUM type of which is Curr.&lt;/P&gt;&lt;P&gt;But iam getting error saying that NUM shud be of type C N D T while ucchecking how to do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 11:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length-specification-not-allowed-error/m-p/3910201#M937608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T11:40:12Z</dc:date>
    </item>
  </channel>
</rss>

