<?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: Interactive hr report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034918#M417904</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the command&lt;/P&gt;&lt;P&gt;  get cursor field lv_field value lv_value.&lt;/P&gt;&lt;P&gt;and use the double click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Mar 2007 09:23:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-13T09:23:11Z</dc:date>
    <item>
      <title>Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034916#M417902</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 created an interactive HR report using PNP LDB ... but I have a problem .... it is taking me to the next screen wherever i click ...... and I want to restricted to personnel no..... so that whenever i click on personnel no. it should take me to the next screen ...... any suggestions please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034916#M417902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T09:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034917#M417903</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;Usin HIDE statement after the WRITE of the PERNR field, wherever you click you get the output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To avoid this use GET CURSOR FIELD &amp;lt;f&amp;gt; VALUE &amp;lt;v&amp;gt; and in thje AT LINE-SELECTION event check for field variable &amp;lt;v&amp;gt; to be ITAB-PERNR and only then process the list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034917#M417903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T09:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034918#M417904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the command&lt;/P&gt;&lt;P&gt;  get cursor field lv_field value lv_value.&lt;/P&gt;&lt;P&gt;and use the double click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034918#M417904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T09:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034919#M417905</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; Check the following code.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data for REPORT1 into itab1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  PERFORM write_report1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Write list header for REPORT1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Respond when the user presses a function key&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CASE sy-ucomm.                &lt;/P&gt;&lt;P&gt;   WHEN 'REPORT2'.                 &lt;/P&gt;&lt;P&gt;     PERFORM write_reprt2.   &lt;/P&gt;&lt;P&gt;   WHEN 'REPORT3'.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     PERFORM write_reprt3.   &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.                                                  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Istead of pressing a button can perform the same actions &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;as i AT USER-COMMAND, by double clicking a line  &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;sy-lsind contains the list level.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Each time an interactive list event occurs, sy-lsind is&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;automatically increased by 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;At REPORT1 sy-lsin = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sy-lsind.                                                    &lt;/P&gt;&lt;P&gt;    WHEN 1.                                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       PERFORM write_reprt2.   &lt;/P&gt;&lt;P&gt;    WHEN 2.                                                         &lt;/P&gt;&lt;P&gt;       PERFORM write_reprt3.   &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write report header for report1 ( sy-lsind = 0 )&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.                        &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write report header for sub reports&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   CASE sy-lsind.                                          &lt;/P&gt;&lt;P&gt;     WHEN 1.                                               &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Write report header for REPORT2.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     WHEN 2.                                               &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Write report header for REPORT3.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE_REPORT1.    &lt;/P&gt;&lt;P&gt;   LOOP at itab1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    write report1....... &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Hide keyfields used for the select statement of&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    report2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      HIDE: itab1_year, itab1_month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ENDLOOP.       &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE_REPORT2.    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT * FROM databasetable2 into itab2&lt;/P&gt;&lt;P&gt;      WHERE year   = itab1_year AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            month  = itab1_month.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;   LOOP at itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    write report2 .......&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Hide keyfields used for the select statement of&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    report3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      HIDE: itab2_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ENDLOOP.       &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE_REPORT3.    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT * FROM databasetable3 into itab3&lt;/P&gt;&lt;P&gt;      WHERE carrid   = itab2_carrid.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   LOOP at itab3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    write report3 .......&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    No need to hide keyfields, as further drill down is not&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    possible&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ENDLOOP.       &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck and reward points for the same&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034919#M417905</guid>
      <dc:creator>ashok_kumar24</dc:creator>
      <dc:date>2007-03-13T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034920#M417906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I'm doing and it is not working as required can you check it please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p0000-pernr ne wa_employee-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    message i001(00) with error'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    GET CURSOR FIELD get_pernr value p0000-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SET PARAMETER ID 'PER' FIELD p0000-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call transaction 'PA20'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:37:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034920#M417906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T09:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034921#M417907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD get_pernr value p0000-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'PER' FIELD p0000-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'PA20' and skip first screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 09:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034921#M417907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T09:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034922#M417908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can u tell me in which event u have written this code.If u have written in GET PERNR, then fine. Outside GET PERNR, the internal table p0000 will have the contents of the last looped PERNR. So the following condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if p0000-pernr ne wa_employee-pernr.&amp;lt;/b&amp;gt;  is somewhat misleading.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 10:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034922#M417908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T10:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034923#M417909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used it in end-of-selection event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 10:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034923#M417909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T10:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034924#M417910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any suggestions please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 10:22:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034924#M417910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T10:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034925#M417911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u tell me how is data coming into p0000-pernr before the if condition&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if p0000-pernr ne wa_employee-pernr&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also paste the whole code so as to understand the exact flow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 10:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034925#M417911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T10:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive hr report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034926#M417912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiiiii 2 all.&lt;/P&gt;&lt;P&gt;This is Ron&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guyz if suppose my 1st screen contain of name n address &lt;/P&gt;&lt;P&gt; and when i clk name it shld display age, d.o.b &lt;/P&gt;&lt;P&gt;and when i clk address it shld display me add info &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wht shld i rite in case &lt;/P&gt;&lt;P&gt;when 1&lt;/P&gt;&lt;P&gt;___________________________________&lt;/P&gt;&lt;P&gt;_______________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Apr 2007 17:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-hr-report/m-p/2034926#M417912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-14T17:50:55Z</dc:date>
    </item>
  </channel>
</rss>

