<?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: Pull data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521727#M239520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know where this HR information links with FI, better yet, which table/s in FI has this INFO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advanced,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregorio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Sep 2006 18:47:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-06T18:47:55Z</dc:date>
    <item>
      <title>Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521724#M239517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to pull the fallowing data for a report&lt;/P&gt;&lt;P&gt;PERNR, NAME, AMOUNT and WAGE TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the user drill down to this info throw transaction FS10N &lt;/P&gt;&lt;P&gt;and the account number XXXX what I will like to know from which table can I pull that data. I use F1 on the fields that where display it and this are the tables that show me (T512T, PPDIX, PPDIT) but I didn't see the relation within this tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregorio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 17:30:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521724#M239517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T17:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521725#M239518</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 try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CU_READ_RGDIR'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        persnr          = it_pemp-pernr&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        in_rgdir        = tp_rgdir&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        no_record_found = 1&lt;/P&gt;&lt;P&gt;        OTHERS          = 2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      cd-key-pernr = it_pemp-pernr.&lt;/P&gt;&lt;P&gt;      sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      rp-init-buffer.&lt;/P&gt;&lt;P&gt;      rp-imp-c2-cd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at tp_rgdir.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;rx-key-pernr = it_pemp-pernr.&lt;/P&gt;&lt;P&gt;  rx-key-seqno = it_rgdir-seqnr.&amp;lt;/b&amp;gt;  &amp;lt;b&amp;gt;rp-imp-c2-in&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;rt&amp;lt;/b&amp;gt; will have the required data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 17:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521725#M239518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T17:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521726#M239519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function 'CU_READ_RGDIR' is not showing me the info that I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my selection criteria should be&lt;/P&gt;&lt;P&gt;Company Code&lt;/P&gt;&lt;P&gt;Selection Period&lt;/P&gt;&lt;P&gt;Cost Center&lt;/P&gt;&lt;P&gt;PERNR&lt;/P&gt;&lt;P&gt;Posted amount&lt;/P&gt;&lt;P&gt;and all is posted in a specific G/L account&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 18:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521726#M239519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T18:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521727#M239520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know where this HR information links with FI, better yet, which table/s in FI has this INFO?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advanced,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregorio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 18:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521727#M239520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T18:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521728#M239521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must first get the Document Numbers from the table PPDHD for the Company code &amp;amp; Posting period;&lt;/P&gt;&lt;P&gt;You will get the reqd info from the Table PPDIT restricting by G/L acct &amp;amp; Cost Center.&lt;/P&gt;&lt;P&gt;The Amounts by Wagetype can be obtained from PPOIX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suresh Datti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 18:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521728#M239521</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-09-06T18:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521729#M239522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u so much Suresh, you have saved my life.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fidel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 19:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521729#M239522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T19:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521730#M239523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How will I know for sure that the information that I have from PPDHD and PPDIT correspond to PPOIX, will the RUNID from table PPDHD be enough?, and why PERNR is not populated in table PPDIT? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please respond, I will award some points and incase if is necesary I will post a new message to award the points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advanced,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregorio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Sep 2006 14:13:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-data/m-p/1521730#M239523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-11T14:13:29Z</dc:date>
    </item>
  </channel>
</rss>

