<?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 exit command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230170#M770536</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;I think its ON EXIT-COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is executed at the exit command of the selection screen - that is, at Back, Cancel, or End,events executed after the screen is sent that do not cause the system to check the input and execute the PAI. &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;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Jan 2008 10:25:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-12T10:25:16Z</dc:date>
    <item>
      <title>at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230169#M770535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what r the stmts related to at exit command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 10:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230169#M770535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T10:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230170#M770536</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;I think its ON EXIT-COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is executed at the exit command of the selection screen - that is, at Back, Cancel, or End,events executed after the screen is sent that do not cause the system to check the input and execute the PAI. &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;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 10:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230170#M770536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T10:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230171#M770537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AT-EXIT command is used in Dailog programming in the PAI block.&lt;/P&gt;&lt;P&gt;Whenever the PAI block gets executed the system checks for the input to be valid.But if you use the AT-EXIT statement,the system does not check for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The module with the AT EXIT-COMMAND addition is processed before the automatic field input checks. You can use it for navigation. You may use the AT EXIT-COMMAND addition with only one module for each screen. It may not have an associated FIELD statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 10:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230171#M770537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T10:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230172#M770538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shankar,&lt;/P&gt;&lt;P&gt;When the user chooses a function with type E, the screen flow logic jumps directly to the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE &amp;lt;mod&amp;gt; AT EXIT-COMMAND. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regardless of where it occurs in the screen flow logic, this statement is executed immediately, and before the automatic checks for the field contents on the screen. Before the module &amp;lt;mod&amp;gt; is executed, the contents of the OK-CODE field are transported to the ABAP field with the same name. However, no other screen fields are transported to the program at this stage. If you have more than one MODULE statement with the AT EXIT-COMMAND addition, only the first is executed. If there are no MODULE statements with the AT EXIT-COMMAND statement, normal PAI processing resumes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user chooses a function whose function code does not have type E, the MODULE &amp;lt;mod&amp;gt; AT EXIT-COMMAND statement is not executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI Modules for Type E Functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The MODULE ... AT EXIT-COMMAND statement is normally used to leave the current screen without the automatic input checks taking place. You should therefore program it to contain an appropriate variant of the LEAVE statement, to leave the current screen, the call chain, or the entire program, as appropriate. If the module does not leave the screen, normal PAI processing resumes after it has finished, that is, the automatic field checks take place, and the normal PAI modules are called, with data being transported from the screen back to the program according to the sequence defined in the FIELDS statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 12:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230172#M770538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T12:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230173#M770539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An Exit-command allows you to insert functionality into the PAI that by passes all screen validation&lt;/P&gt;&lt;P&gt;i.e. if you want the user to be able to exit a screen without actually having to fill all the mandatory&lt;/P&gt;&lt;P&gt;screen fields. To implent this you first need to create the function code on the PF-STATUS as a type&lt;/P&gt;&lt;P&gt;'Exit command'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;*PAI flow logic&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;   MODULE USER_COMMAND_0200 AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 12:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230173#M770539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T12:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230174#M770540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are talking about &lt;STRONG&gt;dialog programming&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The stement associated with at exit command&lt;/STRONG&gt; is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODULE &amp;lt;module_name&amp;gt;  AT EXIT-COMMAND.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition AT EXIT-COMMAND at the event PAI causes module &amp;lt;module_name&amp;gt; to be called exactly as if: &lt;/P&gt;&lt;P&gt;   a)The function used to trigger event PAI has function type "E" &lt;/P&gt;&lt;P&gt;   b )Into the input field of the standard toolbar, the user entered a character string starting with "E" and  confirmed it using ENTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dialog module is called before the automatic input checks defined in the system or in the ABAP Dictionary and independent of its position in the event block. The only screen field transported to the ABAP program is the OK field. If the function that triggered the PAI event does not fulfill any of the above prerequisites, the MODULE statement is not executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If several MODULE statements have the AT EXIT COMMAND addition, only the first one is executed. If no MODULE statement has the addition AT EXIT COMMAND, a normal PAI processing is executed: The predefined input checks are executed and then the PAI event block is processed sequentially. Provided the screen processing is not terminated in the dialog module mod, after the return from the dialog module, the complete PAI processing is executed. You must not use the addition AT EXIT COMMAND in connection with the statement FIELD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function type of a function is determined in the Screen Painter or Menu Painter. Usually those functions of the user interface are defined with function type "E" that are assigned to the icons Back, Exit and Cancel in the standard toolbar of the GUI status. Therefore, the called dialog module should terminate the screen processing and allow security checks, if required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are talking about the &lt;STRONG&gt;on exit-command in report programming&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;then the statement associated with it is&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection-screen on exit-command.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Effect&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;This event is triggered if the user has called one of the functions Back, Exit or Cancel. In the event block, possible clean-up actions can be executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull.&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;Kashyap Ivaturi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 13:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230174#M770540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T13:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: at exit command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230175#M770541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz check out...&lt;/P&gt;&lt;P&gt;MODULE mod&lt;/P&gt;&lt;P&gt;[ AT {EXIT-COMMAND|CURSOR-SELECTION} ] &lt;/P&gt;&lt;P&gt; [ ON {CHAIN-INPUT|CHAIN-REQUEST} ] &lt;/P&gt;&lt;P&gt; [ SWITCH switch ]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... AT EXIT-COMMAND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... AT CURSOR-SELECTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... ON {CHAIN-INPUT|CHAIN-REQUEST} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. ... SWITCH switch &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The statement MODULE of the dynpro flow logic calls the dialog module mod of the ABAP program. You can use MODULE either as a keyword or as an addition of statement FIELD. When using it as an addition, the call of the dialog module depends on conditions for the screen fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a keyword, the statement calls the dialog module mod of the respective ABAP program. At the event PAI, you can use the additions AT and ON to specify conditions for the call of the dialog module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the event PBO, you can call any dialog module defined in the ABAP program with the addition OUTPUT. At the events PAI, POH and POV, you can call any dialog module defined with the addition INPUT or without any addition. If the dialog module mod does not exist in the ABAP program, an untreatable exception is triggered. After processing a dialog module in the ABAP program, processing of the dynpro flow logic is resumed after the position of the call, unless the screen processing is completed within the dialog module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use MODULE as a keyword only at the events PBO and PAI. At the events POH and POV, you can use MODULE only as an addition to the FIELD statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Do not mix up the MODULE statement of the dynpro flow logic with the identically called statement MODULE for defining dialog modules in the ABAP program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... AT EXIT-COMMAND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Addition AT EXIT-COMMAND at the event PAI causes module mod to be called exactly if: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function used to trigger event PAI has function type "E" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into the input field of the standard toolbar, the user entered a character string starting with "E" and confirmed it using ENTER. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dialog module is called before the automatic input checks defined in the system or in the ABAP Dictionary and independent of its position in the event block. The only screen field transported to the ABAP program is the OK field. If the function that triggered the PAI event does not fulfill any of the above prerequisites, the MODULE statement is not executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If several MODULE statements have the AT EXIT COMMAND addition, only the first one is executed. If no MODULE statement has the addition AT EXIT COMMAND, a normal PAI processing is executed: The predefined input checks are executed and then the PAI event block is processed sequentially. Provided the screen processing is not terminated in the dialog module mod, after the return from the dialog module, the complete PAI processing is executed. You must not use the addition AT EXIT COMMAND in connection with the statement FIELD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The function type of a function is determined in the Screen Painter or Menu Painter. Usually those functions of the user interface are defined with function type "E" that are assigned to the icons Back, Exit and Cancel in the standard toolbar of the GUI status. Therefore, the called dialog module should terminate the screen processing and allow security checks, if required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... AT CURSOR-SELECTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The AT CURSOR-SELECTION addition at the event PAI causes the module mod to be called only if &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function used to trigger event PAI has function code "CS" and function type "S" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The cursor is placed on a single input or output field of the screen at the moment of the user action &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The call occurs within the usual PAI processing, meaning that the automatic input checks defined in the system or in the ABAP Dictionary are executed and the MODULE statement is called according to its position in the event block. You can use the addition in connection with the FIELD statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the PAI event is triggered under the above circumstances, the function code is not passed to sy-ucomm and the OK field. They keep their previous values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The function type and function code of a function are determined in the Screen Painter or in the Menu Painter. We recommend to assign function code "CS" in the Menu Painter to function key F2 in order to simultaneously assign the double-click function of the mouse to it. This allows you to assign dialog modules to the selection of input or output fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... ON {CHAIN-INPUT|CHAIN-REQUEST} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;These conditions make sense only within chains using the CHAIN and ENDCHAIN statements. They check the individual conditions ON INPUT or ON REQUEST for all screen fields that are specified so far within the current chain after FIELD. The dialog module is called if at least on of the screen fields fulfills the respective condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 4 &lt;/P&gt;&lt;P&gt;...SWITCH switch &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;If the addition SWITCH is specified, the dialog module mod is called only if the switch specified by switch has the state on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With switch, a switch defined in the Repository must be specified directly. If the specified switch does not exist, the dialog module will not be called. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot specify the addition together with the statement FIELD. There, the switch assigned to the screen field in the Screen Painter applies. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typical structure of a simple dynpro flow logic. At PBO, a dialog module status_0100 is called to set the GUI status, at PAI, a dialog module leave_100 is called to handle functions with function type "E" and a dialog module user_command_0100 to handle the other user actions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT. &lt;/P&gt;&lt;P&gt;  MODULE status_0100. &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT. &lt;/P&gt;&lt;P&gt;  MODULE leave_100 AT EXIT-COMMAND. &lt;/P&gt;&lt;P&gt;  MODULE user_command_0100. &lt;/P&gt;&lt;P&gt;The relevant ABAP program must implement the dialog modules and may have a structure like the one below. Because dialog module have no local data, we recommend to handle the actual processing within procedures that you call depending on the function code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm, &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;MODULE status_0100 OUTPUT. &lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STATUS_0100'. &lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE leave_100 INPUT. &lt;/P&gt;&lt;P&gt;  CASE ok_code. &lt;/P&gt;&lt;P&gt;    WHEN 'BACK'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;    WHEN 'CANCEL'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;    WHEN 'EXIT'. &lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM. &lt;/P&gt;&lt;P&gt;    ... &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT. &lt;/P&gt;&lt;P&gt;  CASE ok_code. &lt;/P&gt;&lt;P&gt;    WHEN ... &lt;/P&gt;&lt;P&gt;      CALL ... &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards and thanks,&lt;/P&gt;&lt;P&gt;srikanth tulasi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: srikanth tulasi on Jan 12, 2008 2:23 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: srikanth tulasi on Jan 12, 2008 2:24 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: srikanth tulasi on Jan 12, 2008 2:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Jan 2008 13:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-exit-command/m-p/3230175#M770541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-12T13:22:19Z</dc:date>
    </item>
  </channel>
</rss>

