<?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: parameters in a selection-screen output in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286310#M1219782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically AT SELECTION-SCREEN OUTPUT is part of the PBO of the selection-screen dynpro, error messages must be issued in the PAI of a dynpro ([else|http://help.sap.com/saphelp_nw70/helpdata/en/e5/e719bab1d711d295bf0000e8353423/frameset.htm]),  look at [online help|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbaabc35c111d1829f0000e829fbfe/frameset.htm] of the MESSAGE statement, so move your check in a AT SELECTION-SCREEN. or better put the 3 fields in a [block|http://help.sap.com/erp2005_ehp_04/helpdata/EN/79/34a23ad9b511d1950e0000e8353423/frameset.htm] (SELECTION-SCREEN BEGIN OF BLOCK/PARAMETERS/END OF BLOCK) and check the data in a AT SELECTION-SCREEN ON BLOCK, so the three fields will be available for input if an error message is issued.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Mar 2009 14:36:38 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2009-03-03T14:36:38Z</dc:date>
    <item>
      <title>parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286306#M1219778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys, &lt;/P&gt;&lt;P&gt;I have this situation.&lt;/P&gt;&lt;P&gt;Parameters: street(20) type c,&lt;/P&gt;&lt;P&gt;                   code(10) type c,&lt;/P&gt;&lt;P&gt;                    number(6) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If street is not initial.&lt;/P&gt;&lt;P&gt;  if code is initial and number is initial.&lt;/P&gt;&lt;P&gt;     "I have to put information into code or into number.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;I could do.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
IF P_STREET IS NOT INITIAL. "Si está lleno es obligatorio llenar Población o Código Postal
   IF P_CITY1 IS INITIAL AND P_CODE1 IS INITIAL.
      MESSAGE 'write information into Code or into Numberl' type 'E'.
   ENDIF.
ENDIF.
START-OF-SELECTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="more code"&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;It doesn't work very well any idea,please?&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 13:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286306#M1219778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T13:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286307#M1219779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;keep it in at selection-screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 13:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286307#M1219779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T13:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286308#M1219780</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;Put the code in at seelction screen event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;IF P_STREET IS NOT INITIAL. "Si está lleno es obligatorio llenar Población o Código Postal&lt;/P&gt;&lt;P&gt;   IF P_CITY1 IS INITIAL AND P_CODE1 IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE 'write information into Code or into Numberl' type 'E'.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&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;Shiva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 13:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286308#M1219780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T13:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286309#M1219781</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;Check this way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN .
IF P_STREET IS NOT INITIAL. "Si está lleno es obligatorio llenar Población o Código Postal
   IF P_CITY1 IS INITIAL AND P_CODE1 IS INITIAL.
     MESSAGE E016(pn) WITH 'write information into Code or into Numberl'.
   ENDIF.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 14:18:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286309#M1219781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-03T14:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286310#M1219782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically AT SELECTION-SCREEN OUTPUT is part of the PBO of the selection-screen dynpro, error messages must be issued in the PAI of a dynpro ([else|http://help.sap.com/saphelp_nw70/helpdata/en/e5/e719bab1d711d295bf0000e8353423/frameset.htm]),  look at [online help|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbaabc35c111d1829f0000e829fbfe/frameset.htm] of the MESSAGE statement, so move your check in a AT SELECTION-SCREEN. or better put the 3 fields in a [block|http://help.sap.com/erp2005_ehp_04/helpdata/EN/79/34a23ad9b511d1950e0000e8353423/frameset.htm] (SELECTION-SCREEN BEGIN OF BLOCK/PARAMETERS/END OF BLOCK) and check the data in a AT SELECTION-SCREEN ON BLOCK, so the three fields will be available for input if an error message is issued.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 14:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286310#M1219782</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-03-03T14:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286311#M1219783</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 At  selection-screen block &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will get rid of issue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON BLOCK b2.&lt;/P&gt;&lt;P&gt;  IF p_chkbox = 'X' AND p_file1 IS INITIAL.&lt;/P&gt;&lt;P&gt;        MESSAGE e000.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; IF p_chkbox = '' AND ( NOT p_file1 IS INITIAL ).&lt;/P&gt;&lt;P&gt;       MESSAGE e002.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt; IF p_chkbox = 'X' AND ( NOT s_ebeln IS INITIAL ).&lt;/P&gt;&lt;P&gt;       MESSAGE e001.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the above sample code .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 07:13:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286311#M1219783</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2009-03-04T07:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: parameters in a selection-screen output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286312#M1219784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 10:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-in-a-selection-screen-output/m-p/5286312#M1219784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T10:04:49Z</dc:date>
    </item>
  </channel>
</rss>

