<?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: Auto-refresh for a dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153044#M118029</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 this class cl_gui_timer , it may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check in the forum..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2006 16:15:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-02T16:15:38Z</dc:date>
    <item>
      <title>Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153042#M118027</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;I'm having a problem with a dynpro created using the Screen Painter. I need an auto-refresh function (every tot seconds) but I'm not able to do it managing the PBO and PAI modules.&lt;/P&gt;&lt;P&gt;Can you help me, please? &lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 16:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153042#M118027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T16:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153043#M118028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, check out this sample program.  Here we are updating a dynpro every couple secods, we are showing the date and time.  It uses the class CL_GUI_TIMER.  If you are on a release eariler than 6.20,  you can do as I've done here and implemnent the timer as a local class.  In newer version the CL_GUI_TIMER class is global.  You can of course create a "ZCL_GUI_TIMER" global class with the code from the local class in this example.  Create a screen 100, and put the date and time fields.  Then run it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0003 .

* THIS IS A LOCAL IMPLEMENTATION OF THE CL_GUI_TIMER WHICH IS AVALIABLE
* IN WAS 6.2
*
* Add the following elements to screen 100

*SY-DATUM	      I/O	1	2	10	10	1	DATS
*SY-UZEIT	      I/O	2	2	10	10	1	TIMS
*TIMER_CONTAINER   CCtrl	19	1	1	1	1
*OK_CODE	      OK	0	0	20	20	1	 OK
*---------------------------------------------------------------------*
*       CLASS lcl_gui_timer DEFINITION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_gui_timer definition inheriting from cl_gui_control.

  public section.

    constants:  eventid_finished type i value 1 .

    class-data: interval type i value '0'.

    events:     finished .

    methods:
             cancel
                  exceptions
                     error,
             constructor
                 importing
                     lifetime type i optional
                     value(shellstyle) type i optional
                     value(parent) type ref to cl_gui_container optional
                 exceptions
                     error,
             run
                 exceptions
                     error,
             dispatch redefinition.


endclass.

*---------------------------------------------------------------------*
*       CLASS lcl_event_handler DEFINITION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_event_handler definition.

  public section.

    class-methods: on_finished for event finished of lcl_gui_timer.

endclass.

data: gui_timer type ref to lcl_gui_timer.
data: event_handler type ref to lcl_event_handler.
data: timeout type i value '3'.
data: ok_code like sy-ucomm,
      save_ok like sy-ucomm.


call screen 100.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0100 output.
  set pf-status '0100'.
*  SET TITLEBAR 'xxx'.

    create object gui_timer.

    set handler event_handler-&amp;gt;on_finished for gui_timer.

    gui_timer-&amp;gt;interval = timeout.
    call method gui_timer-&amp;gt;run.

endmodule.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

  save_ok = ok_code.
  case ok_code.
    when 'BACK'.
      leave program.
  endcase.

endmodule.


*---------------------------------------------------------------------*
*       CLASS lcl_event_handler IMPLEMENTATION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_event_handler implementation.

  method on_finished.

* Start Timer again
    gui_timer-&amp;gt;interval = timeout.
    call method gui_timer-&amp;gt;run.

* cause PAI
    call method cl_gui_cfw=&amp;gt;set_new_ok_code
    exporting
    new_code = 'REFR'.

  endmethod.

endclass.

*---------------------------------------------------------------------*
*       CLASS lcl_gui_timer IMPLEMENTATION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_gui_timer implementation.

  method constructor.

    type-pools: sfes.

    data clsid(80).
    data event_tab type cntl_simple_events.
    data event_tab_line type cntl_simple_event.

    if clsid is initial.
      data: return,
            guitype type i.

      guitype = 0.
      call function 'GUI_HAS_OBJECTS'
           exporting
                object_model = sfes_obj_activex
           importing
                return       = return
           exceptions
                others       = 1.
      if sy-subrc ne 0.
        raise error.
      endif.

      if return = 'X'.
        guitype = 1.
      endif.
      if guitype = 0.
        call function 'GUI_HAS_OBJECTS'
             exporting
                  object_model = sfes_obj_javabeans
             importing
                  return       = return
             exceptions
                  others       = 1.
        if sy-subrc ne 0.
          raise error.
        endif.

        if return = 'X'.
          guitype = 2.
        endif.
      endif.

      case guitype.
        when 1.
          clsid = 'Sapgui.InfoCtrl.1'.
        when 2.
          clsid = 'com.sap.components.controls.sapImage.SapImage'.
      endcase.
    endif.

    call method super-&amp;gt;constructor
      exporting
        clsid = clsid
        shellstyle = 0
        parent = cl_gui_container=&amp;gt;default_screen
        autoalign = space
         exceptions others = 1.
    if sy-subrc ne 0.
      raise error.
    endif.

    call method cl_gui_cfw=&amp;gt;subscribe
      exporting
         shellid = h_control-shellid
         ref = me
         exceptions others = 1.
    if sy-subrc ne 0.
      raise error.
    endif.

