<?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: Changing message type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937845#M1486844</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;You have to extract the Details of return order quanties created using the reference invoice number from the DB table VBFA.&lt;/P&gt;&lt;P&gt;Below code may help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'SD_VBFA_READ_WITH_VBELV'
      exporting
        i_vbelv            = &amp;lt;ref_doc&amp;gt;
        i_bypassing_buffer = l_x
        i_refresh_buffer   = l_x
      tables
        et_vbfa            = et_vbfa
      exceptions
        record_not_found   = 1
        others             = 2.
    if sy-subrc eq 0.
      loop at xvbap.
        read table et_data into wa_data with key posnr = xvbap-posnr.
        move 0 to l_rfmng.
        loop at et_vbfa assigning &amp;lt;ls_vbfa&amp;gt; where posnv   = xvbap-itm_number
                                            and   vbtyp_n = 'H'.
          add &amp;lt;ls_vbfa&amp;gt;-rfmng to l_rfmng.
        endloop.
        compute l_rfmng = wa_data-fkimg - l_rfmng.
        if xvbap-kwmeng gt l_rfmng .
          raise message
        endif.
      endloop.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 May 2010 11:16:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-18T11:16:58Z</dc:date>
    <item>
      <title>Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937840#M1486839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pesently when I copy Billing/Invoice reference into Return order, if the Item &amp;amp; qauntity is already returned sitll system is allowing to return it again with V1449 Message"There are already returns for item 000010" which is a information and which cannot be changed as Error by using OVAH. So please help me to change this following assosicated program for making the message as an ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vbak-vbtyp CN vbtyp_lp.&lt;/P&gt;&lt;P&gt;      IF vbap-kzfme IS INITIAL.&lt;/P&gt;&lt;P&gt;        da_mengev = xvbapf-hmenge  * quan_1 * us_umvkn / us_umvkz.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        da_mengev = xvbapf-hmengev * quan_1.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF vbak-vbtyp = charh.&lt;/P&gt;&lt;P&gt;        da_mengev = da_mengev - us_kwmeng.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF da_mengev &amp;gt; 0.&lt;/P&gt;&lt;P&gt;        WRITE da_mengev TO da_mengec UNIT vbap-vrkme.&lt;/P&gt;&lt;P&gt;        SET CURSOR FIELD us_feldname LINE sy-stepl.&lt;/P&gt;&lt;P&gt;        MESSAGE ID 'V1' TYPE da_dia NUMBER 499&lt;/P&gt;&lt;P&gt;                WITH vbap-posnr da_mengec us_vrkme.&lt;/P&gt;&lt;P&gt;      ENDIF.&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;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 08:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937840#M1486839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T08:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937841#M1486840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Chinna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not sure if I understood your requirement correctly, but if you only want to change the message to an "error" message you need to set the variable &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt; "da_dia = "E"&lt;/SPAN&gt;  in your coding extract.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF vbak-vbtyp CN vbtyp_lp.
IF vbap-kzfme IS INITIAL.
da_mengev = xvbapf-hmenge * quan_1 * us_umvkn / us_umvkz.
ELSE.
da_mengev = xvbapf-hmengev * quan_1.
ENDIF.
IF vbak-vbtyp = charh.
da_mengev = da_mengev - us_kwmeng.
ENDIF.
IF da_mengev &amp;gt; 0.
WRITE da_mengev TO da_mengec UNIT vbap-vrkme.
SET CURSOR FIELD us_feldname LINE sy-stepl.

" set to error
da_dia = 'E'.

MESSAGE ID 'V1' TYPE da_dia NUMBER 499
WITH vbap-posnr da_mengec us_vrkme.
ENDIF.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Arno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 09:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937841#M1486840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T09:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937842#M1486841</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;This message cannot be changed to error message.  You have to write custom code &amp;amp; error message in userexit 'MV45AFZZ' form routine : USEREXIT_SAVE_DOCUMENT_PREPARE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 09:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937842#M1486841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T09:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937843#M1486842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chinna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;execute SPRO&lt;/P&gt;&lt;P&gt;SAP Customizing Implementation Guide-&amp;gt;Financial Accounting-&amp;gt;Accounts Receivable and Accounts Payable-&amp;gt;Business Transactions-&amp;gt;Down Payment Made-&amp;gt;Down Payments/Down Payment Requests-&amp;gt;Change Message Control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give your application area nad there you can maintain the message type as error.&lt;/P&gt;&lt;P&gt;May be this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else try searching for message control in IMG (spro).&lt;/P&gt;&lt;P&gt;You will get list changing message type in various area.&lt;/P&gt;&lt;P&gt;there you can look out for your desired area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kamini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 09:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937843#M1486842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T09:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937844#M1486843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Arno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is now showing as error.&lt;/P&gt;&lt;P&gt;But the problem is, if I have 10Q in invoice, if I return once 5Q, then later if I am returning other 5.. for that also it is showing error, which is not correct.&lt;/P&gt;&lt;P&gt;It has to show error only once all 10Q of Invoice is returned and if I try to return the 11th item from same invoice.&lt;/P&gt;&lt;P&gt;I feel it is checking only at item level please help me how can I make it check even at Quantity level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 10:56:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937844#M1486843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T10:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937845#M1486844</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;You have to extract the Details of return order quanties created using the reference invoice number from the DB table VBFA.&lt;/P&gt;&lt;P&gt;Below code may help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'SD_VBFA_READ_WITH_VBELV'
      exporting
        i_vbelv            = &amp;lt;ref_doc&amp;gt;
        i_bypassing_buffer = l_x
        i_refresh_buffer   = l_x
      tables
        et_vbfa            = et_vbfa
      exceptions
        record_not_found   = 1
        others             = 2.
    if sy-subrc eq 0.
      loop at xvbap.
        read table et_data into wa_data with key posnr = xvbap-posnr.
        move 0 to l_rfmng.
        loop at et_vbfa assigning &amp;lt;ls_vbfa&amp;gt; where posnv   = xvbap-itm_number
                                            and   vbtyp_n = 'H'.
          add &amp;lt;ls_vbfa&amp;gt;-rfmng to l_rfmng.
        endloop.
        compute l_rfmng = wa_data-fkimg - l_rfmng.
        if xvbap-kwmeng gt l_rfmng .
          raise message
        endif.
      endloop.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 11:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937845#M1486844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T11:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937846#M1486845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Mr. Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where should I include this function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 11:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937846#M1486845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T11:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937847#M1486846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the code in user exit "MV45AFZZ" - "USEREXIT_SAVE_DOCUMENT_PREPARE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 11:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937847#M1486846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T11:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937848#M1486847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made few changes when I was getting errors, but still I m facing errors...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:  et_vbfa   TYPE  VA_VBFAVB_T.

