<?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: module screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540651#M577292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ruby as u are moving data from itab to the screen field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u need to write zhr_per_m-fname = itab_final-fname &lt;/P&gt;&lt;P&gt;not itab_final-fname = zhr_per_m-fname.&lt;/P&gt;&lt;P&gt;probably that will be your mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2007 10:15:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-23T10:15:42Z</dc:date>
    <item>
      <title>module screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540648#M577289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;friends &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had change screen where i want to display the data from databse first come in text boxes then i will update &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so for retriving data first &lt;/P&gt;&lt;P&gt;i had written &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab_final,&lt;/P&gt;&lt;P&gt;perid like zhr_peR_m-perid,&lt;/P&gt;&lt;P&gt;fname like zhr_peR_m-fname,&lt;/P&gt;&lt;P&gt;lname like zhr_peR_m-lname,&lt;/P&gt;&lt;P&gt;end of itab_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module USER_COMMAND_0011 input.&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;when 'DISP'.&lt;/P&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;P&gt;perform get_data.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.                 " USER_COMMAND_0011  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form get_data .&lt;/P&gt;&lt;P&gt;select perid fname lname from zhr_peR_m into corresponding fields of itab_final&lt;/P&gt;&lt;P&gt;where perid = zhr_peR_m-perid.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;itab_final-fname = zhr_per_m-fname.&lt;/P&gt;&lt;P&gt;endform.                    " get_data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zhr_peR_m-fname is name of input/output text box where i want to display the output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please me the error and the solution for same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Best Regards&lt;/P&gt;&lt;P&gt;Ruby&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 10:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540648#M577289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: module screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540649#M577290</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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;form get_data .&lt;/P&gt;&lt;P&gt;select single perid fname lname from zhr_peR_m into corresponding fields of itab_final where perid = zhr_peR_m-perid.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;zhr_per_m-fname = itab_final-fname.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform. " get_data&amp;lt;/b&amp;gt;&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>Mon, 23 Jul 2007 10:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540649#M577290</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-23T10:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: module screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540650#M577291</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;try this....i have worked on this..this will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0800 INPUT.&lt;/P&gt;&lt;P&gt;  tables :  zhr_peR_m.&lt;/P&gt;&lt;P&gt;  gd_repid = sy-repid.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  data : itab_final1 like zhr_peR_m occurs 0 with header line,&lt;/P&gt;&lt;P&gt;         wa_final1 like line of itab_final1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  clear ok_code.&lt;/P&gt;&lt;P&gt;  case save_ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'DISP'.&lt;/P&gt;&lt;P&gt;   select perid fname lname from zhr_peR_m into corresponding fields of itab_final&lt;/P&gt;&lt;P&gt;                where perid = zhr_peR_m-perid.&lt;/P&gt;&lt;P&gt;   endselect.&lt;/P&gt;&lt;P&gt;      if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          LEAVE TO LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          write : zhr_peR_m-perid,&lt;/P&gt;&lt;P&gt;            10 zhr_peR_m-fname,&lt;/P&gt;&lt;P&gt;            30 zhr_peR_m-lname,&lt;/P&gt;&lt;P&gt;            50 sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        call screen 0801.//error screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      endif.&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>Mon, 23 Jul 2007 10:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540650#M577291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T10:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: module screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540651#M577292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ruby as u are moving data from itab to the screen field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u need to write zhr_per_m-fname = itab_final-fname &lt;/P&gt;&lt;P&gt;not itab_final-fname = zhr_per_m-fname.&lt;/P&gt;&lt;P&gt;probably that will be your mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 10:15:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-screen/m-p/2540651#M577292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T10:15:42Z</dc:date>
    </item>
  </channel>
</rss>

