<?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: display data in input/output fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347796#M174997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Lana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to desing two screen, first screen will take input from the user and the second screen wil display details from both the DB. The first screen PBO you can set the GUI and in  PAI you will process the input from the User. You will handle all the actions and validation with error message in the PAI of screen 1. After user has entered a valid record u will read the data from both the DB and populate the fields of the second screen. then call the second screen. Here also PBO will set the GUI and other options and PAI will handle the user action.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 May 2006 06:14:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-05T06:14:22Z</dc:date>
    <item>
      <title>display data in input/output fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347794#M174995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello..&lt;/P&gt;&lt;P&gt;i want to do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. search db based on stud id (stud_id) inputted by the user on sreen 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. display related info of student on input/output fields on screen 2 from 2 db db linked thru stud id.&lt;/P&gt;&lt;P&gt;db: stud_info, stud_grade&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 06:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347794#M174995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T06:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: display data in input/output fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347795#M174996</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;&lt;/P&gt;&lt;P&gt;1. Use a select query to check whether the id entered by the user exists in the db or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. select stud_id&lt;/P&gt;&lt;P&gt;           into l_stud_id&lt;/P&gt;&lt;P&gt;           from stud_info&lt;/P&gt;&lt;P&gt;           where stud_id = p_stud_id.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;select * &lt;/P&gt;&lt;P&gt;       into table i_stud&lt;/P&gt;&lt;P&gt;       from stud_grade&lt;/P&gt;&lt;P&gt;       where stud_id = l_stud_id.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then loop at i_stud &amp;amp; use write statement to display the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 06:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347795#M174996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T06:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: display data in input/output fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347796#M174997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Lana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to desing two screen, first screen will take input from the user and the second screen wil display details from both the DB. The first screen PBO you can set the GUI and in  PAI you will process the input from the User. You will handle all the actions and validation with error message in the PAI of screen 1. After user has entered a valid record u will read the data from both the DB and populate the fields of the second screen. then call the second screen. Here also PBO will set the GUI and other options and PAI will handle the user action.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 06:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347796#M174997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T06:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: display data in input/output fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347797#M174998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi lana,&lt;/P&gt;&lt;P&gt;u can easily do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: TAB1,TAB2.&lt;/P&gt;&lt;P&gt;PARAMETERS P1 LIKE TAB1-SNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; SELECT SINGLE * FROM TAB2 WHERE SNO EQ P1.&lt;/P&gt;&lt;P&gt; CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Define input fields on screen 100 based on TAB2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 06:16:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347797#M174998</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-05T06:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: display data in input/output fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347798#M174999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, thanks.. &lt;/P&gt;&lt;P&gt;im done on that part. question is how to carry over the record on scren 2 using the data entered by the user on screen 1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also how would i be able to display these data on the fields itself.. thanks a lot. &lt;SPAN __jive_emoticon_name="grin"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 06:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-data-in-input-output-fields/m-p/1347798#M174999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T06:59:59Z</dc:date>
    </item>
  </channel>
</rss>

