<?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: Help plz in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-plz/m-p/1992158#M404621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks everybody&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 04 Mar 2007 08:29:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-04T08:29:58Z</dc:date>
    <item>
      <title>Help plz</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-plz/m-p/1992157#M404620</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 need to select active employee,get his/her name from infotype 0001and work schedule from infotype 0007. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_output,&lt;/P&gt;&lt;P&gt;   pernr  like p0000-PERNR,&lt;/P&gt;&lt;P&gt;   STAT2  like p0000-STAT2,&lt;/P&gt;&lt;P&gt;   ENAME  like p0001-Ename,&lt;/P&gt;&lt;P&gt;   SCHKZ  like p0007-SCHKZ,&lt;/P&gt;&lt;P&gt;   BEGDA  like p0000-BEGDA,&lt;/P&gt;&lt;P&gt;   ENDDA  like p0000-ENDDA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF i_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INFOTYPES: 0000,   &lt;/P&gt;&lt;P&gt;           0001,  &lt;/P&gt;&lt;P&gt;           0007.   &lt;/P&gt;&lt;P&gt;           &lt;/P&gt;&lt;P&gt;constants: c_1(1)       type c   value '1', &lt;/P&gt;&lt;P&gt;           c_3(1)       type c   value '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Initialize Selection-Screen values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform init_selction_screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0000 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check p0000-stat2 in pnpstat2.      "pernr Active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0001 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p0000-pernr, p0000-begda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0007 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p0007-pernr, p0007-begda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  init_selction_screen&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Description:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM init_selction_screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: pnppersg,   &lt;/P&gt;&lt;P&gt;           pnpstat2.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear:   pnppersg,&lt;/P&gt;&lt;P&gt;           pnpstat2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  pnppersg-low    = c_1.&lt;/P&gt;&lt;P&gt;  append pnppersg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  pnpstat2-low    = c_3. &lt;/P&gt;&lt;P&gt;  append pnpstat2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " init_selction_screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having run the following gives me 2 problems :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1- I get this message --&amp;gt; " Don't use the get pernr event " and leaves the programe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To solve that I comment get pernr as follow :&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Initialize Selection-Screen values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform init_selction_screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;get pernr.&amp;lt;/b&amp;gt; commented&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0000 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check p0000-stat2 in pnpstat2.      "pernr Active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0001 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p0000-pernr, p0000-begda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  rp_provide_from_last p0007 space pn-begda pn-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check pnp-sw-found eq c_1.&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p0007-pernr, p0007-begda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  init_selction_screen&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Description:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM init_selction_screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: pnppersg,   &lt;/P&gt;&lt;P&gt;           pnpstat2.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear:   pnppersg,&lt;/P&gt;&lt;P&gt;           pnpstat2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  pnppersg-low    = c_1.&lt;/P&gt;&lt;P&gt;  append pnppersg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  pnpstat2-low    = c_3. &lt;/P&gt;&lt;P&gt;  append pnpstat2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " init_selction_screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I got this second problem when running -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; " This report is obsolete ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what is the problem please?  Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Mar 2007 04:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-plz/m-p/1992157#M404620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-04T04:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help plz</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-plz/m-p/1992158#M404621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks everybody&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Mar 2007 08:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-plz/m-p/1992158#M404621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-04T08:29:58Z</dc:date>
    </item>
  </channel>
</rss>

