<?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: Simple Doubt in BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702961#M308065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is wa_report whether it is internal table or work area.&lt;/P&gt;&lt;P&gt;if this an internal table then u r not reading the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place u r code in between&lt;/P&gt;&lt;P&gt;loop at internaltablename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// BDC coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Nov 2006 12:32:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-17T12:32:55Z</dc:date>
    <item>
      <title>Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702957#M308061</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 new to BDC .I am just trying a simple code which is written already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   This is the simple code to fill the transaction VK13 first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_dynpro      USING 'SAPMV13A' '0100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'RV13A-KSCHL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                        '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'RV13A-KSCHL'&lt;/P&gt;&lt;P&gt;                                       wa_report-kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_dynpro      USING 'SAPLV14A' '0100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'RV130-SELKZ(01)'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                       '=WEIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM bdc_field       USING 'RV130-SELKZ(01)'&lt;/P&gt;&lt;P&gt;                                        'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'VK13' USING i_bdc_tbl&lt;/P&gt;&lt;P&gt;                          MODE  'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_dynpro USING program dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_bdc_tbl.&lt;/P&gt;&lt;P&gt;  wa_bdc_tbl-program  = program.&lt;/P&gt;&lt;P&gt;  wa_bdc_tbl-dynpro   = dynpro.&lt;/P&gt;&lt;P&gt;  wa_bdc_tbl-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_bdc_tbl TO i_bdc_tbl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "BDC_DYNPRO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_field USING fnam fval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_bdc_tbl.&lt;/P&gt;&lt;P&gt;  MOVE fnam TO wa_bdc_tbl-fnam.&lt;/P&gt;&lt;P&gt;  MOVE fval TO wa_bdc_tbl-fval.&lt;/P&gt;&lt;P&gt;  APPEND wa_bdc_tbl TO i_bdc_tbl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "BDC_FIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When execute this code it is just showing the empty screen of transaction vk13. It is not filling the condition type field with whatever value i am passing. When go in debugg mode i am not getting the logic again and again it is going to the first screen of vk13 and asking to enter the value whwn the statement CALL TRANSACTION is getting executed. It is clear to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main doubt is we are clearing the internal table i_bdc_tbl before calling the transaction once we move the value to the specific field.I am not getting what they tried to do there.Simply moving one record to internal table and again clearing it then moving a next record and clearing it again before calling the transaction.&lt;/P&gt;&lt;P&gt;What we are trying to do by this?Can any one explain me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out in understanding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702957#M308061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702958#M308062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"My main doubt is we are clearing the internal table i_bdc_tbl before calling the transaction once we move the value to the specific field.I am not getting what they tried to do there"...&lt;/P&gt;&lt;P&gt;clear itab. " This statement doesn't clear the internal table .This clears only the header. There must be some other problem with the code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702958#M308062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702959#M308063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go thru these links for more info on BDC:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/fa/097119543b11d1898e0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/fa/097119543b11d1898e0000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html" target="test_blank"&gt;http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/learning-bdc-programming.htm" target="test_blank"&gt;http://www.sap-img.com/abap/learning-bdc-programming.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/bdc.htm" target="test_blank"&gt;http://www.sap-img.com/bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sappoint.com/abap/bdcconcept.pdf" target="test_blank"&gt;www.sappoint.com/abap/bdcconcept.pdf&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/learning-bdc-programming.htm" target="test_blank"&gt;http://www.sap-img.com/abap/learning-bdc-programming.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/bdc/bdchome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/bdc/bdchome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/bdc_main_page.htm" target="test_blank"&gt;http://www.planetsap.com/bdc_main_page.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps.&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702959#M308063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702960#M308064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check whether ur passing the internal table data to work area or not before passing the values...Loop at internal table into wa_report...Then all the perform statements needs to be written...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:25:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702960#M308064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702961#M308065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is wa_report whether it is internal table or work area.&lt;/P&gt;&lt;P&gt;if this an internal table then u r not reading the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place u r code in between&lt;/P&gt;&lt;P&gt;loop at internaltablename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// BDC coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702961#M308065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Doubt in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702962#M308066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at below link for info abt BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/fa/097119543b11d1898e0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/fa/097119543b11d1898e0000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 12:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-doubt-in-bdc/m-p/1702962#M308066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T12:35:02Z</dc:date>
    </item>
  </channel>
</rss>

