<?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: at selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387726#M813448</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;If you want the program to check your condition after pressing F8 then you move the code you have written to START-OF-SELECTION. so that after pressing F8 it will check the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yellappa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2008 11:37:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-22T11:37:39Z</dc:date>
    <item>
      <title>at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387724#M813446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am having 2 parameters in selection screen&lt;/P&gt;&lt;P&gt; P _down as checkbox,&lt;/P&gt;&lt;P&gt; p_file as file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to check if i selected the checkbox then if the file is initial, it should throw error message .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here in selection screen when i click the checkbos itself it is showing eror message before execute F8.&lt;/P&gt;&lt;P&gt;                                         &lt;/P&gt;&lt;P&gt;Anybody help me this is urgent&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;  IF p_dl EQ 'X'.&lt;/P&gt;&lt;P&gt;        if p_file is inital.&lt;/P&gt;&lt;P&gt;      MESSAGE e001 WITH 'File is initial'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:34:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387724#M813446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387725#M813447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write the below ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;IF sy-ucomm = 'ONLI'.  &amp;lt;-- add this .. this will be executed only if U &lt;/P&gt;&lt;P&gt;press F8&lt;/P&gt;&lt;P&gt;IF p_dl EQ 'X'.&lt;/P&gt;&lt;P&gt;if p_file is inital.&lt;/P&gt;&lt;P&gt;MESSAGE e001 WITH 'File is initial'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:37:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387725#M813447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387726#M813448</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;If you want the program to check your condition after pressing F8 then you move the code you have written to START-OF-SELECTION. so that after pressing F8 it will check the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yellappa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387726#M813448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387727#M813449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you do not want this in the At selection screen then write the same code in the start-of-selection&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387727#M813449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387728#M813450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi srinavas,&lt;/P&gt;&lt;P&gt; this is  not working.&lt;/P&gt;&lt;P&gt;it is showing the same error , before entering the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please exceute and let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387728#M813450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387729#M813451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry not at F8, but it has to show at selection screen itself .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where here if check the checkbox itself it is throwing error before enter the file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will you pls help me now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:46:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387729#M813451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387730#M813452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only reason i feel could be something is wrong in the declaration of the check box. Have you assigned a user-command while declaring the checbox like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; parameter: p_dl as checkbox user-command &amp;lt;ucom&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If thats the case, then in the AT SELECTION-SCREEN event, do the following.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN.
IF  SY-UCOMM NE &amp;lt;ucom&amp;gt;.
   IF p_dl EQ 'X'.
     IF p_file is inital.
        MESSAGE e001 WITH 'File is initial'.
     ENDIF.
   ENDIF
ENDIF..
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Balaji Ganapathiraman on Feb 22, 2008 5:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387730#M813452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387731#M813453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not showing any error in my system ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters :  P_down as checkbox,&lt;/P&gt;&lt;P&gt;                    p_file like rlgrap-filename..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;IF p_down EQ 'X'.&lt;/P&gt;&lt;P&gt;  if p_file is initial.&lt;/P&gt;&lt;P&gt;    MESSAGE e001 WITH 'File is initial'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 11:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387731#M813453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T11:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387732#M813454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for everone in helping in solving this ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in the same code i am checking for file type to XLs.&lt;/P&gt;&lt;P&gt;Whereas i aa trying to pick the only file type XLS last 3 characters .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here it is not picking  through split command, will help me in this please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF sy-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;    IF p_dl EQ 'X'.&lt;/P&gt;&lt;P&gt;      IF NOT p_file IS  INITIAL.&lt;/P&gt;&lt;P&gt;        SPLIT p_file AT gv_delimiter  INTO gv_type gv_file1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF gv_type NE 'XLS'.&lt;/P&gt;&lt;P&gt;          MESSAGE e001 WITH 'File Type  is not Excel File'(e12).&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MESSAGE e001 WITH 'Enter the File'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387732#M813454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387733#M813455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : gv_delimiter type c value '.'.&lt;/P&gt;&lt;P&gt;data : gv_file1(50), gv_type(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you need to write the statement as and check for the &lt;/P&gt;&lt;P&gt;data declarations ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT p_file AT gv_delimiter INTO gv_file1 gv_type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/3387733#M813455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:15:46Z</dc:date>
    </item>
  </channel>
</rss>

