<?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: wage type calculation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044995#M1351423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; Hi Thiru, 
&amp;lt;li&amp;gt;To avoid that error, Go to &lt;STRONG&gt;attributes&lt;/STRONG&gt; of the program in SE38, Uncheck the &lt;STRONG&gt;Unicode checks active&lt;/STRONG&gt; checkbox.
&amp;lt;li&amp;gt; Check syntax.
I hope that it solves ur problem.
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Aug 2009 06:47:22 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2009-08-05T06:47:22Z</dc:date>
    <item>
      <title>wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044992#M1351420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;                         For applicant salary will be  maintained in pb30 T-code 8 infotype, they may select any wage type and provide amount there,  it may be getting stored sequentially in pb0008 table, but i need for 1010 wage type and i want to know in which bet-- field it's getting stored. is there any logic behind this or send some sample codes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Thirukumaran. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 11:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044992#M1351420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-04T11:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044993#M1351421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Thirukumaran, 
&amp;lt;li&amp;gt; You need to handle infotype 0008 and infotype 0041 in HR programming.
&lt;PRE&gt;&lt;CODE&gt; REPORT ztest_notepad.
 TABLES:pernr.
 INFOTYPES: 0008.
 DATA: BEGIN OF wagetypes,
         lga LIKE p0008-lga01,
         bet LIKE p0008-bet01,
         anz LIKE p0008-anz01,
         ein LIKE p0008-ein01,
         opk LIKE p0008-opk01,
       END OF wagetypes.

 GET pernr.
   rp_provide_from_last p0008 space pn-begda pn-endda.
   DO 20 TIMES VARYING wagetypes  FROM p0008-lga01  NEXT p0008-lga02.
     IF wagetypes-lga IS INITIAL.
       EXIT.
     ELSEIF wagetypes-lga = '1010'.
       WRITE: / wagetypes-lga, wagetypes-bet.
     ENDIF.
   ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 03:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044993#M1351421</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-08-05T03:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044994#M1351422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat,&lt;/P&gt;&lt;P&gt;thanks for ur reply, but it's giving error  p008-lga and wagetype are not type compatible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and REgards,&lt;/P&gt;&lt;P&gt;Thirukumaran. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 06:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044994#M1351422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-05T06:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044995#M1351423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; Hi Thiru, 
&amp;lt;li&amp;gt;To avoid that error, Go to &lt;STRONG&gt;attributes&lt;/STRONG&gt; of the program in SE38, Uncheck the &lt;STRONG&gt;Unicode checks active&lt;/STRONG&gt; checkbox.
&amp;lt;li&amp;gt; Check syntax.
I hope that it solves ur problem.
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 06:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044995#M1351423</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-08-05T06:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044996#M1351424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
 REPORT ztest_notepad.
 TABLES:pernr.
 INFOTYPES: 0008.
 DATA: BEGIN OF wagetypes,
         lga LIKE p0008-lga01,
         bet LIKE p0008-bet01,
       END OF wagetypes.
 
 GET pernr.
   rp_provide_from_last p0008 space pn-begda pn-endda.
   DO 20 TIMES 
     VARYING wagetypes-lga  FROM p0008-lga01  NEXT p0008-lga02
     varying wagetypes-bet from p008-bet01 next p0008-bet02.
     IF wagetypes-lga IS INITIAL.
       EXIT.
     ELSEIF wagetypes-lga = '1010'.
       WRITE: / wagetypes-lga, wagetypes-bet.
     ENDIF.
   ENDDO.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 06:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044996#M1351424</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-08-05T06:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044997#M1351425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unchecking the unicode is a bad idea. Unchecking the unicode on a unicode system is a worst idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 06:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044997#M1351425</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-08-05T06:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: wage type calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044998#M1351426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks dear.&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2009 07:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/wage-type-calculation/m-p/6044998#M1351426</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-08-05T07:28:49Z</dc:date>
    </item>
  </channel>
</rss>

