<?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: code in the module not triggered.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186536#M1000745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks vijay, so after evry user command control will go back to PBO ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2008 20:45:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-22T20:45:20Z</dc:date>
    <item>
      <title>code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186530#M1000739</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 have designed a screen with 2 radio buttons, aa and bb. its associated program is of Type M and named as &lt;/P&gt;&lt;P&gt;SAPMZXXXXX and screen number is 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i created 2 subscreens in the same program SAPMZXXXXX , number 101 and 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now by default the first subscreen 101 shud be displayed as the first radio button will be selected. this I achieve in &lt;/P&gt;&lt;P&gt;PBO of screen 100. I write a call subscreen. it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to capture the user's click on second radio button and to call the second subscreen, i double clicked on the MODULE USER_COMMAND_0100 under PAI and created that module and included the code as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE_OK = OK_CODE.&lt;/P&gt;&lt;P&gt;  CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;  CASE SAVE_OK.&lt;/P&gt;&lt;P&gt;    WHEN 'RADIO'.&lt;/P&gt;&lt;P&gt;      IF AA = 'X'.&lt;/P&gt;&lt;P&gt;         CALL SUBSCREEN OPTIONS_SUBSCREEN INCLUDING 'SAPMZXXX' '0101'.&lt;/P&gt;&lt;P&gt;      ELSEIF BB = 'X'.&lt;/P&gt;&lt;P&gt;         CALL SUBSCREEN OPTIONS_SUBSCREEN INCLUDING 'SAPMZXXX' '0102'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also i created a top include in SE38 named MZXXXXX_TOP of type Include program and included the data declarations like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: AA TYPE C,&lt;/P&gt;&lt;P&gt;      BB TYPE C.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;DATA: OK_CODE TYPE SY-UCOMM,&lt;/P&gt;&lt;P&gt;      SAVE_OK TYPE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and finally in the main screen program SAPMZXXXXX i included this top include. under that i cud see the module included as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE MZXXXXX_USER_COMMANI02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats wrong ?? its not working !! am i missing any step ??&lt;/P&gt;&lt;P&gt;thks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 19:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186530#M1000739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T19:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186531#M1000740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;PROGRAM  zmodule.

DATA: a value 'X',
           b.
DATA: v_dynnr TYPE sy-dynnr value  '0200'.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.

  IF a = 'X'.
    v_dynnr = '0200'.
  ELSE.
    v_dynnr = '0300'.
  ENDIF.

ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Flow logic of Fist screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.

 MODULE STATUS_0100.
call subscreen sub including sy-repid v_dynnr.

