<?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: screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667268#M295278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At-selection screen : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are many options for this event .&lt;/P&gt;&lt;P&gt;1 ) This event is mainly used for validating any screen feilds Input data&lt;/P&gt;&lt;P&gt;2) Proviing Input help ( about the description of fireld and data input )&lt;/P&gt;&lt;P&gt;3) Providing F4 help possible entries &lt;/P&gt;&lt;P&gt;4) Modifying any screen fileds .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of- selction .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Fetch data from data base tables &lt;/P&gt;&lt;P&gt;2) Process data &lt;/P&gt;&lt;P&gt;3) Automaticng  locking on the database tables only in this table.&lt;/P&gt;&lt;P&gt;4) these get unlocks when end-of selection event occurs .&lt;/P&gt;&lt;P&gt;&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, 16 Nov 2006 23:37:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-16T23:37:24Z</dc:date>
    <item>
      <title>screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667261#M295271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are the functions of events Start-of-selection.and at selection-screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 12:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667261#M295271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T12:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667262#M295272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     AT selection screen is your PAI of the screen, here check your selection screen fields if the values entered or correct and in the right format etc. If you raise any error message the screen is shown again so that you can correct the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection is processed once you are sure that input is fine and you can read the data from the database using the input you have got.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically Start-of-selection is your business logic, AT selection-screen is an event to make sure the input given by the user is what you wanted or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 12:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667262#M295272</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2006-11-16T12:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667263#M295273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in which event user input validation will be done how it is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 12:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667263#M295273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T12:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667264#M295274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  INput validation is done in ATSELECTION-SCREEN event, you can also check for each field like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: para1 type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN ON para1.&lt;/P&gt;&lt;P&gt;Check the value entered here &lt;/P&gt;&lt;P&gt;if you raise an type 'E' message here&lt;/P&gt;&lt;P&gt;the field para1 is the only field on the screen&lt;/P&gt;&lt;P&gt;open for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can have as many as AT SELECTION-SCREEN ON events as you want&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively you can have one AT SELECTION-SCREEN and check all the fields, but on type 'E' all the fields are open for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 12:31:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667264#M295274</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2006-11-16T12:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667265#M295275</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;at slection-screen is used to validate the selection screen fields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection is used for selecting the data from database mainly.&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 13:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667265#M295275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T13:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667266#M295276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madhav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen : when there is some user id parameter is there in selection screen.&lt;/P&gt;&lt;P&gt;and you want to check the user id is exists in that system,&lt;/P&gt;&lt;P&gt;u validate user id in at selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection: once u enter f8 what we need to do is mainly in start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Anu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:51:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667266#M295276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667267#M295277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Any Screen has four events...&lt;/P&gt;&lt;P&gt;1. Process before output - Which occurs before the page is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Process after input      - Which occurs after the user has performed an action on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Process on value request - which is triggerd when a user requests for value help in a screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Process on help request - This event is triggered when a user requests information on the elemetns in a screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned above, A Selection-screen also has the same events. &lt;/P&gt;&lt;P&gt;The PAI event of Selection-Screen is AT SELECTION-SCREEN. When the user interacts with the selection screen this event is triggered. Usually validations are performed in this event. You can also use this event to change the selection-screen elements if required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now before knowing about START-OF-SELECTION ..event..&lt;/P&gt;&lt;P&gt;You should know about events in program execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When a user executes a program the following events occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Load of Program - The program to be executed is loaded.&lt;/P&gt;&lt;P&gt;2. Initialization.       -  Any validations or settings required before the execution of the program are performed in this event.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If there is a selection-screen, then selection -screen events are performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the next operation would be to select data. To do this Start-of-Selection event is triggered. This event is triggered implicitly if not specified in the program. SAP performs data selection in START-OF-SELECTION. You can also fetch records in all other events. But this event is triggered implicitly by SAP, if not specified in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope your questions are answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:58:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667267#M295277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667268#M295278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At-selection screen : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are many options for this event .&lt;/P&gt;&lt;P&gt;1 ) This event is mainly used for validating any screen feilds Input data&lt;/P&gt;&lt;P&gt;2) Proviing Input help ( about the description of fireld and data input )&lt;/P&gt;&lt;P&gt;3) Providing F4 help possible entries &lt;/P&gt;&lt;P&gt;4) Modifying any screen fileds .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of- selction .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Fetch data from data base tables &lt;/P&gt;&lt;P&gt;2) Process data &lt;/P&gt;&lt;P&gt;3) Automaticng  locking on the database tables only in this table.&lt;/P&gt;&lt;P&gt;4) these get unlocks when end-of selection event occurs .&lt;/P&gt;&lt;P&gt;&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, 16 Nov 2006 23:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screens/m-p/1667268#M295278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T23:37:24Z</dc:date>
    </item>
  </channel>
</rss>

