<?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 parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911392#M1146604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use a more informative subject in future&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi gurus.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters    P_NAME   like      T023-MATKL+0(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above parameters stmt wat is the use of +0(6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 20, 2008 6:43 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Dec 2008 17:27:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-20T17:27:38Z</dc:date>
    <item>
      <title>parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911392#M1146604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use a more informative subject in future&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi gurus.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters    P_NAME   like      T023-MATKL+0(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above parameters stmt wat is the use of +0(6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 20, 2008 6:43 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Dec 2008 17:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911392#M1146604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-20T17:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911393#M1146605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please use a more informative subject in future&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ABAP, &lt;EM&gt;n(m) means start at position "n" in the string, and go one for length "m".  So T023-MATKL&lt;/EM&gt;0(6) means first six characters of T023-MATKL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Dec 2008 17:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911393#M1146605</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-12-20T17:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911394#M1146606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply ,  but still i am not clear . Wat is the use of POSITION and LENGTH in declaring data objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS NAME(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above stmt makes length 20 for data object NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters NAME like t023-matkl+0(6)  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does it makes any sence????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wat is the exact use of this could u plz explain.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Dec 2008 18:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911394#M1146606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-20T18:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911395#M1146607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It defines a parameter with exactly the same format as the first six character of MATKL.  I.e. it's identical to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS name TYPE c LENGTH 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why the original programmer didn't just do the above, you'd have to ask him.  Perhaps he wanted to provide a semantic reference to MATKL.  I.e. give a future programmer, such as yourself, the idea that the parameter is in someway related to MATNR-MATKL.  But that is all.  It in fact has NOTHING to do with the parameters statement.  It is not part of the parameters statement.  It is part of data definition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Dec 2008 18:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters/m-p/4911395#M1146607</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-12-20T18:49:50Z</dc:date>
    </item>
  </channel>
</rss>

