<?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: getting access to subtypes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438782#M1247491</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;&lt;/P&gt;&lt;P&gt;In S_LGART, have you put all the wagetype OR only the first and the last,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put all and check if it works, since you have used " IN " in the query.&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;Samson Rodrigues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Mar 2009 03:43:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-28T03:43:23Z</dc:date>
    <item>
      <title>getting access to subtypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438779#M1247488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to access data from two infotypes 0002 and 0014.&lt;/P&gt;&lt;P&gt;for 0014 I need to access its subtypes as well.&lt;/P&gt;&lt;P&gt;Requirement is - for all the emp who has subtype (wagetype) from 8100 to 8124 for the current payroll period from infotype 0014 and name from infotype 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any macro which I can use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 13:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438779#M1247488</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2009-03-27T13:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: getting access to subtypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438780#M1247489</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;You can do this using Logical Database PNP, &lt;/P&gt;&lt;P&gt;but you would still have to code a bit to fulfill the Wage Type requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of Macros, you can do this with 2 simple select statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. get PERNRs from PA0014 where WageType Between 8100 and 8124&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. get Name ( VORNA &amp;amp; NACHN ) from PA0002 for all above selected PERNRS.&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;Samson Rodrigues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 13:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438780#M1247489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-27T13:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: getting access to subtypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438781#M1247490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Samonos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know using logical data base pnp....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written this provide statement after get pernr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  provide * into ITAB_p0002 from p0002&lt;/P&gt;&lt;P&gt;              &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;into ITAB_p0014 from p0014  between pn-begda and pn-endda&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                   where p0014-lgart in s_lgart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endprovide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the thing is this provide statement is not selecting for a particular pernr all the relevant wage types, say pernr - 0001 has three wage type with in the range it selects only first.&lt;/P&gt;&lt;P&gt;I tried puting it into internal table and then extrancting but it doesnt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea how we can extract all the relevant wage types for a partucluar pernr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2009 14:09:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438781#M1247490</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2009-03-27T14:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: getting access to subtypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438782#M1247491</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;&lt;/P&gt;&lt;P&gt;In S_LGART, have you put all the wagetype OR only the first and the last,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put all and check if it works, since you have used " IN " in the query.&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;Samson Rodrigues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Mar 2009 03:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438782#M1247491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-28T03:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: getting access to subtypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438783#M1247492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 12:52:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-access-to-subtypes/m-p/5438783#M1247492</guid>
      <dc:creator>anupam_srivastava2</dc:creator>
      <dc:date>2009-05-27T12:52:39Z</dc:date>
    </item>
  </channel>
</rss>

