<?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: ERROR IN PROGRAM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241819#M142326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this program just selects the data from VBAK and displays it in grid or list format according to the radio button selection..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i face a problem with "no fieldcatalog found"...when i execute it I am able to fetch the detaisl into internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Apr 2006 09:12:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-06T09:12:59Z</dc:date>
    <item>
      <title>ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241816#M142323</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;I am new to ABAP..I am facing problem with this code...please let me know whats the error in this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  Z_50657_ALV_EX2 NO STANDARD PAGE HEADING MESSAGE-ID ZZ.
TABLES: VBAK.

TYPE-POOLS: SLIS.

DATA: BEGIN OF ITAB OCCURS 0,
      VBELN LIKE VBAK-VBELN,
      VBTYP LIKE VBAK-VBTYP,
      AUDAT LIKE VBAK-AUDAT,
      AUGRU LIKE VBAK-AUGRU,
      NETWR LIKE VBAK-NETWR,
      WAERK LIKE VBAK-WAERK,
      ICON TYPE ICON-ID,
      END OF ITAB.

DATA: WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
      IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
      LAYOUT TYPE SLIS_LAYOUT_ALV.
******************************************************SELECTION

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.

SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.
PARAMETERS: P_VBTYP LIKE VBAK-VBTYP DEFAULT 'C'.

SELECTION-SCREEN END OF BLOCK B1.

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
PARAMETERS: LIST RADIOBUTTON GROUP G1,
            GRID RADIOBUTTON GROUP G1.

SELECTION-SCREEN END OF BLOCK B2.

********************************************START-OF-SELECTION.
START-OF-SELECTION.

  PERFORM SEARCH_DETAILS.
  PERFORM CHECK_OPTION.


*&amp;amp;--------------------------------------------------------------------*
*&amp;amp;      Form  SEARCH_DETAILS
*&amp;amp;--------------------------------------------------------------------*
*       text
*---------------------------------------------------------------------*
FORM SEARCH_DETAILS.

  SELECT VBELN
         VBTYP
         AUDAT
         AUGRU
         NETWR
         WAERK FROM VBAK INTO TABLE ITAB
         WHERE VBELN IN S_VBELN AND VBTYP = P_VBTYP
         AND ERDAT &amp;gt; '01.01.2004' AND NETWR &amp;gt; 0.

  SORT ITAB BY VBELN VBTYP.

  LOOP AT ITAB.

    IF ITAB-NETWR &amp;lt; 10000.
      ITAB-ICON = '@08@'.

    ELSEIF ITAB-NETWR &amp;gt; 100000.
      ITAB-ICON = '@10@'.

    ELSE.
      ITAB-ICON = '@09@'.

    ENDIF.

    MODIFY ITAB INDEX SY-TABIX.

  ENDLOOP.

ENDFORM.                    "SEARCH_DETAILS

*&amp;amp;--------------------------------------------------------------------*
*&amp;amp;      Form  CHECK_OPTION
*&amp;amp;--------------------------------------------------------------------*
*       text
*---------------------------------------------------------------------*
FORM CHECK_OPTION.

  IF LIST = 'X'.

    PERFORM LIST_DISP.

  ENDIF.
  IF GRID = 'X'.

    PERFORM GRID_DISP.

  ENDIF.

  ENDFORM.                    "CHECK_OPTION


*&amp;amp;--------------------------------------------------------------------*
*&amp;amp;      Form  LIST_DISP
*&amp;amp;--------------------------------------------------------------------*
*       text
*---------------------------------------------------------------------*
FORM LIST_DISP.

  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
      I_PROGRAM_NAME         = SY-REPID
      I_INTERNAL_TABNAME     = 'ITAB'

    CHANGING
      CT_FIELDCAT            = IT_FIELDCAT

    EXCEPTIONS
      INCONSISTENT_INTERFACE = 1
      PROGRAM_ERROR          = 2
      OTHERS                 = 3.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
   EXPORTING
     I_CALLBACK_PROGRAM             = SY-REPID
     IS_LAYOUT                      = LAYOUT
     IT_FIELDCAT                    = IT_FIELDCAT
*   IMPORTING
*     E_EXIT_CAUSED_BY_CALLER        =
*     ES_EXIT_CAUSED_BY_USER         =
    TABLES
     T_OUTTAB                       = ITAB
*   EXCEPTIONS
*     PROGRAM_ERROR                  = 1
*     OTHERS                         = 2
            .
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


