<?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: module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823922#M351774</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;thanks for that........i did everythin but its not workin..........&lt;/P&gt;&lt;P&gt;sheeba......could u plz explain me how to debug module pool prgrm....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrads&lt;/P&gt;&lt;P&gt;sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jan 2007 11:08:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-24T11:08:24Z</dc:date>
    <item>
      <title>module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823907#M351759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guyz,&lt;/P&gt;&lt;P&gt;In a module pool program .....I create display button in layout....... created a function code......on which events do i need to declare this( PAI or PBO)....plz advise&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823907#M351759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823908#M351760</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;For defining the function code of the button you do it in the PF-STATUS in the PBO of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the functionality that the button has to do you define it in the PAI of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823908#M351760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823909#M351761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to write the functionality of the Button in the PAI event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this.&lt;/P&gt;&lt;P&gt;Flow  Logic.&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;MODULE TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the report&lt;/P&gt;&lt;P&gt;MODULE TEST.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'DISP'.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDMODULE TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823909#M351761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823910#M351762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write the code in the PAI module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when &amp;lt;function-code&amp;gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;when &amp;lt;function-code&amp;gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Award the points if the reply is useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823910#M351762</guid>
      <dc:creator>learnsap</dc:creator>
      <dc:date>2007-01-24T10:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823911#M351763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PAI event flow logic u will be having a default module_usercommand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uncomment that &amp;amp; write ue coding there.&lt;/P&gt;&lt;P&gt;case save_ok &lt;/P&gt;&lt;P&gt;when 'Fcode'.&lt;/P&gt;&lt;P&gt;logic.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823911#M351763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823912#M351764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assign OKCODE as ok type in screen element tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : okcode like sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in pai module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;module m1 input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case okcode.&lt;/P&gt;&lt;P&gt;when 'FCOD'.&lt;/P&gt;&lt;P&gt;code here&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;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823912#M351764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823913#M351765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Declare the PF status in PBO.&lt;/P&gt;&lt;P&gt;    use the sy-ucomm to capture the funcion code in PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823913#M351765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823914#M351766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudheer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irrespective of all the things you can make it generic by saying&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actions will be done in PAI always...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration and assignment can be done in PBO as it would get processed before displaying the screen everytime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you hit aby button on a screen PAI gets triggered and then if the same screen is displayed or any other screen is called then the PBO of that would trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- &lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823914#M351766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823915#M351767</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;U have to declare in PAI since its process after input, which means it should be triggered after any  input command by the user.&lt;/P&gt;&lt;P&gt;in ur case its on click of a button,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy_ucomm.&lt;/P&gt;&lt;P&gt;when 'EXIT'.  " exit is the func code for button, always in CAPS&lt;/P&gt;&lt;P&gt;leave program.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bijal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:29:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823915#M351767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823916#M351768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The Function code will be triggered when the User click something in the screen, if the user clicks that Pushbutton, then this function code will be triggerd, and these will be trigger in the PAI event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in the PAI event ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a Module. and double click and create that Module, and write the code over there .. like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-UCOMM = 'FUN_CODE'&lt;/P&gt;&lt;P&gt; do this.&lt;/P&gt;&lt;P&gt;ENDIF.`&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823916#M351768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823917#M351769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to do the following things.&lt;/P&gt;&lt;P&gt;1)In the element list tab of the screen,declare ok_code.&lt;/P&gt;&lt;P&gt;2)In the top declaration,write this:&lt;/P&gt;&lt;P&gt;DATA:OK_CODE type sy-ucomm.&lt;/P&gt;&lt;P&gt;3)In the PAI of the screen,uncomment the user_command module and double-click on it and write the following code.&lt;/P&gt;&lt;P&gt;Case ok_code.&lt;/P&gt;&lt;P&gt;When 'SAVE'.&lt;/P&gt;&lt;P&gt;...logic&lt;/P&gt;&lt;P&gt;When 'BACK'.&lt;/P&gt;&lt;P&gt;...logic&lt;/P&gt;&lt;P&gt;When 'Display'.&lt;/P&gt;&lt;P&gt;...logic&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Display is the function code created for the display button).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:34:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823917#M351769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823918#M351770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello every1......&lt;/P&gt;&lt;P&gt;thanks for ur replies....... save is wrkin...........back is working ........but display is not wrkin......&lt;/P&gt;&lt;P&gt;code is &lt;/P&gt;&lt;P&gt;when 'display'&lt;/P&gt;&lt;P&gt;call function &amp;lt;function module name&amp;gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;plz advise.....&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>Wed, 24 Jan 2007 10:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823918#M351770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823919#M351771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;When u have placed the button in the layout . U need to give a valid function code for that &lt;/P&gt;&lt;P&gt;After that U need to trigger the same in the PAI module of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case ok_code.&lt;/P&gt;&lt;P&gt;When'Fcode'.&lt;/P&gt;&lt;P&gt;Action&lt;/P&gt;&lt;P&gt;Endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823919#M351771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823920#M351772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to write display in uppercase like "DISPLAY"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823920#M351772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823921#M351773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the fn code of display button and try to use capital letters in quote.&lt;/P&gt;&lt;P&gt;or go to debugmode and check when you are clicking the display button which okcode it is taking? and match with the when.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 10:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823921#M351773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T10:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823922#M351774</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;thanks for that........i did everythin but its not workin..........&lt;/P&gt;&lt;P&gt;sheeba......could u plz explain me how to debug module pool prgrm....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrads&lt;/P&gt;&lt;P&gt;sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 11:08:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823922#M351774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823923#M351775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi every1 thaks for that........&lt;/P&gt;&lt;P&gt;i did everythin whateva u sed........but no change......&lt;/P&gt;&lt;P&gt;shiba ...........could u plz explain how to debug the module pool prgram.....&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>Wed, 24 Jan 2007 11:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823923#M351775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823924#M351776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Type DISPLAY in Caps.&lt;/P&gt;&lt;P&gt;Go to the screen and check the attributes.Make sure if the Function code is in Caps.&lt;/P&gt;&lt;P&gt;Place a breakpoint on case ok_code and check which value it takes after clicking on the DISPLAY button.Also in the PBO,make sure to clear the ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To debug the code,place a breakpoint on case ok_code in user command(utilities-&amp;gt;breakpoint-&amp;gt;set).And then execute the program.Check the value of field ok_code which should ideally be DISPLAY.&lt;/P&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;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 11:18:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823924#M351776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823925#M351777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;When you are at the Screen put /h  in the command field and then click on the Function key button.&lt;/P&gt;&lt;P&gt;you wil go to the PAI of the screen&lt;/P&gt;&lt;P&gt;check out the value of sy-ucomm . This will be the function code of your button.&lt;/P&gt;&lt;P&gt;so in the PAI of your screen give the value you see in sy-ucomm in CAPS and it should solve your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 11:22:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823925#M351777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823926#M351778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.......thanks everybody.....i gave u all, points......thanks again for everythin and spending time for me.Am closing this thread now.&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>Thu, 25 Jan 2007 17:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1823926#M351778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T17:00:38Z</dc:date>
    </item>
  </channel>
</rss>

