<?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 Displaying the captured data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255110#M488146</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to select single record from the database based on the ponumber. I also need the display the values captured from the database in the internal table on the screen (input fields).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 May 2007 09:08:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-30T09:08:29Z</dc:date>
    <item>
      <title>Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255110#M488146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to select single record from the database based on the ponumber. I also need the display the values captured from the database in the internal table on the screen (input fields).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:08:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255110#M488146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255111#M488147</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;Use Select single/Upto opne rows to fetch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using write you can display the captured data.&lt;/P&gt;&lt;P&gt;&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;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255111#M488147</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-30T09:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255112#M488148</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;Use SELECT SINGLE * UPTO 1 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO FILL THIS DATA SELECTED INTO AN INTERNAL TABLE create an Internal table with same field those u want to select and then use like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM &amp;lt;table name&amp;gt; INTO TABLE &amp;lt;INTERNAL TABLE NAME&amp;gt; UPTO 1 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255112#M488148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255113#M488149</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;First create a screen with all the fields. EKKO fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO of the screen create a module DISPLAY_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IN MODULE DISPLAY_DATA.
select single * from EKKO where ebeln = 'XXX'.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will display the data in the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255113#M488149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255114#M488150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to add something to what my friend has said above.&lt;/P&gt;&lt;P&gt;Give the field names as that of the internal table fields&lt;/P&gt;&lt;P&gt;like if u want to display ekko-ebeln and ekko-bukrs which u r fetching into &lt;/P&gt;&lt;P&gt;itab-ebeln and itab-bukrs, give the screen field name as itab-ebeln and itab-bukrs. Then proceed as what has been said above.&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>Wed, 30 May 2007 09:16:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255114#M488150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255115#M488151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your screen flow logic (se51)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;module display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in abap code.&lt;/P&gt;&lt;P&gt;declare the fields name as variable suppose you have assigned sebeln name to a input field in screen layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : sebeln like ekko-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in pbo module.&lt;/P&gt;&lt;P&gt;module display output.&lt;/P&gt;&lt;P&gt;select single ebeln into sebeln from ekko where &amp;lt;cond&amp;gt;.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255115#M488151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying the captured data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255116#M488152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my select querry I need to send the values capture to the screen fields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM zpo_input INTO TABLE itab WHERE ponumber EQ&lt;/P&gt;&lt;P&gt;zpo_input-ponumber.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the screen fields are&lt;/P&gt;&lt;P&gt;zpo_input-PONUMBER&lt;/P&gt;&lt;P&gt;zpo_input-INV_NO&lt;/P&gt;&lt;P&gt;zpo_input-VENDOR_NO&lt;/P&gt;&lt;P&gt;zpo_input-PODATE&lt;/P&gt;&lt;P&gt;zpo_input-POAMOUNT&lt;/P&gt;&lt;P&gt;zpo_input-TYPEOFMAT&lt;/P&gt;&lt;P&gt;zpo_input-PROJK&lt;/P&gt;&lt;P&gt;zpo_input-BUYER&lt;/P&gt;&lt;P&gt;zpo_input-PORECDATE&lt;/P&gt;&lt;P&gt;zpo_input-INV_AMOUNT&lt;/P&gt;&lt;P&gt;zpo_input-STATUS&lt;/P&gt;&lt;P&gt;zpo_input-REMARK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how to move the data to these fields from internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 09:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-the-captured-data/m-p/2255116#M488152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T09:22:13Z</dc:date>
    </item>
  </channel>
</rss>

