<?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: data display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705846#M626885</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;&lt;/P&gt;&lt;P&gt;You need to do coding to show data(PBO) and retrieve or actions (PAI)&lt;/P&gt;&lt;P&gt;For coding in PBO/PAI&lt;/P&gt;&lt;P&gt;in SAP ..go to se38 and view the following programs&lt;/P&gt;&lt;P&gt;1)DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/P&gt;&lt;P&gt;2)demo_dynpro_tabcont_loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the following exract code if from the above pgms&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL it_final.&lt;/P&gt;&lt;P&gt;MODULE FILL_TABLE_CONTROL.&lt;/P&gt;&lt;P&gt;"in this module write code to display the data by default when the screen is first displayed or get data passed from PAI and display it after user actions&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;MODULE CANCEL AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL it_final.&lt;/P&gt;&lt;P&gt;module read_table_control.&lt;/P&gt;&lt;P&gt;"write code for validations in this module&lt;/P&gt;&lt;P&gt;"The user actions will be captured here&lt;/P&gt;&lt;P&gt;"write code to fetch data from the screen and save it in a table or any desirable data structure&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the above suggestions proved useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Aug 2007 13:45:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-27T13:45:27Z</dc:date>
    <item>
      <title>data display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705844#M626883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hie experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       i used table control wizard to display the data and one field set as input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      but when i entered any value, it is not displayed, &lt;/P&gt;&lt;P&gt;      how to write the code to display the value in that field which we entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 04:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705844#M626883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T04:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: data display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705845#M626884</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;For that in your PAI of the screen containing the table control, you need to call a PAI module Between the LOOP at itab. ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS-AFTER-INPUT.

LOOP AT itab.
FIELD FLD_EDITABLE.
MODULE modify_itab ON CHAIN-REQUEST.
ENDLOOP.


MODULE modify_itab.
  MODIFY ITAB
    FROM ITAB
    INDEX TAB_CNTRL-CURRENT_LINE.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then this changed table should be picked up by the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 05:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705845#M626884</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-24T05:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: data display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705846#M626885</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;&lt;/P&gt;&lt;P&gt;You need to do coding to show data(PBO) and retrieve or actions (PAI)&lt;/P&gt;&lt;P&gt;For coding in PBO/PAI&lt;/P&gt;&lt;P&gt;in SAP ..go to se38 and view the following programs&lt;/P&gt;&lt;P&gt;1)DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/P&gt;&lt;P&gt;2)demo_dynpro_tabcont_loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the following exract code if from the above pgms&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL it_final.&lt;/P&gt;&lt;P&gt;MODULE FILL_TABLE_CONTROL.&lt;/P&gt;&lt;P&gt;"in this module write code to display the data by default when the screen is first displayed or get data passed from PAI and display it after user actions&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;MODULE CANCEL AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL it_final.&lt;/P&gt;&lt;P&gt;module read_table_control.&lt;/P&gt;&lt;P&gt;"write code for validations in this module&lt;/P&gt;&lt;P&gt;"The user actions will be captured here&lt;/P&gt;&lt;P&gt;"write code to fetch data from the screen and save it in a table or any desirable data structure&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the above suggestions proved useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 13:45:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-display/m-p/2705846#M626885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T13:45:27Z</dc:date>
    </item>
  </channel>
</rss>

