<?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: Infotype Subtype in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229767#M1010179</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check the table T591A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jul 2008 16:17:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-28T16:17:24Z</dc:date>
    <item>
      <title>Infotype Subtype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229766#M1010178</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;&lt;/P&gt;&lt;P&gt;I need to get the values for all the subtypes of two different infotypes.&lt;/P&gt;&lt;P&gt;For eg: 71,72,73 are the absence type of the infotype 2006,&lt;/P&gt;&lt;P&gt;           34,45,56  are the attendance type of the infotype 2007.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get the values from both the infotypes for all the subtypes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 16:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229766#M1010178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T16:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype Subtype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229767#M1010179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check the table T591A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 16:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229767#M1010179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T16:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype Subtype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229768#M1010180</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;I mean I need the logic to populate the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 16:18:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229768#M1010180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T16:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype Subtype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229769#M1010181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tables:t591a .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_t591a occurs 0,&lt;/P&gt;&lt;P&gt;      infty like t591a-infty,&lt;/P&gt;&lt;P&gt;      subty like t591a-subty,&lt;/P&gt;&lt;P&gt;      end of it_t591a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select     INFTY&lt;/P&gt;&lt;P&gt;           SUBTY&lt;/P&gt;&lt;P&gt;           from T591A&lt;/P&gt;&lt;P&gt;           into table it_t591a&lt;/P&gt;&lt;P&gt;           where infty = '0006'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_t591a .&lt;/P&gt;&lt;P&gt;write:/ it_t591a-infty,&lt;/P&gt;&lt;P&gt;         it_t591a-subty .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 16:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229769#M1010181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T16:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype Subtype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229770#M1010182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 06:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-subtype/m-p/4229770#M1010182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T06:40:59Z</dc:date>
    </item>
  </channel>
</rss>

