<?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: F4 Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675562#M1290345</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call a screen with calender control on it.. reduce the size and position of the screen as you want in call screen so as to adjust calender controls position. then whatever value is selected just get the month and year field and pass them to the screen.&lt;/P&gt;&lt;P&gt;For calender control&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/BCCICALENDAR/SAP_KALENDER.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/BCCICALENDAR/SAP_KALENDER.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jun 2009 11:19:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-10T11:19:45Z</dc:date>
    <item>
      <title>F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675560#M1290343</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;Month and Year are the inputs in the selection screen as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MONTH RANGE =  11/2008     TO     12/2008&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get the F4 help for the above select option to choose month and year.&lt;/P&gt;&lt;P&gt;please let me know how to get the F4 help, if possible please provide the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:03:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675560#M1290343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675561#M1290344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not the exact code&lt;/P&gt;&lt;P&gt;Work around with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:input_pattern(7).
data:begin of itab occurs 0,
         limit_l(7),
         dash(1),
         limit_h(7),
         end of itab.
data:    v_lineno like sy-tabix.

select-options:so_dat for input_pattern no-extension no intervals.

initialization.

itab-limit_l = '11/2008'.
itab-dash = '-'.
itab-limit_h = '12/2008'.
append itab.
itab-limit_l = '12/2008'.
itab-dash = '-'.
itab-limit_h = '01/2009'.
append itab.


at selection-screen on value-request for so_dat-low .

call function 'POPUP_WITH_TABLE_DISPLAY'
         exporting
              endpos_col   = 44
              endpos_row   = 20
              startpos_col = 30
              startpos_row = 05
              titletext    = 'Select Period'
         importing
              choise       = v_lineno
         tables
              valuetab     = itab
         exceptions
              break_off    = 1
              others       = 2.
    if sy-subrc eq 0.
      read table itab index v_lineno.
      if sy-subrc = 0.
        so_dat-low =  itab-limit_l.
      endif.
    endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675561#M1290344</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-06-10T11:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675562#M1290345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call a screen with calender control on it.. reduce the size and position of the screen as you want in call screen so as to adjust calender controls position. then whatever value is selected just get the month and year field and pass them to the screen.&lt;/P&gt;&lt;P&gt;For calender control&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/BCCICALENDAR/SAP_KALENDER.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/print46b/en/data/en/pdf/BCCICALENDAR/SAP_KALENDER.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675562#M1290345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675563#M1290346</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 it this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA G_SPMON TYPE SPMON.

SELECT-OPTIONS: DATE FOR  G_SPMON.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR DATE-LOW.

  CALL FUNCTION 'POPUP_TO_SELECT_MONTH'
    EXPORTING
      ACTUAL_MONTH                     = '200801'
*   FACTORY_CALENDAR                 = ' '
*   HOLIDAY_CALENDAR                 = ' '
*   LANGUAGE                         = SY-LANGU
*   START_COLUMN                     = 8
*   START_ROW                        = 5
   IMPORTING
     SELECTED_MONTH                   = DATE-LOW
*   RETURN_CODE                      =
* EXCEPTIONS
*   FACTORY_CALENDAR_NOT_FOUND       = 1
*   HOLIDAY_CALENDAR_NOT_FOUND       = 2
*   MONTH_NOT_FOUND                  = 3
*   OTHERS                           = 4
            .
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675563#M1290346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675564#M1290347</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;Check this FM POPUP_TO_SELECT_MONTH for F4 help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675564#M1290347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675565#M1290348</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;you can use search help /BI0/SCALMONTH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675565#M1290348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675566#M1290349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much .&lt;/P&gt;&lt;P&gt;issue resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 12:03:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/5675566#M1290349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T12:03:11Z</dc:date>
    </item>
  </channel>
</rss>

