<?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: Selection OPTION: Date input problem in Module POOL through Subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556531#M1857795</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Aaron,&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do u mean by this : "&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Call the subscreen during the AT SELECTION-SCREEN event.&lt;/SPAN&gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But "At SELECTION-SCREEN" event you are calling Screen 100. and not the sub-screen (Screen 400)&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;SELECTION-SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;100&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;Chandan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2014 14:15:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-07-31T14:15:30Z</dc:date>
    <item>
      <title>Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556529#M1857793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ALL,&lt;/P&gt;&lt;P&gt;Being new to ABAP, I am struck in a Problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement:&lt;/P&gt;&lt;P&gt;I want an option on the Screen( My Screen 9000) for Date Range. Through this Date-Range I want to filter and pull some data from&lt;/P&gt;&lt;P&gt;Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Date Range Selection option is possible only through Sub-Screen integration. Hence I integrated a Sub-Screen 400 (as below) and named the Sub-Screen area as SEL on my screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem: As soon as I enter the dates on the screen, then those dates are not taken up by the code.&lt;/P&gt;&lt;P&gt;During debugging I saw the the S_datum-low and S_datum-high are empty (in fact 00000000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_9000.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Call SUBSCREEN SEL&amp;nbsp; INCLUDING sy-repid '400'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&amp;nbsp; MODULE USER_COMMAND_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********************************************************************************************&lt;/P&gt;&lt;P&gt;DATA:&amp;nbsp; gv_datum&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type&amp;nbsp;&amp;nbsp; dats,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 400 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT-OPTIONS: s_datum FOR gv_datum.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 400 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help where I am missing something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 12:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556529#M1857793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T12:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556530#M1857794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call the subscreen during the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;400 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AS &lt;/SPAN&gt;SUBSCREEN&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECT-OPTIONS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;s_datum &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;gv_datum&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;400 &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;100&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Module&amp;nbsp; STATUS_0100&amp;nbsp; OUTPUT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*----------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE &lt;/SPAN&gt;status_0100 &lt;SPAN class="L0S52"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PF-STATUS &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'0100'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;nbsp; SET TITLEBAR 'xxx'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ENDMODULE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" STATUS_0100&amp;nbsp; OUTPUT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Module&amp;nbsp; USER_COMMAND_0100&amp;nbsp; INPUT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;*----------------------------------------------------------------------*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE &lt;/SPAN&gt;user_command_0100 &lt;SPAN class="L0S52"&gt;INPUT&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CASE &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ucomm&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHEN &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'BACK' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OR &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'EXIT' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OR &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'CANCEL'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LEAVE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDCASE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ENDMODULE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" USER_COMMAND_0100&amp;nbsp; INPUT&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556530#M1857794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556531#M1857795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Aaron,&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do u mean by this : "&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Call the subscreen during the AT SELECTION-SCREEN event.&lt;/SPAN&gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But "At SELECTION-SCREEN" event you are calling Screen 100. and not the sub-screen (Screen 400)&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;SELECTION-SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;100&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;Chandan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556531#M1857795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556532#M1857796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I apologize.&amp;nbsp; I should have said to call the screen not subscreen.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556532#M1857796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556533#M1857797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Ok I understood and tried that, but it doesn't works. still in debugging s_datum-low and s_datum-high are 00000000 .&lt;/P&gt;&lt;P&gt;Any more ideas!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:19:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556533#M1857797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556534#M1857798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you paste all of your code?&amp;nbsp; I have what I pasted above in a test program and it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556534#M1857798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556535#M1857799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, I see the difference.&amp;nbsp; In my test program I defined S_BUDAT as seen below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt; TABLES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;vbak&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;400 &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AS &lt;/SPAN&gt;SUBSCREEN&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;SELECT-OPTIONS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;s_datum &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;vbak&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;erdat&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;400 &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556535#M1857799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556536#M1857800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As for practice I am using minsap version of ABAP so in this version vbak table is not available. Hence I can't use the above table in my code.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556536#M1857800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556537#M1857801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any table with a date field would work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556537#M1857801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556538#M1857802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks. I have SFLIGH table in my version. So the field SFLIGHT-FDATE would work?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556538#M1857802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556539#M1857803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No I tries SFLIGHT-FLDATE. It doesn't works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is too long. I can post it if you want. and highlight the syntaxes that we need in BOLD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556539#M1857803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556540#M1857804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try to add this line in your PAI 9000... and check if work correctly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_9000.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Call SUBSCREEN SEL&amp;nbsp; INCLUDING sy-repid '400'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt; Call SUBSCREEN SEL&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; MODULE USER_COMMAND_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556540#M1857804</guid>
      <dc:creator>bernat_loscos</dc:creator>
      <dc:date>2014-07-31T14:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556541#M1857805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, that must be what he is missing.&amp;nbsp; I have that in my screen and forgot to mention it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556541#M1857805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556542#M1857806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Loscos,&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;You are right. After I introduced :&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN SEL in PAI of LOGIC of the screen, what I see in debugging mode that&lt;/P&gt;&lt;P&gt;S_datum-low and S_datum-high are populated but my main progg. of Screen 9000 doesn't gets executed. Even the back arrow doesn't works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Something more seems missing to enabale execution of code of Screen 9000.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556542#M1857806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T14:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556543#M1857807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This link may be help you to resolve the problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_470/helpdata/es/9f/dbabfe35c111d1829f0000e829fbfe/content.htm"&gt;http://help.sap.com/saphelp_470/helpdata/es/9f/dbabfe35c111d1829f0000e829fbfe/content.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 15:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556543#M1857807</guid>
      <dc:creator>bernat_loscos</dc:creator>
      <dc:date>2014-07-31T15:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Selection OPTION: Date input problem in Module POOL through Subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556544#M1857808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi chandan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said in MPP the entered date values become 000000. so first you have to capture the entered screen values using this function module&amp;nbsp;&amp;nbsp;&amp;nbsp; '&lt;SPAN style="font-size: 10pt;"&gt;DYNP_VALUES_READ'.&amp;nbsp; because you use SELECT-OPTION for date field. so you can use this function module (PROCESS ON VALUE&amp;nbsp; REQUEST FOR ...............) to capture the entered date-low and date-high . &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 16:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option-date-input-problem-in-module-pool-through-subscreen/m-p/10556544#M1857808</guid>
      <dc:creator>former_member185045</dc:creator>
      <dc:date>2014-07-31T16:37:15Z</dc:date>
    </item>
  </channel>
</rss>

