<?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: function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950132#M944410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi here is the code for the simple alv display..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ztest_alv_perc_13317.&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;DATA: it_fieldcat TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcat TYPE slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      it_events TYPE slis_t_event,&lt;/P&gt;&lt;P&gt;      wa_events TYPE slis_alv_event,&lt;/P&gt;&lt;P&gt;      it_sort TYPE slis_t_sortinfo_alv,&lt;/P&gt;&lt;P&gt;      wa_sort TYPE slis_sortinfo_alv,&lt;/P&gt;&lt;P&gt;      l_layout TYPE slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_itab,&lt;/P&gt;&lt;P&gt;        field1(10),&lt;/P&gt;&lt;P&gt;        qty1 TYPE i,&lt;/P&gt;&lt;P&gt;        qty2 TYPE i,&lt;/P&gt;&lt;P&gt;        qty3 TYPE i,&lt;/P&gt;&lt;P&gt;        dummy TYPE i,&lt;/P&gt;&lt;P&gt;      END OF ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE STANDARD TABLE OF ty_itab WITH  HEADER LINE,&lt;/P&gt;&lt;P&gt;itab1 TYPE ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'FIELD1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 2.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field2'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 3.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY2'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field3'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 4.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY3'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field4'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 5.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'DUMMY'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field5'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     it_fieldcat                    = it_fieldcat&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab                       = itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Jun 2008 05:10:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-07T05:10:50Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950129#M944407</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 m totally nem to fm. &lt;/P&gt;&lt;P&gt;i m reading a already developed code, having use of function module. Plz tell me in this code how we pass th parametr(criteria)like g_repid.....'x'.Plz explain line by line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      i_callback_program      = g_repid&lt;/P&gt;&lt;P&gt;      i_callback_user_command = g_user_command&lt;/P&gt;&lt;P&gt;      it_fieldcat             = fieldcat[]&lt;/P&gt;&lt;P&gt;      it_events               = per_event&lt;/P&gt;&lt;P&gt;      i_bypassing_buffer      = 'X'&lt;/P&gt;&lt;P&gt;      i_save                  = 'A'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      t_outtab                = it_pursumry&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      program_error           = 1&lt;/P&gt;&lt;P&gt;      others                  = 2.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " DISPLAY_ALV&lt;/P&gt;&lt;P&gt;Definitely Rewards pts&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Savita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 04:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950129#M944407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T04:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950130#M944408</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_callback_program = g_repid&lt;/P&gt;&lt;P&gt;means we are telling that the program from where the ALv is called is the program name which is stored in g_repid.......&lt;/P&gt;&lt;P&gt;u can populate value in this by g_repid = sy-repid.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_callback_user_command = g_user_command&lt;/P&gt;&lt;P&gt;if at click of any button on the ALV grid u want any user defined action to happen then and can be defined in this usercommand..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_fieldcat = fieldcat[]&lt;/P&gt;&lt;P&gt;if has the format of ur ALV...... like if u want color in ur ALV display ..... or any input enabled field ....... headings.....etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful.......:-)&lt;/P&gt;&lt;P&gt;and mark the post answred once ur problem is solved .... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 04:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950130#M944408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T04:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950131#M944409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REUSE_ALV_LIST_DISPLAY  is a function module used to display reports in ALV format. In which we can pass the values in exporting parameters and get the result in importing parameters.&lt;/P&gt;&lt;P&gt;1) i_callback_program --&amp;gt; you can pass your current program name or any ABAP progam.&lt;/P&gt;&lt;P&gt;2) i_callback_user_command --&amp;gt; you can pass user command like sy-ucomm. what you click it perfoms.&lt;/P&gt;&lt;P&gt;3) it_fieldcat --&amp;gt; you have to pass the field catlog structure..&lt;/P&gt;&lt;P&gt;4) it_events &lt;DEL&gt;-&amp;gt; here you can pass SLIS_T_EVENT&lt;/DEL&gt;- that Table of events to perform.&lt;/P&gt;&lt;P&gt;5) i_bypassing_buffer --&amp;gt; to skip all buffers&lt;/P&gt;&lt;P&gt;6) i_save----&amp;gt; Variants can be saved&lt;/P&gt;&lt;P&gt;7) t_outtab ---&amp;gt; Table with data to be displayed&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; exceptions ---&amp;gt; errors can be handled here.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 04:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950131#M944409</guid>
      <dc:creator>raja_narayanan2</dc:creator>
      <dc:date>2008-06-07T04:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950132#M944410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi here is the code for the simple alv display..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ztest_alv_perc_13317.&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;DATA: it_fieldcat TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcat TYPE slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      it_events TYPE slis_t_event,&lt;/P&gt;&lt;P&gt;      wa_events TYPE slis_alv_event,&lt;/P&gt;&lt;P&gt;      it_sort TYPE slis_t_sortinfo_alv,&lt;/P&gt;&lt;P&gt;      wa_sort TYPE slis_sortinfo_alv,&lt;/P&gt;&lt;P&gt;      l_layout TYPE slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_itab,&lt;/P&gt;&lt;P&gt;        field1(10),&lt;/P&gt;&lt;P&gt;        qty1 TYPE i,&lt;/P&gt;&lt;P&gt;        qty2 TYPE i,&lt;/P&gt;&lt;P&gt;        qty3 TYPE i,&lt;/P&gt;&lt;P&gt;        dummy TYPE i,&lt;/P&gt;&lt;P&gt;      END OF ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE STANDARD TABLE OF ty_itab WITH  HEADER LINE,&lt;/P&gt;&lt;P&gt;itab1 TYPE ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-field1 = 'FIRST'.&lt;/P&gt;&lt;P&gt;  itab-qty1 = 2.&lt;/P&gt;&lt;P&gt;  itab-qty2 = 1.&lt;/P&gt;&lt;P&gt;  itab-qty3 = 5.&lt;/P&gt;&lt;P&gt;  itab-dummy = 10.&lt;/P&gt;&lt;P&gt;  APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'FIELD1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 2.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field2'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 3.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY2'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field3'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 4.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'QTY3'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field4'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 5.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'DUMMY'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-tabname = 'ITAB'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-reptext_ddic = 'field5'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     it_fieldcat                    = it_fieldcat&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab                       = itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 05:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950132#M944410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T05:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950133#M944411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajantha,&lt;/P&gt;&lt;P&gt;Plz explain me this line&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Savita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 05:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950133#M944411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T05:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950134#M944412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the system message ..when an error message occured it will shown automatically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 05:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950134#M944412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T05:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950135#M944413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;     while calling ALV if any error occurs then this this Sy fields  will conatin the information which will be displayed on the screen&lt;/P&gt;&lt;P&gt;sy-msgid - msg id &lt;/P&gt;&lt;P&gt;sy-msgty - error / information/ warning &lt;/P&gt;&lt;P&gt;sy-msgno - msg number &lt;/P&gt;&lt;P&gt;sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4--- this will have some text more decriptive&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2008 09:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3950135#M944413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-07T09:39:48Z</dc:date>
    </item>
  </channel>
</rss>

