<?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 About screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-screen/m-p/5030423#M1170177</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two screen 500 and 600.&lt;/P&gt;&lt;P&gt;First call screen 500, pop a dialog, after input some fields, i want to write the list in screen 600.&lt;/P&gt;&lt;P&gt;I have the following code. When I call 600, no data are written. can someone tell me the reason?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 500 starting at 45 10 ending at 100 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module status_0500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module user_command_0500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module document_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module status_0500 output.&lt;/P&gt;&lt;P&gt;  set pf-status '0500'.&lt;/P&gt;&lt;P&gt;endmodule.                 " status_0500  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module user_command_0500 input.&lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  case ok_code.&lt;/P&gt;&lt;P&gt;    when 'OKAY'.&lt;/P&gt;&lt;P&gt;      call screen 600.&lt;/P&gt;&lt;P&gt;      set screen 500.&lt;/P&gt;&lt;P&gt;    when 'CACL'.&lt;/P&gt;&lt;P&gt;      leave to screen 0.&lt;/P&gt;&lt;P&gt;    when others.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;endmodule.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module document_list output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  leave to list-processing and return to screen 0.&lt;/P&gt;&lt;P&gt;  set pf-status space.&lt;/P&gt;&lt;P&gt;  suppress dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write:  /000(5) 'CoCd' centered,&lt;/P&gt;&lt;P&gt;           006(20) 'Doc.no.' centered,&lt;/P&gt;&lt;P&gt;           027(4)  'Year' centered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write: /'TW00', 10000000, 2008.&lt;/P&gt;&lt;P&gt;  write: /'TW00', 10000001, 2008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " document_list  OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jan 2009 14:05:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-07T14:05:55Z</dc:date>
    <item>
      <title>About screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-screen/m-p/5030423#M1170177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two screen 500 and 600.&lt;/P&gt;&lt;P&gt;First call screen 500, pop a dialog, after input some fields, i want to write the list in screen 600.&lt;/P&gt;&lt;P&gt;I have the following code. When I call 600, no data are written. can someone tell me the reason?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 500 starting at 45 10 ending at 100 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module status_0500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module user_command_0500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  module document_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module status_0500 output.&lt;/P&gt;&lt;P&gt;  set pf-status '0500'.&lt;/P&gt;&lt;P&gt;endmodule.                 " status_0500  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module user_command_0500 input.&lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  case ok_code.&lt;/P&gt;&lt;P&gt;    when 'OKAY'.&lt;/P&gt;&lt;P&gt;      call screen 600.&lt;/P&gt;&lt;P&gt;      set screen 500.&lt;/P&gt;&lt;P&gt;    when 'CACL'.&lt;/P&gt;&lt;P&gt;      leave to screen 0.&lt;/P&gt;&lt;P&gt;    when others.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;endmodule.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module document_list output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  leave to list-processing and return to screen 0.&lt;/P&gt;&lt;P&gt;  set pf-status space.&lt;/P&gt;&lt;P&gt;  suppress dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write:  /000(5) 'CoCd' centered,&lt;/P&gt;&lt;P&gt;           006(20) 'Doc.no.' centered,&lt;/P&gt;&lt;P&gt;           027(4)  'Year' centered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write: /'TW00', 10000000, 2008.&lt;/P&gt;&lt;P&gt;  write: /'TW00', 10000001, 2008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " document_list  OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2009 14:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-screen/m-p/5030423#M1170177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-07T14:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: About screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-screen/m-p/5030424#M1170178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2009 06:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-screen/m-p/5030424#M1170178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-09T06:49:19Z</dc:date>
    </item>
  </channel>
</rss>

