<?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 BDC problem in background? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561528#M1076711</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 running the BDC on t code FB05  and its running fine in foreground mode , but in background it throws the error Screen not Found.&lt;/P&gt;&lt;P&gt;After passig the screen also , then it says that for line item 2 G?l is mandatory. Now how to select the second line item. &lt;/P&gt;&lt;P&gt;I recored the BDc and for that '=PI' ok code is there that slect second line item. but in background its not doning that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Oct 2008 08:13:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-04T08:13:38Z</dc:date>
    <item>
      <title>BDC problem in background?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561528#M1076711</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 running the BDC on t code FB05  and its running fine in foreground mode , but in background it throws the error Screen not Found.&lt;/P&gt;&lt;P&gt;After passig the screen also , then it says that for line item 2 G?l is mandatory. Now how to select the second line item. &lt;/P&gt;&lt;P&gt;I recored the BDc and for that '=PI' ok code is there that slect second line item. but in background its not doning that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 08:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561528#M1076711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-04T08:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem in background?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561529#M1076712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't work with this transaction but i think you are working with table controls. You must fill line one and then advance one line with BDC. Repeat the operation until you haven't more data .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 10:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561529#M1076712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-04T10:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem in background?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561530#M1076713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually the lines items are coming and after that i have to fill the data in second line itm.First is already filled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 11:49:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561530#M1076713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-04T11:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem in background?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561531#M1076714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, It its a line control the fill the items as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_WBS.&lt;/P&gt;&lt;P&gt;    CLEAR : L_FNAM.&lt;/P&gt;&lt;P&gt;    L_COUNT = L_COUNT + 1.&lt;/P&gt;&lt;P&gt;    PERFORM BDC_DYNPRO USING 'SAPLCJSS' '0901'.&lt;/P&gt;&lt;P&gt;    PERFORM BDC_FIELD  USING 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;    PERFORM BDC_FIELD  USING 'BDC_SUBSCR' 'SAPLCJSS                                0902LISTE'.&lt;/P&gt;&lt;P&gt;    L_CTR = L_CTR + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONDENSE L_CTR.&lt;/P&gt;&lt;P&gt;    IF L_CTR &amp;lt; 10.&lt;/P&gt;&lt;P&gt;      CONCATENATE '0' L_CTR INTO L_CTR.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    CONCATENATE 'PRPS-FAKKZ(' L_CTR ')' INTO L_FNAM.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each line item increas the Counter to +1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also use p+ code once u fill all the lines in screen to scroll the data into next screen.&lt;/P&gt;&lt;P&gt; PERFORM BDC_FIELD  USING 'BDC_OKCODE'            '=P+'.&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;Piyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 11:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem-in-background/m-p/4561531#M1076714</guid>
      <dc:creator>piyush_mathur</dc:creator>
      <dc:date>2008-10-04T11:53:36Z</dc:date>
    </item>
  </channel>
</rss>

