<?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: Messages, function modules and Batch Input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625805#M1570751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For lock flag use BAPI_BUPA_CENTRAL_CHANGE. the field is available in parameter CENTRALDATA.&lt;/P&gt;&lt;P&gt;You can use BUPA_CENTRAL_CHANGE( i think this will be used in BAPI_BUPA_CENTRAL_CHANGE ) for internet user details.please refer &lt;SPAN __jive_macro_name="thread" id="1357406"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2011 18:44:49 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2011-03-02T18:44:49Z</dc:date>
    <item>
      <title>Messages, function modules and Batch Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625801#M1570747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to modify some values on the BP transaction with a batch input and I encapsulated it on a function module, because I need to call this FM from a Web Dynpro ABAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that some success messages are raising from the batch input, even if I set a message table to store them on the call of the batch input. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: bdcdata    TYPE STANDARD TABLE OF bdcdata,
          wa_bdcdata TYPE bdcdata,
          messtab    TYPE STANDARD TABLE OF bdcmsgcoll.
  DATA: v_message   TYPE string,
            wa_messtab  TYPE  bdcmsgcoll,
            v_mode      TYPE c VALUE 'N'.

" some code here....

  CALL TRANSACTION 'BP' USING bdcdata MESSAGES INTO messtab
                                               MODE v_mode
                                               UPDATE 'S'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I prevent these messages? Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jordi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 15:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625801#M1570747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T15:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Messages, function modules and Batch Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625802#M1570748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For transaction BP there are standard bapi's available.&lt;/P&gt;&lt;P&gt;In se37 please search for BAPI_BUPA*. Choose the required one and use it in your Z function module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 18:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625802#M1570748</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-03-02T18:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Messages, function modules and Batch Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625803#M1570749</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;Your code is correct.&lt;/P&gt;&lt;P&gt;For some cases you can't stop the messages to be displayed.&lt;/P&gt;&lt;P&gt;If you run the FM in backend the messages will not be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the case of Webdynpro, if you call it from Portal, it will not throw the any Messages it will store in Message table.&lt;/P&gt;&lt;P&gt;The Best way is to Use some BAPI's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arbind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 18:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625803#M1570749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T18:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Messages, function modules and Batch Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625804#M1570750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, &lt;/P&gt;&lt;P&gt;there are some BAPIs to work with BP, but I could not find any that meets my requirements. I need to do two actions:&lt;/P&gt;&lt;P&gt;1 - complete the "Internet user" tab&lt;/P&gt;&lt;P&gt;2 - set the "central lock" flag on the status tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a BAPI or FM to make these two actions, please let me know. I spent two days looking for them and finally I've decided to use the batch inputs (I hate them).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Jordi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 18:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625804#M1570750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T18:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Messages, function modules and Batch Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625805#M1570751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For lock flag use BAPI_BUPA_CENTRAL_CHANGE. the field is available in parameter CENTRALDATA.&lt;/P&gt;&lt;P&gt;You can use BUPA_CENTRAL_CHANGE( i think this will be used in BAPI_BUPA_CENTRAL_CHANGE ) for internet user details.please refer &lt;SPAN __jive_macro_name="thread" id="1357406"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 18:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/messages-function-modules-and-batch-input/m-p/7625805#M1570751</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-03-02T18:44:49Z</dc:date>
    </item>
  </channel>
</rss>

