<?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 supressor FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360462#M806350</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 am setting NOBINT = 'X' through a work area(wa_opt) while doing&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'MFBF' USING i_bdcdata OPTIONS FROM wa_opt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BDC is running fine when run directly from SE38 &lt;/P&gt;&lt;P&gt;BUT...BUT...BUT  when I &lt;STRONG&gt;schedule a job through SM36&lt;/STRONG&gt; and run my program through scheduled job then My screens are &lt;STRONG&gt;NOT&lt;/STRONG&gt; getting populated with the values passed in internal table i_bdcdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help....It's really urgent.... REWARD POINTS guaranteed !!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Apr 2008 18:55:01 GMT</pubDate>
    <dc:creator>Firoz_Ashraf</dc:creator>
    <dc:date>2008-04-01T18:55:01Z</dc:date>
    <item>
      <title>BDC supressor FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360459#M806347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Gurus! can u tell me a FM that will supress information popups  in VA01  that can be used in BDC.&lt;/P&gt;&lt;P&gt;I run BDC in N mode n E mode also still its waiting on that information popup.&lt;/P&gt;&lt;P&gt;points sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2008 08:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360459#M806347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-28T08:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: BDC supressor FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360460#M806348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example, the error message that usually comes in status bar while you are running the transaction online might appear in a popup window when you are running that in batch. This will make your fields disabled for input. This OPTIONS addition will remove this problem &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way to use the OPTIONS addition.&lt;/P&gt;&lt;P&gt;Declare a work area of type CTU_PARAMS.&lt;/P&gt;&lt;P&gt;Fill the fields of CTU_PARAMS. The field NOBINPT  should be set to &amp;#145;X&amp;#146;.&lt;/P&gt;&lt;P&gt;This will set the SY-BINPT to space. So now the transaction which you will be calling will run in online mode. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;clear X_OPTIONS.&lt;/P&gt;&lt;P&gt;X_OPTIONS-DISMODE = 'E'.&lt;/P&gt;&lt;P&gt;X_OPTIONS-UPDMODE = 'S'.&lt;/P&gt;&lt;P&gt;X_OPTIONS-CATTMODE = ' '.&lt;/P&gt;&lt;P&gt;X_OPTIONS-DEFSIZE = ' '.&lt;/P&gt;&lt;P&gt;X_OPTIONS-RACOMMIT = ' '.&lt;/P&gt;&lt;P&gt;X_OPTIONS-NOBINPT = 'X'.&lt;/P&gt;&lt;P&gt; X_OPTIONS-NOBIEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call transaction 'BP' using T_BDCDATA[] options from X_OPTIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;Do not use the MODE &amp;amp; UPDATE additions when you are using OPTIONS. The mode &amp;amp; update values are passed in the CTU_PARAMS structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2008 08:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360460#M806348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-28T08:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDC supressor FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360461#M806349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks alot for ur answer. it working fine but have other problem -- while creating order its asking for parner selection , therefore in N mode order is not getting created. CTU cant supress this option also?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 05:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360461#M806349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T05:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: BDC supressor FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360462#M806350</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 am setting NOBINT = 'X' through a work area(wa_opt) while doing&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'MFBF' USING i_bdcdata OPTIONS FROM wa_opt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BDC is running fine when run directly from SE38 &lt;/P&gt;&lt;P&gt;BUT...BUT...BUT  when I &lt;STRONG&gt;schedule a job through SM36&lt;/STRONG&gt; and run my program through scheduled job then My screens are &lt;STRONG&gt;NOT&lt;/STRONG&gt; getting populated with the values passed in internal table i_bdcdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help....It's really urgent.... REWARD POINTS guaranteed !!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2008 18:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-supressor-fm/m-p/3360462#M806350</guid>
      <dc:creator>Firoz_Ashraf</dc:creator>
      <dc:date>2008-04-01T18:55:01Z</dc:date>
    </item>
  </channel>
</rss>

