<?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: BDC Call: Error Log in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158987#M456484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philip Johannesen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use the write statement, i hope when you come back from ALV output you can find output data which was written by write statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else.&lt;/P&gt;&lt;P&gt;you can you can show the return messages of table MESSTAB in a pop-up ALV, you can check the prg: BCALV_GRID_AND_POPUP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shaik Bhasha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2007 17:19:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-03T17:19:24Z</dc:date>
    <item>
      <title>BDC Call: Error Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158984#M456481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me out with this. In my program I output an alv grid, the user then selects relevant rows and presses Save. Then my program puts the selected rows into an internal table and sends them through a bdc call to transaction VL02N to update picked delivery data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue I am facing is when an error occurs I don't have a convenient place to output my internal table MESSTAB. Essentially I would like to call the default screen 1000 and display the error messages, but my alv is using it. Is there a way to clear screen 1000 of the alv and display the error message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;#146;m trying to avoid having to develop my own screen from scratch to display the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Award points as always for helpful answers.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Philip Johannesen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 17:02:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158984#M456481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T17:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call: Error Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158985#M456482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't know if you would like this.. but you can pass the messtab to a popup function for display.. For ex: Pl take a look at the function module  'HR_BEN_SHOW_ERROR_POPUP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 17:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158985#M456482</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-05-03T17:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call: Error Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158986#M456483</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;AFter the call transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the messages from the call transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then You can use the function module MESSAGES_INITIALIZE, MESSAGES_STORE &amp;amp; MESSAGES_SHOW..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'MESSAGES_INITIALIZE'&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;others = 1.&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 = '00'&lt;/P&gt;&lt;P&gt;msgty = 'E'&lt;/P&gt;&lt;P&gt;msgv1 = space&lt;/P&gt;&lt;P&gt;msgv2 = space&lt;/P&gt;&lt;P&gt;msgv3 = space&lt;/P&gt;&lt;P&gt;msgv4 = space&lt;/P&gt;&lt;P&gt;txtnr = '208'&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;message_type_not_valid = 1&lt;/P&gt;&lt;P&gt;not_active = 2&lt;/P&gt;&lt;P&gt;others = 3.&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 = '00' " Message ID&lt;/P&gt;&lt;P&gt;msgty = 'W' " message type&lt;/P&gt;&lt;P&gt;msgv1 = space&lt;/P&gt;&lt;P&gt;msgv2 = space&lt;/P&gt;&lt;P&gt;msgv3 = space&lt;/P&gt;&lt;P&gt;msgv4 = space&lt;/P&gt;&lt;P&gt;txtnr = '208' " Message number.&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;message_type_not_valid = 1&lt;/P&gt;&lt;P&gt;not_active = 2&lt;/P&gt;&lt;P&gt;others = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'MESSAGES_SHOW'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;I_USE_GRID = 'X' " Comment for list display&lt;/P&gt;&lt;P&gt;batch_list_type = 'L'&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;inconsistent_range = 1&lt;/P&gt;&lt;P&gt;no_messages = 2&lt;/P&gt;&lt;P&gt;others = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 17:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158986#M456483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T17:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call: Error Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158987#M456484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philip Johannesen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use the write statement, i hope when you come back from ALV output you can find output data which was written by write statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else.&lt;/P&gt;&lt;P&gt;you can you can show the return messages of table MESSTAB in a pop-up ALV, you can check the prg: BCALV_GRID_AND_POPUP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shaik Bhasha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 17:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158987#M456484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T17:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call: Error Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158988#M456485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick responses. I used Naren's suggestion which was perfect for my solution. I've awarded points to all of you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philip Johannesen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 08:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-error-log/m-p/2158988#M456485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T08:30:49Z</dc:date>
    </item>
  </channel>
</rss>

