<?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: Hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511452#M568001</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;LINE TYPE:             " this is a structure type which is being declared.... this is the structure which the user wants...or in otherwords his line type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:                "definition of the structure&lt;/P&gt;&lt;P&gt;BEGIN OF TY_EMP,&lt;/P&gt;&lt;P&gt;EMPID(4) TYPE N,&lt;/P&gt;&lt;P&gt;ENAME(20) TYPE C,&lt;/P&gt;&lt;P&gt;SALARY TYPE I,&lt;/P&gt;&lt;P&gt;END OF TY_EMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;FS_EMP TYPE TY_EMP,              "declaring a work area of ur stucture type&lt;/P&gt;&lt;P&gt;IT_EMP TYPE TY_EMP OCCURS 0.     "declaring an internal table of your structure type with an header work area(occurs 0) but syntax is wrong... its type table of... bcz only an internal table can have an header wrk area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TABLE TYPE:&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;TAB_EMP TYPE TABLE OF TY_EMP.  "defining a table and appending values to it&lt;/P&gt;&lt;P&gt;FS_EMP-EMPID = 1000.&lt;/P&gt;&lt;P&gt;FS_EMP-ENAME = 'ANIL'.&lt;/P&gt;&lt;P&gt;FS_EMP-SALARY = 10000.*APPEND FS_EMP TO IT_EMP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The meaning of the code is typed next to the code line&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;please reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 06:08:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T06:08:09Z</dc:date>
    <item>
      <title>Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511451#M568000</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; In this program what is meant by line type, table type and field string and what its effects when we execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bcoz when iam executing this its not giving any result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE TYPE:&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;BEGIN OF TY_EMP,&lt;/P&gt;&lt;P&gt;EMPID(4) TYPE N,&lt;/P&gt;&lt;P&gt;ENAME(20) TYPE C,&lt;/P&gt;&lt;P&gt;SALARY TYPE I,&lt;/P&gt;&lt;P&gt;END OF TY_EMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;FS_EMP TYPE TY_EMP,&lt;/P&gt;&lt;P&gt;IT_EMP TYPE TY_EMP OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TABLE TYPE:&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;TAB_EMP TYPE TABLE OF TY_EMP.&lt;/P&gt;&lt;P&gt;FS_EMP-EMPID = 1000.&lt;/P&gt;&lt;P&gt;FS_EMP-ENAME = 'ANIL'.&lt;/P&gt;&lt;P&gt;FS_EMP-SALARY = 10000.*APPEND FS_EMP TO IT_EMP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 06:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511451#M568000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T06:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511452#M568001</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;LINE TYPE:             " this is a structure type which is being declared.... this is the structure which the user wants...or in otherwords his line type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:                "definition of the structure&lt;/P&gt;&lt;P&gt;BEGIN OF TY_EMP,&lt;/P&gt;&lt;P&gt;EMPID(4) TYPE N,&lt;/P&gt;&lt;P&gt;ENAME(20) TYPE C,&lt;/P&gt;&lt;P&gt;SALARY TYPE I,&lt;/P&gt;&lt;P&gt;END OF TY_EMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;FS_EMP TYPE TY_EMP,              "declaring a work area of ur stucture type&lt;/P&gt;&lt;P&gt;IT_EMP TYPE TY_EMP OCCURS 0.     "declaring an internal table of your structure type with an header work area(occurs 0) but syntax is wrong... its type table of... bcz only an internal table can have an header wrk area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TABLE TYPE:&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;TAB_EMP TYPE TABLE OF TY_EMP.  "defining a table and appending values to it&lt;/P&gt;&lt;P&gt;FS_EMP-EMPID = 1000.&lt;/P&gt;&lt;P&gt;FS_EMP-ENAME = 'ANIL'.&lt;/P&gt;&lt;P&gt;FS_EMP-SALARY = 10000.*APPEND FS_EMP TO IT_EMP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The meaning of the code is typed next to the code line&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;please reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 06:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511452#M568001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T06:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511453#M568002</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;Line type --&amp;gt; This will create a Line with same as the header line for a table, This will be used as a header for a table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Type --&amp;gt; This will create a Structure, here the table type and Line type both will be come a table with the header line, i mean the Line type is the header then the table type is the body&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field String --&amp;gt; It is a notmal declaration of a String.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 06:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511453#M568002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T06:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511454#M568003</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;line type creates a workarea for any internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table type means creates a internal table similar to standard table . this is similar to occurs n keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 06:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2511454#M568003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T06:14:28Z</dc:date>
    </item>
  </channel>
</rss>

