<?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: CA02 BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615049#M275583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a nice LSMW routine which  adds operations to routings.  If interested, email me at my business card and I can send you the object overview.  It is too big to post here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Sep 2006 17:51:32 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-09-22T17:51:32Z</dc:date>
    <item>
      <title>CA02 BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615045#M275579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing a bdc for CA02 to update the routing operations. In the transaction there comes a warning message in the status bar and when i hit enter it lets me proceed further. &lt;/P&gt;&lt;P&gt;Assuming that the warning messages are suppressed , i went ahead and wrote the BDC . In recording theough SHDB the warning message and ok_code isnt recorded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i now try to run the bdc session in background , it returns error ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615045#M275579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T17:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: CA02 BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615046#M275580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Warning message will not be recorded in SHDB. &lt;/P&gt;&lt;P&gt;After writing the BDC program and in while calling the transaction using call transaction.....messages i_messages. You will get that warning in the internal table i_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: opt TYPE ctu_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  opt-dismode  = 'N'.&lt;/P&gt;&lt;P&gt;  opt-updmode  = 'A'.&lt;/P&gt;&lt;P&gt;  opt-defsize  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION tcode&lt;/P&gt;&lt;P&gt;       USING i_bdcdata OPTIONS FROM opt MESSAGES INTO i_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_messages WHERE msgtyp EQ 'E'.&lt;/P&gt;&lt;P&gt;    ws_invoice_st = c_fail.&lt;/P&gt;&lt;P&gt;    ws_invoice_msg = i_messages-msgv1.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  LOOP AT i_messages WHERE msgtyp EQ 'S'.&lt;/P&gt;&lt;P&gt;    ws_invoice_st = c_succ.&lt;/P&gt;&lt;P&gt;    ws_invoice_msg = text-033.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prakash Ramu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615046#M275580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T17:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: CA02 BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615047#M275581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Warning and information messages are skipped and handle automatically by the BDC.  Your BDC is erroring for some other reason.  Set mode to "A" and try to figure where it is stopping and why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615047#M275581</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-22T17:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: CA02 BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615048#M275582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;warnings and information messages will be ignored  by BDc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615048#M275582</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-09-22T17:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: CA02 BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615049#M275583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a nice LSMW routine which  adds operations to routings.  If interested, email me at my business card and I can send you the object overview.  It is too big to post here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 17:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ca02-bdc/m-p/1615049#M275583</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-22T17:51:32Z</dc:date>
    </item>
  </channel>
</rss>

