<?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: Hold Data after PBI .. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166212#M753196</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the link for sample table control programming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5e35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5e35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically the table that you are using in PBO to display the data should be updated in the PAI so that the next time screen is displayed and PBO is called,the lastest data is displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;aj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Dec 2007 10:53:11 GMT</pubDate>
    <dc:creator>former_member195698</dc:creator>
    <dc:date>2007-12-25T10:53:11Z</dc:date>
    <item>
      <title>Hold Data after PBI ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166211#M753195</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 m Using a table control and some fields are Input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i enter the values and give "enter" key  then the values got disappear.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how do i do display the enterd values after pressing "enter". that is after PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 07:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166211#M753195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-25T07:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hold Data after PBI ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166212#M753196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the link for sample table control programming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5e35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5e35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically the table that you are using in PBO to display the data should be updated in the PAI so that the next time screen is displayed and PBO is called,the lastest data is displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;aj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 10:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166212#M753196</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-12-25T10:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hold Data after PBI ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166213#M753197</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;u need to make one module in PAI between LOOP ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE exit_1000 AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'TAB1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab_det.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD itab_det-bill_no.&lt;/P&gt;&lt;P&gt;      FIELD itab_det-bill_date.&lt;/P&gt;&lt;P&gt;      FIELD itab_det-vend_cust_code.&lt;/P&gt;&lt;P&gt;      FIELD itab_det-bill_amt.&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;MODULE tab1_modify ON CHAIN-REQUEST.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;    FIELD itab_det-mark&lt;/P&gt;&lt;P&gt;      MODULE tab1_mark ON REQUEST.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in that module u need to append ur internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE &lt;STRONG&gt;tab1_modify&lt;/STRONG&gt; INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND itab_det.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDMODULE.                    "TAB1_MODIFY INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2007 11:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hold-data-after-pbi/m-p/3166213#M753197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-25T11:14:43Z</dc:date>
    </item>
  </channel>
</rss>