*
PROCESS AFTER INPUT.
 MODULE USER_COMMAND_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay babu Dudla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186531#M1000740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186532#M1000741</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 breakpoint and see if PAI event is getting triggered or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you assign 'FctCode' (Function code) to radio button. Until you assign function code to Radio button it will not trigger PAI event.&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;Nisarg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186532#M1000741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186533#M1000742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not working !! actually i dont understand the flow here !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call subscreen under PBO will be triggered the first time and the first subscreen will be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now when the user chooses the second button, v_dynnr is set to the new subscreen number,but then where is call subscreen again trrigged for the new subscreen ? pl explain !! thks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:34:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186533#M1000742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186534#M1000743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;call subscreen sub including sy-repid v_dynnr.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By Default i am displaying the First screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user selects the second radiobutton then i am changing the screen number dynamically inside user command.&lt;/P&gt;&lt;P&gt;in PAI user_Command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if b = 'X'.&lt;/P&gt;&lt;P&gt; v_dynnr  = '0300'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now again it will go to screen 100 PBO, here the code will be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call subscreen sub including sy-repid v_dynnr.  "now it is 300&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186534#M1000743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186535#M1000744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Nisarg, u r right, i did not assign the function code to the radio buttons and also my PAI does not seem to trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what shud be the value for the function code ? different for each radio button or what ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my code i check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SAVE_OK.&lt;/P&gt;&lt;P&gt;    WHEN 'RADIO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so shud it be RADIO for all the three ?? or what ?? please explain. anything more to do ? thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186535#M1000744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186536#M1000745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks vijay, so after evry user command control will go back to PBO ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186536#M1000745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186537#M1000746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;so shud it be RADIO for all the three ?? or what ?? please explain. anything more to do ?&lt;/EM&gt; If you set for one, it will be set for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought you set the function code to them...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And For every action it go to PAI, and then control back to PBO and displays the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186537#M1000746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186538#M1000747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry, i tried very hard...still the PAI is not triggered..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i assigned the function code as RADIO to all the 3 buttons!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any other tips !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 14:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186538#M1000747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T14:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186539#M1000748</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;There will be same Function code for all Radio buttons belongs to same Radio Group. Or you can say that we are assigning Function code to 'Radio Button Group'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leave FctType blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just gave a try and it worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your OK_CODE will have Function code value. And your Radio button variable will have 'X' or SPACE based on selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE_OK = OK_CODE.&lt;/P&gt;&lt;P&gt;CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;CASE SAVE_OK.&lt;/P&gt;&lt;P&gt;WHEN 'RADIO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF AA = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Your logic when AA Radio is selected&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ELSEIF BB = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Your logic when BB Radio is selected&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more suggestion, instead of testing/debugging directly from Screen painter (SE51), Please created Z T-code and test it from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nisarg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 15:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186539#M1000748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T15:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186540#M1000749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should work actually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;show me your Flow logic for the Main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and corresponding module. May be your screen is not active . Check it and activate the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you assign the function code to Radiobutton , other wise No action will be Triggered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 15:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186540#M1000749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T15:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186541#M1000750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for all ur patience. Vijay find below my work, it is still not working !! PAI does not seem to be triggered..thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I have created a screen program named SAPMZXXXXX with screen number 100 and 3 subscreens 101, 102 and 103.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The radio buttons have the function code RADIO and function type is blank !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. a subscreen area named SUBSCREEN1 is created in screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. the code in screen 100 is as follows:&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;  call subscreen SUBSCREEN1 including 'SAPMZXXXXX' v_dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.created one include MZXXXXX_TOP that holds the data declarations and included in module pool PROGRAM  SAPMXXXXX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: AA TYPE C VALUE 'X',&lt;/P&gt;&lt;P&gt;      BB TYPE C,&lt;/P&gt;&lt;P&gt;      CC TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OK_CODE TYPE SY-UCOMM,&lt;/P&gt;&lt;P&gt;      SAVE_OK TYPE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_DYNNR TYPE SY-DYNNR VALUE  '0101'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SAVE_OK = OK_CODE.&lt;/P&gt;&lt;P&gt;  CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SAVE_OK.&lt;/P&gt;&lt;P&gt;    WHEN 'RADIO'.&lt;/P&gt;&lt;P&gt;      IF AA = 'X'.&lt;/P&gt;&lt;P&gt;          V_DYNNR = '0101'.&lt;/P&gt;&lt;P&gt;      ELSEIF BB = 'X'.&lt;/P&gt;&lt;P&gt;          V_DYNNR = '0102'.&lt;/P&gt;&lt;P&gt;      ELSEIF CC = 'X'.&lt;/P&gt;&lt;P&gt;          V_DYNNR = '0103'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 15:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186541#M1000750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T15:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186542#M1000751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijay, to add, when i select the second radio button, screen flickers for a moment and control again goes back to the first radio button. my screen is active !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 15:53:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186542#M1000751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T15:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186543#M1000752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;call subscreen SUBSCREEN1 including &lt;STRONG&gt;SY-REPID&lt;/STRONG&gt; v_dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI Module keep the break point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see what happenes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 16:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186543#M1000752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T16:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186544#M1000753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi when i do that, and try to test the screen from se51, i get a popup initially which says &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;encountered the statement call subscreen subcreen1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then 2 radio buttons that say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do not execute&lt;/P&gt;&lt;P&gt;execute with parameters &lt;/P&gt;&lt;P&gt;where i have two input boxes, one for sy-repid and another for v_dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have set v_dynnr in the top include as&lt;/P&gt;&lt;P&gt;DATA: V_DYNNR TYPE SY-DYNNR VALUE  '0101'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also the PAI is not triggered !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should the function type for the radio buttons be blank ??&lt;/P&gt;&lt;P&gt;also in the elements list of screen 100, i had included one ok_code. is it correct or not ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats wrong ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 17:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186544#M1000753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T17:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186545#M1000754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to test it , You need to create the Tcode.&lt;/P&gt;&lt;P&gt;You are testing the Screen. But you should test the Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create the Transaction code , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought you are doing or testing it using the Transaction code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not created TCODE for the program create and Test it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 17:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186545#M1000754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T17:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186546#M1000755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Vijay, that did solve the problem,,,thanks..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now the new issue is when i select the second radio button, i am getting a runtime error that says system attempted to use the dynpro 0110 in the program but that dynpro does not exist !! actually i have my subscreens numbered 101, 102 and 103 !! also the code checks the same !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get this error in line number 50 of include SYSINI module name %_CTL_END !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats wrong ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 17:17:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186546#M1000755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T17:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: code in the module not triggered..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186547#M1000756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry, my bad...i had the next screen set as 110 !! thanks to all for resolving this issue and staying with me for soooo long !! thank u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 17:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-in-the-module-not-triggered/m-p/4186547#M1000756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T17:43:27Z</dc:date>
    </item>
  </channel>
</rss>