ENDFORM.                    "LIST_DISP


*&amp;amp;--------------------------------------------------------------------*
*&amp;amp;      Form  GRID_DISP
*&amp;amp;--------------------------------------------------------------------*
*       text
*---------------------------------------------------------------------*
FORM GRID_DISP.

  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
      I_PROGRAM_NAME         = SY-REPID
      I_INTERNAL_TABNAME     = 'ITAB'

    CHANGING
      CT_FIELDCAT            = IT_FIELDCAT

    EXCEPTIONS
      INCONSISTENT_INTERFACE = 1
      PROGRAM_ERROR          = 2
      OTHERS                 = 3.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

 EXPORTING
   I_CALLBACK_PROGRAM                = SY-REPID
   IS_LAYOUT                         = LAYOUT
   IT_FIELDCAT                       = IT_FIELDCAT

    TABLES
      T_OUTTAB                       = ITAB

* EXCEPTIONS
*   PROGRAM_ERROR                     = 1
*   OTHERS                            = 2
            .
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


ENDFORM.                    "GRID_DISP&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241816#M142323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241817#M142324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The program have no problem with the activation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241817#M142324</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-04-06T09:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241818#M142325</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;Which is the problem exactly? Message error, isn't it compiling...?&lt;/P&gt;&lt;P&gt;I've tried it and it compiles. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mireia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241818#M142325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241819#M142326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this program just selects the data from VBAK and displays it in grid or list format according to the radio button selection..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i face a problem with "no fieldcatalog found"...when i execute it I am able to fetch the detaisl into internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241819#M142326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241820#M142327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
      I_PROGRAM_NAME         = SY-REPID
      I_INTERNAL_TABNAME     = 'ITAB'
      &amp;lt;b&amp;gt;I_INCLNAME             = sy-repid&amp;lt;/b&amp;gt;
    CHANGING
      CT_FIELDCAT            = IT_FIELDCAT
    
    EXCEPTIONS
      INCONSISTENT_INTERFACE = 1
      PROGRAM_ERROR          = 2
      OTHERS                 = 3.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add the bold one.&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, 06 Apr 2006 09:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241820#M142327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241821#M142328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what error u r getting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where is perform statement for list_disp / grid_disp?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241821#M142328</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-04-06T09:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241822#M142329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;be carefull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use the function REUSE_ALV_FIELDCATALOG_MERGE, the internal table must be declare only with the LIKE not the TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241822#M142329</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-04-06T09:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241823#M142330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is a problem with the generation of field catalog from an internal table. I was also having problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, to test you can try generating it from VBAK table and pass VBAK to the STRUCTURE parameter in the field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if the field catalog is getting generated or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241823#M142330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241824#M142331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is solved, thanks for ur replies, vijays post helped in that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the perform is according to the radio button selected oruganti....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;btw vijay what does this do&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

I_INCLNAME             = sy-repid

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we have already mentioned the program name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

I_PROGRAM_NAME         = SY-REPID

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rahul Kavuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:17:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241824#M142331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241825#M142332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_PROGRAM_NAME         = SY-REPID&lt;/P&gt;&lt;P&gt;      I_INTERNAL_TABNAME     = 'ITAB'&lt;/P&gt;&lt;P&gt;      I_INCLNAME            = SY-REPID&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      CT_FIELDCAT            = IT_FIELDCAT&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      INCONSISTENT_INTERFACE = 1&lt;/P&gt;&lt;P&gt;      PROGRAM_ERROR          = 2&lt;/P&gt;&lt;P&gt;      OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;THANKS,&lt;/P&gt;&lt;P&gt;PRIYA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:19:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241825#M142332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241826#M142333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of finding a fieldcatalog in the workbench dictionnary, your program tries to find the structure of the table in the description you have done at the top of the program.&lt;/P&gt;&lt;P&gt;That works, but there was some buffer problem, you must set to by-pass buffer, or each time you made change, you will not see anything change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-REPID is the actual program execute. Look the structure SYST (with the transaction SE11).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241826#M142333</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-04-06T09:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR IN PROGRAM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241827#M142334</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;it is used to include the program while building the catalog, it reads the report and build the fieldcat from itab.&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, 06 Apr 2006 09:28:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-program/m-p/1241827#M142334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-06T09:28:11Z</dc:date>
    </item>
  </channel>
</rss>