call function 'SD_VBFA_READ_WITH_VBELV'
      exporting
        i_vbelv            = '&amp;lt;ref_doc&amp;gt;'
        i_bypassing_buffer = 'l_x'
        i_refresh_buffer   = 'l_x'
      tables
        et_abfa        =  et_vbfa

      exceptions
        record_not_found   = 1
        others             = 2.

    if sy-subrc eq 0.
      loop at xvbap.
        read table lt_data into wa_data with key posnr = xvbap-posnr.
        move 0 to l_rfmng.
        loop at et_vbfa assigning &amp;lt;ls_vbfa&amp;gt; where posnv   = xvbap-itm_number
                                            and   vbtyp_n = 'H'.
          add &amp;lt;ls_vbfa&amp;gt;-rfmng to l_rfmng.
        endloop.
        compute l_rfmng = wa_data-fkimg - l_rfmng.
        if xvbap-kwmeng gt l_rfmng .
          raise message
        endif.
      endloop.
    endif.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I m getting following error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; Field "LT_DATA" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . . . . . . . . .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where should I declare lt_data, please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 06:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937848#M1486847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T06:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937849#M1486848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on May 20, 2010 3:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 08:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937849#M1486848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T08:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937850#M1486849</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;You have to add below code above the currently written code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : it_key      type wb2_sales_key_stab,
       wa_key      type wb2_sales_key,
       lt_data     type wb2_vbrp_stab,
       wa_data     type wb2_vbrp.

   move &amp;lt;ref_doc&amp;gt; to wa_key-vbeln. "&amp;lt;ref doc&amp;gt; is reference billing doc
   append wa_key to it_key.

   call function 'WB2_VBRP_ARRAY_READ'
      exporting
        it_key        = it_key
        i_refresh     = ' '
        i_refresh_all = ' '
      importing
        et_data       = lt_data.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 08:25:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937850#M1486849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T08:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937851#M1486850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you immediate help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now I am getting following error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; Field "L_RFMNG" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . . . . . . . . .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 08:39:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937851#M1486850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T08:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937852#M1486851</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 whether all variables are defined.. I have written only the abstract code. The variable mentioned in your &lt;/P&gt;&lt;P&gt;error is to be defined as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : l_rfmng     type rfmng,
    l_x  type char01 value 'X'.
field-symbols : &amp;lt;ls_vbfa&amp;gt; type vbfa.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar on May 20, 2010 3:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 09:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937852#M1486851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T09:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937853#M1486852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Mr. Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; so just trying to control returns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chinna on May 20, 2010 1:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 10:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937853#M1486852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T10:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937854#M1486853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Mr. Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am again getting the following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The line type of the table "ET_VBFA" is not compatible with field 
symbol type "&amp;lt;LS_VBFA&amp;gt;".&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be really great help if you can exactly give the code for caling this Function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 10:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937854#M1486853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T10:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937855#M1486854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chinna,&lt;/P&gt;&lt;P&gt;Have an ABAPER implement the solution given by Vinod. If you still have functional issues (not syntax issues) then get back on this post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Che Eky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 10:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937855#M1486854</guid>
      <dc:creator>che_eky</dc:creator>
      <dc:date>2010-05-20T10:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Changing message type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937856#M1486855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, please consult a local ABAP developer, everybody was very patient, giving helpful information, but now it is time to stop the step-by-step ABAP course. This is not the place to explain that a variable has to be declared before it can be used in the code.&lt;/P&gt;&lt;P&gt;Thread locked.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 13:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-message-type/m-p/6937856#M1486855</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2010-05-20T13:55:01Z</dc:date>
    </item>
  </channel>
</rss>

