<?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: Reg : Screen Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012790#M958783</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i tried &lt;/P&gt;&lt;P&gt;wa_events-appl_event = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the register events i achived what i required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2008 09:13:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-01T09:13:59Z</dc:date>
    <item>
      <title>Reg : Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012787#M958780</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; Currently am working in time sheet in screen programming. Am bringing the calendar control using custom controller concepts, which the code as follows,&lt;/P&gt;&lt;P&gt;CLASS lcl_event_receiver DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS dateselected&lt;/P&gt;&lt;P&gt;            FOR EVENT date_selected OF cl_gui_calendar&lt;/P&gt;&lt;P&gt;            IMPORTING date_begin&lt;/P&gt;&lt;P&gt;                      date_end.&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_event_receiver DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_event_receiver IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD dateselected.&lt;/P&gt;&lt;P&gt;    if not date_begin is INITIAL.&lt;/P&gt;&lt;P&gt;      PERFORM determine_monday using date_begin.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.   &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TO register events&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;  wa_events-eventid    = h_dat_calendar-&amp;gt;m_id_date_selected.&lt;/P&gt;&lt;P&gt;    wa_events-appl_event = ' '.&lt;/P&gt;&lt;P&gt;    APPEND wa_events TO events.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;    CALL METHOD h_dat_calendar-&amp;gt;set_registered_events&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        events                    = events&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        cntl_error                = 1&lt;/P&gt;&lt;P&gt;        cntl_system_error         = 2&lt;/P&gt;&lt;P&gt;      illegal_event_combination = 3.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Object creation for container&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;      CREATE OBJECT h_dat_container&lt;/P&gt;&lt;P&gt;        EXPORTING container_name = 'DATEPICKER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object creation for the date selected.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;  CREATE OBJECT event_receiver.&lt;/P&gt;&lt;P&gt;    SET HANDLER event_receiver-&amp;gt;dateselected FOR h_dat_calendar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when clicking a particular day on a calendar i can get a day through the set_registered events, my problem was after the method and endmethod it stops as such displaying the screen instead of going to the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After clicking the date it should go to PBO how can i acheive this scenario?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 12:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012787#M958780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T12:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012788#M958781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After user action, the program flows to PAI, and then to PBO (not directly to PBO).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 12:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012788#M958781</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-06-09T12:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012789#M958782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Valter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry i missed that point its not even goin to PAI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 12:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012789#M958782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T12:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reg : Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012790#M958783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i tried &lt;/P&gt;&lt;P&gt;wa_events-appl_event = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the register events i achived what i required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 09:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-programming/m-p/4012790#M958783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T09:13:59Z</dc:date>
    </item>
  </channel>
</rss>