* Register the events
    event_tab_line-eventid = lcl_gui_timer=&amp;gt;eventid_finished.
    append event_tab_line to event_tab.

    call method set_registered_events
      exporting
        events = event_tab.

  endmethod.

  method cancel.

    call method call_method
        exporting
                  method  = 'SetTimer'
                  p_count = 1
                  p1      = -1
                  queue_only = 'X'
         exceptions others = 1.
    if sy-subrc ne 0.
      raise error.
    endif.


  endmethod.

  method run.

    call method call_method
        exporting
                  method = 'SetTimer'
                  p_count = 1
                  p1     = interval
                  queue_only = 'X'
         exceptions others = 1.
    if sy-subrc ne 0.
      raise error.
    endif.


  endmethod.

  method dispatch .

    case eventid.
      when  eventid_finished.
        raise event finished.

    endcase.

  endmethod.

endclass.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 16:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153043#M118028</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T16:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153044#M118029</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 this class cl_gui_timer , it may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check in the forum..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 16:15:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153044#M118029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T16:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153045#M118030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course, if you are on newer version and the class does exists, then the code is a lot shorter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0003 .

* THIS IS A LOCAL IMPLEMENTATION OF THE CL_GUI_TIMER WHICH IS AVALIABLE
* IN WAS 6.2
*
* Add the following elements to screen 100

*SY-DATUM	      I/O	1	2	10	10	1	DATS
*SY-UZEIT	      I/O	2	2	10	10	1	TIMS
*TIMER_CONTAINER   CCtrl	19	1	1	1	1
*OK_CODE	      OK	0	0	20	20	1	 OK
*---------------------------------------------------------------------*
*       CLASS lcl_event_handler DEFINITION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_event_handler definition.

  public section.

    class-methods: on_finished for event finished of lcl_gui_timer.

endclass.

data: gui_timer type ref to &amp;lt;b&amp;gt;cl_gui_timer&amp;lt;/b&amp;gt;.
data: event_handler type ref to lcl_event_handler.
data: timeout type i value '3'.
data: ok_code like sy-ucomm,
      save_ok like sy-ucomm.


call screen 100.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0100 output.
  set pf-status '0100'.
*  SET TITLEBAR 'xxx'.

    create object gui_timer.

    set handler event_handler-&amp;gt;on_finished for gui_timer.

    gui_timer-&amp;gt;interval = timeout.
    call method gui_timer-&amp;gt;run.

endmodule.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

  save_ok = ok_code.
  case ok_code.
    when 'BACK'.
      leave program.
  endcase.

endmodule.


*---------------------------------------------------------------------*
*       CLASS lcl_event_handler IMPLEMENTATION
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
class lcl_event_handler implementation.

  method on_finished.

* Start Timer again
    gui_timer-&amp;gt;interval = timeout.
    call method gui_timer-&amp;gt;run.

* cause PAI
    call method cl_gui_cfw=&amp;gt;set_new_ok_code
    exporting
    new_code = 'REFR'.

  endmethod.

