<?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: Regarding message table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105444#M1616837</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;Sorry guys, I am not able understand..&lt;/P&gt;&lt;P&gt;let me put the code  here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; L_ITAB_SIIRESEIKYU     TYPE STANDARD TABLE OF ZSXXRESEIKYU,&lt;/P&gt;&lt;P&gt; L_FLD_SIIRESEIKYU       TYPE ZSXXRESEIKYU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-DUNSNR = 'X'.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-BUDAT = BKPF-BUDAT.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-LIFNR = BSEG-LIFNR.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-XREF1 = BSEG-XREF1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZXXXXX'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     F_IP_BUKRS                =  L_V_BUKRS&lt;/P&gt;&lt;P&gt;     F_IP_CHK_SIIRESEIKYU      =  L_ITAB_SIIRESEIKYU&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    F_EP_CHK_SIIRESEIKYU         = L_ITAB_TIIRESEIKYU&lt;/P&gt;&lt;P&gt;    F_EP_MESSAGE                 = L_ITAB_FIT_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameter&lt;/P&gt;&lt;P&gt;F_IP_CHK_SIIRESEIKYU TYPE ZSIIRESEIKYU(it has Line type ZSXXRESEIKYU with fields DUNSNR&amp;lt;BUDAT,LIFNR,XREF1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my confirmation is below stmt is correct?&lt;/P&gt;&lt;P&gt;   F_IP_CHK_SIIRESEIKYU      =  L_ITAB_SIIRESEIKYU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its giving dump now in FM but no syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Sep 2011 05:57:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-13T05:57:07Z</dc:date>
    <item>
      <title>Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105438#M1616831</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;My Function module returns below Message structure for Warning or error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameter&lt;/P&gt;&lt;P&gt;ZMESSAGE TYPE ZXXXMESSAGE&lt;/P&gt;&lt;P&gt;Under ZXXXMESSAGE Line data type ZYYYMESSAGE is declared&lt;/P&gt;&lt;P&gt;ZYYYMESSAGE has below fields&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------" /&gt;&lt;P&gt;LINE_NO&lt;/P&gt;&lt;P&gt;MSG_TYPE&lt;/P&gt;&lt;P&gt;MSG_ID&lt;/P&gt;&lt;P&gt;MSG_NO&lt;/P&gt;&lt;P&gt;MSGTEXT&lt;/P&gt;&lt;P&gt;MSG_V1&lt;/P&gt;&lt;P&gt;MSG_V2&lt;/P&gt;&lt;P&gt;MSG_V3&lt;/P&gt;&lt;P&gt;MSG_V4&lt;/P&gt;&lt;P&gt;ERROR_CODE&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I declared as below and used but not working&lt;/P&gt;&lt;P&gt;       L_ITAB_MESSAGE TYPE STANDARD TABLE OF ZXXXMESSAGE,&lt;/P&gt;&lt;P&gt;       L_FLD_MESSAGE  TYPE ZXXXMESSAGE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZXXXXXXXXXX'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     F_IP_BUKRS                     =  L_V_BUKRS&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    F_EP_MESSAGE                 = L_ITAB_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-subrc.&lt;/P&gt;&lt;P&gt;    WHEN 0.&lt;/P&gt;&lt;P&gt;      IF L_ITAB_MESSAGE IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'MESSAGE_STORE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;             ARBGB                         = L_SY_MSGID&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           EXCEPTION_IF_NOT_ACTIVE       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            MSGTY                         = L_ITAB_MESSAGE-MSG_TYPE&lt;/P&gt;&lt;P&gt;            MSGV1                         = L_ITAB_MESSAGE-MSG_V1&lt;/P&gt;&lt;P&gt;            MSGV2                         = L_ITAB_MESSAGE-MSG_V2&lt;/P&gt;&lt;P&gt;            MSGV3                         = L_ITAB_MESSAGE-MSG_V3&lt;/P&gt;&lt;P&gt;            MSGV4                         = L_ITAB_MESSAGE-MSG_V4&lt;/P&gt;&lt;P&gt;            TXTNR                         = L_ITAB_MESSAGE-MSG_NO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it says L_ITAB is not data line type and no header for table.&lt;/P&gt;&lt;P&gt;Can you pls confirm should i have to give L_FLD_MESSAGE in MEssage_store FM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 04:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105438#M1616831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T04:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105439#M1616832</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;L_ITAB_MESSAGE TYPE STANDARD TABLE OF ZXXXMESSAGE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is internal table not work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;F_EP_MESSAGE = &lt;STRONG&gt;L_ITAB_MESSAGE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Instead of &lt;STRONG&gt;L_ITAB_MESSAGE&lt;/STRONG&gt; use &lt;STRONG&gt;L_FLD_MESSAGE&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 04:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105439#M1616832</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T04:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105440#M1616833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello surya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying this but says error&lt;/P&gt;&lt;P&gt;"L_FLD_MESSAGE is not header line table so does not have MSGID component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         CALL FUNCTION 'MESSAGE_STORE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;             ARBGB                         = L_FLD_MESSAGE-MSG_ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 04:59:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105440#M1616833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T04:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105441#M1616834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declere Work area as&lt;/P&gt;&lt;P&gt;L_FLD_MESSAGE TYPE ZYYYMESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 05:16:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105441#M1616834</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T05:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105442#M1616835</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;&lt;/P&gt;&lt;P&gt;Please make sure you are passing values to a variable or a field of a work area.&lt;/P&gt;&lt;P&gt;As the message says, the "L_FLD_MESSAGE doesn't have a header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to declare "L_FLD_MESSAGE as a structure/work area and then   pass the value.Or   pass  it to a variable  of type  arbgb.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 05:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105442#M1616835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T05:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105443#M1616836</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;L_FLD_MESSAGE should be of type ZYYYMESSAGE as this is the line type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Archna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 05:20:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105443#M1616836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T05:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105444#M1616837</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;Sorry guys, I am not able understand..&lt;/P&gt;&lt;P&gt;let me put the code  here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; L_ITAB_SIIRESEIKYU     TYPE STANDARD TABLE OF ZSXXRESEIKYU,&lt;/P&gt;&lt;P&gt; L_FLD_SIIRESEIKYU       TYPE ZSXXRESEIKYU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-DUNSNR = 'X'.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-BUDAT = BKPF-BUDAT.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-LIFNR = BSEG-LIFNR.&lt;/P&gt;&lt;P&gt;L_FLD_SIIRESEIKYU-XREF1 = BSEG-XREF1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZXXXXX'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     F_IP_BUKRS                =  L_V_BUKRS&lt;/P&gt;&lt;P&gt;     F_IP_CHK_SIIRESEIKYU      =  L_ITAB_SIIRESEIKYU&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    F_EP_CHK_SIIRESEIKYU         = L_ITAB_TIIRESEIKYU&lt;/P&gt;&lt;P&gt;    F_EP_MESSAGE                 = L_ITAB_FIT_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameter&lt;/P&gt;&lt;P&gt;F_IP_CHK_SIIRESEIKYU TYPE ZSIIRESEIKYU(it has Line type ZSXXRESEIKYU with fields DUNSNR&amp;lt;BUDAT,LIFNR,XREF1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my confirmation is below stmt is correct?&lt;/P&gt;&lt;P&gt;   F_IP_CHK_SIIRESEIKYU      =  L_ITAB_SIIRESEIKYU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its giving dump now in FM but no syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 05:57:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105444#M1616837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T05:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105445#M1616838</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;What is the message when getting DUMP.&lt;/P&gt;&lt;P&gt;Did you appended L_FLD_SIIRESEIKYU to L_ITAB_SIIRESEIKYU. Try&lt;/P&gt;&lt;P&gt;Append L_FLD_SIIRESEIKYU to L_ITAB_SIIRESEIKYU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105445#M1616838</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T06:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105446#M1616839</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;Before appending itgives below error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It says L_FLD_SIIRESEIKYU is a table without header line and therefore has no component called DUNSNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105446#M1616839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T06:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105447#M1616840</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;L_FLD_SIIRESEIKYU TYPE &lt;STRONG&gt;LINE OF&lt;/STRONG&gt; ZSXXRESEIKYU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105447#M1616840</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T06:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105448#M1616841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi surya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it works with line type&lt;/P&gt;&lt;P&gt;But i cannot append it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it says L_FLD_SIIRESEIKYU cannot be  converted to line type of L_Itab_SHIIRESEIKYU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105448#M1616841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T06:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105449#M1616842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;L_ITAB_SIIRESEIKYU TYPE ZSXXRESEIKYU,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105449#M1616842</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T06:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105450#M1616843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Surya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works now and one last question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_FLD_FIT_MESSAGE has error message now. which is the bestway to display it?&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;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 07:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105450#M1616843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T07:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105451#M1616844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is your wish or Download to the presentation server.&lt;/P&gt;&lt;P&gt;If it solved Change the status as Answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 07:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105451#M1616844</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-09-13T07:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding message table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105452#M1616845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi surya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;I have rewarded points and let me close it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 08:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-message-table/m-p/8105452#M1616845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T08:02:09Z</dc:date>
    </item>
  </channel>
</rss>

