<?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 Problems with BDCDATA (Batch Input Map) and ALV-Grid in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-bdcdata-batch-input-map-and-alv-grid/m-p/3997675#M955100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently doing an ITS call of ERP transaction VF05 (Open Billing documents). Therefore I'm using a BDCDATA table for batch input and to fill all required fields (e.g. business partner, sales org, date). When I call the transaction directly, I get a result list as an ALV-Grid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use the call transaction functionality with the batch input map the first screen is skipped as desired but I get an ugly old table view as a result and not the newer ALV-Grid. Does anyone know how to force the newer ALV-Grid to display the result?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data bdcdata TYPE TABLE of BDCDATA.                                &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data WA_BDCDATA Type BDCDATA.       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for partner number                        &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-PROGRAM = 'SAPMV65A'. "Programm for transaction VF05            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO = '0100'. "Dynpro to call                                &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'. "BDC screen start                               &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-KUNDE'. "partner parameter field VF05 transacti   &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = lv_partner. "put BP number into BP parameter field       &lt;/P&gt;&lt;P&gt;Append WA_BDCDATA to BDCDATA.                                              &lt;/P&gt;&lt;P&gt;CLEAR WA_BDCDATA.                                                                                &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for date                                  &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-FKDAT'. "Date from                                &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = lv_dat_start. "Date from                                 &lt;/P&gt;&lt;P&gt;Append WA_BDCDATA to BDCDATA.                                              &lt;/P&gt;&lt;P&gt;clear WA_BDCDATA.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for VKORG  &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-PROGRAM = 'SAPMV65A'.            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'.                  &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO = '0102'.                 &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-VKORG'.            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = 'DE01'.                   &lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA to BDCDATA.               &lt;/P&gt;&lt;P&gt;Clear WA_BDCDATA.                                                                                &lt;/P&gt;&lt;P&gt;CALL TRANSACTION OBJECT-KEY-CODE using BDCDATA MODE 'E'. " Call transation VF05&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jun 2008 13:04:08 GMT</pubDate>
    <dc:creator>sebastian_lorberg</dc:creator>
    <dc:date>2008-06-17T13:04:08Z</dc:date>
    <item>
      <title>Problems with BDCDATA (Batch Input Map) and ALV-Grid</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-bdcdata-batch-input-map-and-alv-grid/m-p/3997675#M955100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently doing an ITS call of ERP transaction VF05 (Open Billing documents). Therefore I'm using a BDCDATA table for batch input and to fill all required fields (e.g. business partner, sales org, date). When I call the transaction directly, I get a result list as an ALV-Grid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use the call transaction functionality with the batch input map the first screen is skipped as desired but I get an ugly old table view as a result and not the newer ALV-Grid. Does anyone know how to force the newer ALV-Grid to display the result?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data bdcdata TYPE TABLE of BDCDATA.                                &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data WA_BDCDATA Type BDCDATA.       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for partner number                        &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-PROGRAM = 'SAPMV65A'. "Programm for transaction VF05            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO = '0100'. "Dynpro to call                                &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'. "BDC screen start                               &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-KUNDE'. "partner parameter field VF05 transacti   &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = lv_partner. "put BP number into BP parameter field       &lt;/P&gt;&lt;P&gt;Append WA_BDCDATA to BDCDATA.                                              &lt;/P&gt;&lt;P&gt;CLEAR WA_BDCDATA.                                                                                &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for date                                  &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-FKDAT'. "Date from                                &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = lv_dat_start. "Date from                                 &lt;/P&gt;&lt;P&gt;Append WA_BDCDATA to BDCDATA.                                              &lt;/P&gt;&lt;P&gt;clear WA_BDCDATA.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill batch input map with data for VKORG  &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;WA_BDCDATA-PROGRAM = 'SAPMV65A'.            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'.                  &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO = '0102'.                 &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM = 'FACOM-VKORG'.            &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL = 'DE01'.                   &lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA to BDCDATA.               &lt;/P&gt;&lt;P&gt;Clear WA_BDCDATA.                                                                                &lt;/P&gt;&lt;P&gt;CALL TRANSACTION OBJECT-KEY-CODE using BDCDATA MODE 'E'. " Call transation VF05&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 13:04:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-bdcdata-batch-input-map-and-alv-grid/m-p/3997675#M955100</guid>
      <dc:creator>sebastian_lorberg</dc:creator>
      <dc:date>2008-06-17T13:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with BDCDATA (Batch Input Map) and ALV-Grid</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-bdcdata-batch-input-map-and-alv-grid/m-p/3997676#M955101</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;I think it is not possible to display the ALV Grid in thru BDC. while doing the recording itself its coming with list display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajinikanth G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 16:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-bdcdata-batch-input-map-and-alv-grid/m-p/3997676#M955101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T16:28:50Z</dc:date>
    </item>
  </channel>
</rss>