endclass.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please remember to award points for helpful answers and mark this post as solved when solved completely.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regadrds,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 16:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153045#M118030</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T16:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153046#M118031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Rich, it works, but I need another help if you can. In my dynpro there's a dynamic document whose data is not updated after the refresh.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 17:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153046#M118031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T17:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153047#M118032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When refreshing you need to make sure that you are re-reading the data for the dynamic document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please remember to award points for helpful answers and mark you post as solved when solved completely.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 17:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153047#M118032</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T17:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153048#M118033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data are re-read but if I set the parameter reuse_control (of method display_document) to 'X' I receive a dump... do you know why?&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 17:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153048#M118033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T17:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153049#M118034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't work this dynamic documents.  It may be better to open a separate thread for that problem.  Please make sure to award and close this thread.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 17:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153049#M118034</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T17:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153050#M118035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thank you very much again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,Angelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 17:42:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153050#M118035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T17:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Auto-refresh for a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153051#M118036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT ZAUTO_REFRESH .
DATA: G_INIT_ONCE,
      OK_CODE(20),
      G_REF_FROM_TIMER.

DATA: BEGIN OF ITAB OCCURS 0,
        CARRID TYPE SPFLI-CARRID,
        CONNID TYPE SPFLI-CONNID,
        COUNTRYFR TYPE SPFLI-COUNTRYFR,
        CITYFROM TYPE SPFLI-CITYFROM,
        AIRPFROM TYPE SPFLI-AIRPFROM,
        COUNTRYTO TYPE SPFLI-COUNTRYTO,
        CITYTO TYPE SPFLI-CITYTO,
        AIRPTO TYPE SPFLI-AIRPTO,
        FLTIME TYPE SPFLI-FLTIME,
        DEPTIME TYPE SPFLI-DEPTIME,
        ARRTIME TYPE SPFLI-ARRTIME,
        DISTANCE TYPE SPFLI-DISTANCE,
        DISTID TYPE SPFLI-DISTID,
        FLTYPE TYPE SPFLI-FLTYPE,
        PERIOD TYPE SPFLI-PERIOD,
      END OF ITAB.


IF G_INIT_ONCE &amp;lt;&amp;gt; 'X'.
  G_INIT_ONCE = 'X'.
  CALL FUNCTION 'Z_ENQUE_SLEEP'
     STARTING NEW TASK 'WAIT'
     PERFORMING WHEN_FINISHED ON END OF TASK.

ENDIF.

WRITE:/ 'wait for 10 sec....'.

AT USER-COMMAND.
  CASE OK_CODE.
    WHEN 'FCT_R'.
      SELECT * FROM SPFLI INTO CORRESPONDING FIELDS OF TABLE ITAB.
      WRITE:/ SY-UZEIT.
      LOOP AT ITAB.
        WRITE:/ ITAB-CARRID,ITAB-CONNID.
      ENDLOOP.
      SY-LSIND = 0.
      IF G_REF_FROM_TIMER = 'X'.

        CALL FUNCTION 'Z_ENQUE_SLEEP'
          STARTING NEW TASK 'INFO'
          PERFORMING WHEN_FINISHED ON END OF TASK.

        G_REF_FROM_TIMER = ''.
      ENDIF.
  ENDCASE.


*---------------------------------------------------------------------*
*       FORM WHEN_FINISHED                                            *
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
*  --&amp;gt;  TASKNAME                                                      *
*---------------------------------------------------------------------*
FORM WHEN_FINISHED USING TASKNAME.
  RECEIVE RESULTS FROM FUNCTION 'Z_ENQUE_SLEEP'.

  G_REF_FROM_TIMER = 'X'.

* Trigger an event to run the at user-command
  SET USER-COMMAND 'FCT_R'.
  OK_CODE = 'FCT_R'.
  SY-UCOMM = 'FCT_R'.

ENDFORM.                    " WHEN_FINISHED

*************************************************************************

Function Module for refreshing the report (in SE37)


FUNCTION Z_ENQUE_SLEEP.
*"----------------------------------------------------------------------
*"*"Local interface:
*"----------------------------------------------------------------------

CALL FUNCTION 'ENQUE_SLEEP'
          EXPORTING
           SECONDS = 10.

ENDFUNCTION.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 04:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/auto-refresh-for-a-dynpro/m-p/1153051#M118036</guid>
      <dc:creator>mandar_shete</dc:creator>
      <dc:date>2006-02-03T04:48:15Z</dc:date>
    </item>
  </channel>
</rss>

