<?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: Internal table data disappearing in Adobe forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585348#M2009691</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have declared internal table in both global data and code initialisation. After removing the table declaration in code initialization part the data is not getting cleared.&lt;/P&gt;&lt;P&gt;But in adobe form even after binding the data is not populated in the table.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Jul 2022 09:42:37 GMT</pubDate>
    <dc:creator>former_member806437</dc:creator>
    <dc:date>2022-07-06T09:42:37Z</dc:date>
    <item>
      <title>Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585343#M2009686</link>
      <description>&lt;P&gt;Hi experts,&lt;/P&gt;
  &lt;P&gt;I have created an internal table in SFP interface. To read the data to the Internal table I've used field symbol. While debugging it is showing the in the table. But when the loop processing is finished and go to the next statement the data in internal table is getting cleared. So in the form the table data is empty.&lt;/P&gt;
  &lt;P&gt;Could you help me in solving the issue.&lt;/P&gt;
  &lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 08:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585343#M2009686</guid>
      <dc:creator>former_member806437</dc:creator>
      <dc:date>2022-07-06T08:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585344#M2009687</link>
      <description>&lt;P&gt;Please share your code on the processing routine where you loop the internal table.&lt;/P&gt;&lt;P&gt;also share the screenshot of place where you see the data is empty&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 08:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585344#M2009687</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2022-07-06T08:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585345#M2009688</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your reply. Below is the code&lt;/P&gt;&lt;P&gt;"Table data&lt;BR /&gt;
ASSIGN bil_prt_com-item_detail TO &amp;lt;fs_vlist_tab&amp;gt;.&lt;BR /&gt;
LOOP AT &amp;lt;fs_vlist_tab&amp;gt; INTO  wa_vlist.&lt;BR /&gt;
"Item number&lt;BR /&gt;
x_tab_data-item_no = wa_vlist-vbdpr-posnr_vauf.&lt;BR /&gt;
"Invoice Details&lt;BR /&gt;
CASE bil_prt_com-head_detail-vbdkr-vbtyp.&lt;BR /&gt;
  WHEN 'M'.&lt;BR /&gt;
    DATA(v_bill_inv_name) = 'Invoice'.&lt;BR /&gt;
  WHEN 'O'.&lt;BR /&gt;
    v_bill_inv_name = 'Credit Memo'.&lt;BR /&gt;
  WHEN 'P'.&lt;BR /&gt;
    v_bill_inv_name = 'Debit Memo'.&lt;BR /&gt;
  WHEN '5'.&lt;BR /&gt;
    v_bill_inv_name = 'Intercompany Billing'.&lt;BR /&gt;
*  WHEN OTHERS.&lt;BR /&gt;
ENDCASE.&lt;BR /&gt;
x_tab_data-invoice = v_bill_inv_name.&lt;BR /&gt;
APPEND x_tab_data TO it_tab_data.&lt;BR /&gt;
CLEAR : x_tab_data .&lt;BR /&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;When I try to print the form, table is getting displayed without data in it.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 08:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585345#M2009688</guid>
      <dc:creator>former_member806437</dc:creator>
      <dc:date>2022-07-06T08:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585346#M2009689</link>
      <description>&lt;P&gt;Check the Binding of data to this internal table - which you drag and drop in SFP.&lt;/P&gt;&lt;P&gt;Effectively it should be bound to the new appended table it_tab_data.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 08:48:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585346#M2009689</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2022-07-06T08:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585347#M2009690</link>
      <description>&lt;P&gt;Yes it is binded. Everything is getting displayed in the form except this internal table data.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 08:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585347#M2009690</guid>
      <dc:creator>former_member806437</dc:creator>
      <dc:date>2022-07-06T08:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table data disappearing in Adobe forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585348#M2009691</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have declared internal table in both global data and code initialisation. After removing the table declaration in code initialization part the data is not getting cleared.&lt;/P&gt;&lt;P&gt;But in adobe form even after binding the data is not populated in the table.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 09:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-data-disappearing-in-adobe-forms/m-p/12585348#M2009691</guid>
      <dc:creator>former_member806437</dc:creator>
      <dc:date>2022-07-06T09:42:37Z</dc:date>
    </item>
  </channel>
</rss>

