<?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 Infotype 0008 problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801617#M1124287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problem with featching data from infotype 8, table pa0008 does not having data of all wage type it contain only basic salary amount, other wage type doest have amount in table pa0008 but when we open pa20 to see basic pay of a perner it will show all the wage type and its amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is their other table contan the values of other wage type or any Funcation module to retrive the data of basic pay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in adv.&lt;/P&gt;&lt;P&gt;kaustubh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Nov 2008 09:41:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-24T09:41:54Z</dc:date>
    <item>
      <title>Infotype 0008 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801617#M1124287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problem with featching data from infotype 8, table pa0008 does not having data of all wage type it contain only basic salary amount, other wage type doest have amount in table pa0008 but when we open pa20 to see basic pay of a perner it will show all the wage type and its amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is their other table contan the values of other wage type or any Funcation module to retrive the data of basic pay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in adv.&lt;/P&gt;&lt;P&gt;kaustubh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 09:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801617#M1124287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T09:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype 0008 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801618#M1124288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM :  RP_EVALUATE_INDIRECTLY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 09:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801618#M1124288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T09:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Infotype 0008 problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801619#M1124289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fetch the Basic salary data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  rp_provide_from_last p0008 space g_begda g_endda.&lt;/P&gt;&lt;P&gt;  IF pnp-sw-found = '1'.&lt;/P&gt;&lt;P&gt;    DO 40 TIMES VARYING g_lga01 FROM p0008-lga01 NEXT p0008-lga02&lt;/P&gt;&lt;P&gt;                VARYING g_bet01 FROM p0008-bet01 NEXT p0008-bet02&lt;/P&gt;&lt;P&gt;                VARYING g_anz01 FROM p0008-anz01 NEXT p0008-anz02&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               VARYING g_ein01 FROM p0008-ein01 NEXT p0008-ein02&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                VARYING g_opk01 FROM p0008-opk01 NEXT p0008-opk02&lt;/P&gt;&lt;P&gt;                VARYING g_ind01 FROM p0008-ind01 NEXT p0008-ind02.&lt;/P&gt;&lt;P&gt;      IF g_lga01 IS INITIAL.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-seqnr = sy-index.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-lgart = g_lga01.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-opken = g_opk01.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-betrg = g_bet01.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-waers = p0008-waers.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-indbw = g_ind01.&lt;/P&gt;&lt;P&gt;      i_ptbindbw_line-anzhl = g_anz01.&lt;/P&gt;&lt;P&gt;      APPEND i_ptbindbw_line TO i_ptbindbw.&lt;/P&gt;&lt;P&gt;      CLEAR  i_ptbindbw_line.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT i_ptbindbw[] IS INITIAL.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Function Module to evaluate indirect wage types.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    rp_provide_from_last p0007 space g_begda g_endda.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'RP_EVALUATE_INDIRECTLY_P0008'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        appli                        = 'M'&lt;/P&gt;&lt;P&gt;        pbegda                       = p0008-begda&lt;/P&gt;&lt;P&gt;        pmolga                       = g_molga&lt;/P&gt;&lt;P&gt;        pp0001                       = p0001&lt;/P&gt;&lt;P&gt;        pp0007                       = p0007&lt;/P&gt;&lt;P&gt;        pp0008                       = p0008&lt;/P&gt;&lt;P&gt;        ppernr                       = p0008-pernr&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        ptbindbw                     = i_ptbindbw&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        bad_parameters               = 1&lt;/P&gt;&lt;P&gt;        error_at_indirect_evaluation = 2&lt;/P&gt;&lt;P&gt;        OTHERS                       = 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2008 09:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-0008-problem/m-p/4801619#M1124289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-24T09:47:17Z</dc:date>
    </item>
  </channel>
</rss>

