I'm not able to get to the OnInputProcessing event from a button click

I have a tableview and I added a button and I have put the code in the event OnInputProcessing. But when I click the button, it does not get to the event. Do you know what the problem might be?
Please help
Here's the complete code:
==============================
<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<%@extension name = "bsp" prefix="bsp" %>
<% if mrept = 'X'.%>
<htmlb:content design="classicdesign2002design2003" >
  <htmlb:page title = "Manager's Report ">
  <htmlb:form>
      <%-- TableView with columns description table --%>
      <htmlb:tableView id              = "tvX"
                       headerText      = "Manager's Report"
                       headerVisible   = "true"
                       design          = "alternating"
                       visibleRowCount = "30"
                       fillUpEmptyRows = "true"
                       onHeaderClick   = "MyEventHeaderClick"
                       onRowSelection  = "MyEventRowSelection"
                       keyColumn       = "contract"
                       table           = "<%= ZVMGR_MREPT %>"
                       iterator        = "<%= tv_iterator %>" >
      <htmlb:tableViewColumns>
          <htmlb:tableViewColumn    columnName       = "manager"
                                    wrapping         = "true"
                                    title            = "Manager" />
          <htmlb:tableViewColumn    columnName       = "sales_rep"
                                    wrapping         = "true"
                                    title            = "Sales Rep" />
          <htmlb:tableViewColumn    columnName       = "kunnr"
                                    wrapping         = "true"
                                    title            = "Sold To" />
          <htmlb:tableViewColumn    columnName       = "zzmassn"
                                    wrapping         = "true"
                                    title            = "Action" />
          <htmlb:tableViewColumn    columnName       = "action_date"
                                    wrapping         = "true"
                                    title            = "Compliance Review Date" />
          <htmlb:tableViewColumn    columnName       = "vtext"
                                    wrapping         = "true"
                                    title            = "Prod Line" />
          <htmlb:tableViewColumn    columnName       = "name1"
                                    wrapping         = "true"
                                    title            = "Name" />
          <htmlb:tableViewColumn    columnName       = "ort01"
                                    wrapping         = "true"
                                    title            = "City" />
          <htmlb:tableViewColumn    columnName       = "regio"
                                    wrapping         = "true"
                                    title            = "State" />
          <htmlb:tableViewColumn    columnName       = "period"
                                    wrapping         = "true"
                                    title            = "Compliance Review Period" />
          <htmlb:tableViewColumn    columnName       = "c_or_nc"
                                    wrapping         = "true"
                                    title            = "Status" />
          <htmlb:tableViewColumn    columnName       = "shortfall"
                                    wrapping         = "true"
                                    title            = "Shortfall Total" />
          <htmlb:tableViewColumn    columnName       = "close_date"
                                    wrapping         = "true"
                                    title            = "Action Date" />
          <htmlb:tableViewColumn    columnName       = "rewrt"
                                    wrapping         = "true"
                                    title            = "Action $" />
          <htmlb:tableViewColumn    columnName       = "zrvtid"
                                    wrapping         = "true"
                                    title            = "Contract" />
         </htmlb:tableViewColumns>
         </htmlb:tableView>
           <htmlb:button id = "btnxl" design = "emphasized" text = "Excel"
            onClientClick = "OnInputProcessing()" tooltip = "Download to Excel" />
       <p>
    <input type=submit name="onInputProcessing(Submit)"  value="Excel">
    </htmlb:form>
  </htmlb:page>
</htmlb:content>
<%else.%>
<htmlb:content design="classicdesign2002design2003" >
  <htmlb:page title = "Sales Rep's Report ">
    <htmlb:form>
      <%-- TableView with columns description table --%>
      <htmlb:tableView id              = "tvX"
                       headerText      = "Sales Rep's Report"
                       headerVisible   = "true"
                       design          = "alternating"
                       visibleRowCount = "30"
                       fillUpEmptyRows = "true"
                       onHeaderClick   = "MyEventHeaderClick"
                       onRowSelection  = "MyEventRowSelection"
                       keyColumn       = "contract"
                       table           = "<%= ZVMGR_SREPT %>"
                       iterator        = "<%= tv_iterator %>" >
      <htmlb:tableViewColumns>
          <htmlb:tableViewColumn    columnName       = "sales_rep"
                                    wrapping         = "true"
                                    title            = "Sales Rep" />
          <htmlb:tableViewColumn    columnName       = "kunnr"
                                    wrapping         = "true"
                                    title            = "Sold To" />
          <htmlb:tableViewColumn    columnName       = "zzmassn"
                                    wrapping         = "true"
                                    title            = "Action" />
          <htmlb:tableViewColumn    columnName       = "action_date"
                                    wrapping         = "true"
                                    title            = "Compliance Review Date" />
          <htmlb:tableViewColumn    columnName       = "vtext"
                                    wrapping         = "true"
                                    title            = "Prod Line" />
          <htmlb:tableViewColumn    columnName       = "name1"
                                    wrapping         = "true"
                                    title            = "Name" />
          <htmlb:tableViewColumn    columnName       = "ort01"
                                    wrapping         = "true"
                                    title            = "City" />
          <htmlb:tableViewColumn    columnName       = "regio"
                                    wrapping         = "true"
                                    title            = "State" />
          <htmlb:tableViewColumn    columnName       = "period"
                                    wrapping         = "true"
                                    title            = "Compliance Review Period" />
          <htmlb:tableViewColumn    columnName       = "c_or_nc"
                                    wrapping         = "true"
                                    title            = "Status" />
          <htmlb:tableViewColumn    columnName       = "shortfall"
                                    wrapping         = "true"
                                    title            = "Shortfall Total" />
          <htmlb:tableViewColumn    columnName       = "close_date"
                                    wrapping         = "true"
                                    title            = "Action Date" />
          <htmlb:tableViewColumn    columnName       = "rewrt"
                                    wrapping         = "true"
                                    title            = "Action $" />
          <htmlb:tableViewColumn    columnName       = "zrvtid"
                                    wrapping         = "true"
                                    title            = "Contract" />
         </htmlb:tableViewColumns>
         </htmlb:tableView>
           <htmlb:button id = "btnxl" design = "emphasized" text = "Excel"
            onClientClick = "OnInputProcessing()" tooltip = "Download to Excel" />
       <p>
    <input type=submit name="onInputProcessing(Submit)"  value="Excel">
    </htmlb:form>
  </htmlb:page>
</htmlb:content>
<%endif.%>

Hey Samuel,
You have not defined the name of the event.
Your button tag should be defined as follows:
<b><htmlb:button id = "btn_ShowProductStructure"
text = "Show Product Structure"
design = "EMPHASIZED"
onClick = "onInputProcessing(<i>btn_ShowProductStructure</i>)"
tooltip = "Click here to open Product Structure.."
/></b>
In attribute: onClick = "onInputProcessing(btn_ShowProductStructure)" replace <b><i>btn_ShowProductStructure</i></b> by the name of the event that you want to define.
Then onInputProcessing Page write the following code:
<b>IF EVENT->NAME = 'button' AND EVENT->EVENT_TYPE ='click'.
   CASE EVENT->ID.
     WHEN <i>'btn_ShowProductStructure'</i>.
<your logic comes here>
ENDCASE.</b>
Regards,
Reema.
Pl. give points if this solution addresses your problem.

Similar Messages

  • I am trying to download the new CS6 Design Suite - not able to get past the previous version.

    I am trying to downloat the new CS6 Design Suite and am not able to get past the previous version menu. Getting the message "This serial number is not for a qualifying product. Please try another." How do I get past this?

    When you say "Download" do you actually mean install?
    Which version are you upgrading from?
    Could you try the solutions in the following article: http://helpx.adobe.com/creative-suite/kb/error-serial-number-qualifying-product.html.
    Let us know if it helps.

  • Not able to get all the results if i use "get-spdeletedsite" command

    Hi everyone,
    I am not able to get all the results when I use the below powershell command.
    get-spdeletedsite -limit all
    It is giving me only one site, but infact we have more than 100 deleted sites.
    If I use the normal command like below it is giving the below output
    get-spdeletedsite
    Can any one tell me, how can I get all the deleted sites ?
    Best Regards
    Anil Alladi

    Hi  Anil,
    For the Limit parameter of Get-SPDeletedSite cmdlet, when we specify its value to ALL, it  will return all site collections for the given scope.
    For your scenario, the script “Get-SPDeletedSite –Limit ALL” will return all deleted site collections in your SharePoint environment.
    If you want to get all deleted site, you can export the result to csv as below:
    Get-SPDeletedSite | export-csv out.csv -notypeinformation
    Reference:
    http://technet.microsoft.com/en-us/library/hh286316(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Not Able to get to the values from applet while designing from xml

    Hi All,
    I have a new problem, and i am new to this one.
    Like I have an XML file.Where in i am able to design the applet while getting the values from the xml and i am able to store also.
    But the problem comes over here.I have given out a type field in xml.By validating the type field i am able to get Label(),TextField(),etc.,( whatever it is).While displaying i am giving only one single TextField in the init method and i am looping it up.so that i can get the no of text fields ,labels,text areas,etc.,
    so problem comes here.I am not able to get the values from those text fields.(only i am getting the last value.Last value is overwriting the old values.Now i am able to get the last value that i am giving it lastly.)
    So please can anyone give me some idea.As it is urgent to me and i have to submit urgently.
    Please help me out.And Thanks In Advance.

    Here is the sample code while designing the applet:
    String type = (String) typeList.get(j);
                             String option = (String) optionList.get(j);                                   
                             if(type.equals("text")){
                                  txtdisp = new TextField(15);
                                  leadcomp.add(txtdisp);     
    //                              txtdisp.addMouseMotionListener(this);}

  • Why i am not able to get all the applets which are included in a page

    Hi All,
    I have two applet which are included in JSF pages, when try to print all the applets which are inculded in web page
    Using below code. but it is printing current applet(the applet which is using this code to print),
    i am not seeing the other applet in println statement.
    what could be reason (well when i made a demo example it is printing all the applets which are included in web page)
    and is there any permission issues ( both applet are signed as well).
    can you please what could be the reason, thanks in advance.
    Enumeration enumw =   getAppletContext().getApplets();
                    while (enumw.hasMoreElements()) {
                        Applet element = (Applet)enumw.nextElement();
                        System.out.println("-------------applet name -------------------------------------->"+element.getName());
    }

    HI AndrewThompson64,
    thanks for your replay, i have increased dukes,
    one more thing i have tried is applet to javascript and from javascript to applet communication,
    but still i am not able to get other applet, when i tried call a javascript method i.e. doAlert(s) it calls, but i tried to print
    the other applet but it is not displaying it. the following code i have tried.
    <SCRIPT>
            function doAlert(s) {
                 alert(s);
                 alert(document.FloorPlanView);
                 alert("FloorPlanView "+document.applets["FloorPlanView"]);
                 alert("0 "+document.applets[0]);
                 alert("1 "+document.applets[1]);
                 alert("ScheduleProfileApplet "+document.ScheduleProfileApplet);
            </SCRIPT>let me tell you how the applet included in the webpage.
    mainmodule which include two jsp pages jsppage1.jsp and jsppage2.jsp
    and in jsppage1.jsp which includes a JSF page and it contains Applet
    <jsp:include page="ScheduleModule.jsp"/>and similarly same for the second applet.
    I need to look at applet communication through socket programing
    any help will be appreciated.

  • Not able to see all the SAP tables from CR 2008

    Hi All,
    1)I am not able to see all the SAP database tables(DEV server) from Database expert menu in CR 2008. Only tables those start with alphabet letters upto A & B are visible. I checked the database connection>right click>options> found no filters as well.
    We are using the CR 2008 trial version with SAP ECC.
    2) When i am trying with Production Server of SAP ECC, I am not able to logon to the SAP from CR 2008. It is giving error message
    as : LOGON FAILED : User USER1 has no RFC AUTHORIZATION for function group SYST
    Please help me to resolve these. Thanks in advance.

    Thank you very much ingo.
    You helped me a lot.
    One more question, when I am trying for SAP database connections say for ex: 10.57.410.70, again and again some times the connection is getting saved in my connections with as new versions/variants like
    10.57.410.70_1 or so. How to overcome this.
    Thanks in advance ingo
    Badari

  • FBL3N  Report  -not able to get all the transaction code details

    Hello,
    when FBL3N report  ran for one the expenses account (time paid off  - project charges account) , only few  line items are displaying  the transaction code like CJ88 and CJ8G.
    can you please tell me why all the line items are not showing the transactions codes and is there any know situation when the T- codes are not displayed.
    What I need to do, to get all the T- codes in the report ?
    I really appreciate your help.
    Regards
    Radha

    I know it is a line item report and I was expecting to see the transaction code details in the report for every line item. But in I'm not able to see all  T- codes for all the line items
    Thanks
    Radha

  • Why am I not able to get to the facebook page

    I am not able to log onto facebook, the tab stays searching for the page but does not do anything. I am able to log on using the google chrome browser

    In case you haven't already tried:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • I am not able to login to the Management Server from the Management Server dialog from FlexBuilder

    hi,
      I am trying to setup the flex builder project for the demo host sample and am running into issues with the login. I have my OEM setup in https://<ip-address>:7801/em and am able to login with the credentials. Now, when I try to launch the HostSample.html from the flex builder project and the details are provided to my Management Server dialog, the same credentials fail with some IO Error. Please help
    Error during operation: Logging in to Management Server
    [FaultEvent fault=[RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"]. URL: https://10.105.219.188:7801/em/websvcs/mpws/LoginService"] messageId=null type="fault" bubbles=true cancelable=true eventPhase=2]
    The LoginService.login is failing.
    Here is the Item details
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <SOAP-ENV:Header>
        <ns0:TraceRequest xmlns:ns0="http://em.oracle.com/tracing/xsd">
          <ns0:ecid>15D0C25A-51F9-B29F-EC74-DDD780ACCCEE</ns0:ecid>
        </ns0:TraceRequest>
        <ns1:RslVersion xmlns:ns1="http://em.oracle.com/auth/xsd">
          <ns1:rslVersion>12.1.0.3.0</ns1:rslVersion>
        </ns1:RslVersion>
        <ns1:InternalToken xmlns:ns1="http://em.oracle.com/auth/xsd">
          <ns1:intToken>secret-token</ns1:intToken>
        </ns1:InternalToken>
      </SOAP-ENV:Header>
      <SOAP-ENV:Body>
        <tns:loginRequest xmlns:tns="oracle.sysman.emx.LoginService">
          <loginInfo>
            <username>sysman</username>
            <password><my password text in plain text format></password>
            <role xsi:nil="true"/>
          </loginInfo>
        </tns:loginRequest>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

    When running with HTTPS, FlexBuilder enforces security restrictions on same domain policy and verifies security certificate.  To workaround this you either have to disable security on your OMS and use HTTP for your development (using emctl secure unlock), or you have to install the security certificate from your OMS in the IE browser you are launching from FlexBuilder.
    To install the certificate in Firefox:  go to the EM website using Firefox, and you will see "The Connection is Untrusted", expand "I Understand the Risks" and click "Add Exception".  On the dialog that appears leave all the defaults and click "Confirm Security Exception".  At that point if you close/reopen the browser you can go back to the EM website and you should see no security exception.
    To install the certificate in IE:  go to the EM website using IE and you should see "There is a problem with this website's security certificate", click "Continue to this Website (not recommended)", the address bar will then change to show "Certificate error" on the right side of the URL.  Click that icon and the "View certificates" on the "Untrusted Certificate" popup.  On the dialog that appears, click the "Certification Path" tab, then click the root node (root certificate) in the path and click "View Certificate".  In the new dialog that appears, click "Install Certificate...".  Then click "Next>", click "Place all certificates in the following store", click "Browse..."., select "Trusted Root Certification Authorities" and click "OK".  Then click "Next>" and click "Finish".  On the "Security Warning" dialog, click "Yes" to install the certificate and then "OK on the confirmation dialog.  Click "OK" on the "Certificate" dialog (there should be two) that was launched to install the root certificate.  Now on the original "Certificate" dialog click "View Certificate".  Then click "Next>", click "Place all certificates in the following store", click "Browse..."., select "Trusted Root Certification Authorities" and click "OK".  Then click "Next>" and click "Finish" and then "OK on the confirmation dialog. Click "OK" and "OK". At that point if you close/reopen the browser you can go back to the EM website and you should see no security exception.

  • HT4061 I am not able to get pass the passcode, therefore I cant give you the serial number to my iPad.

    unlock the passcode on Ipad. Have not been succesful.

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad/iPod into Recovery Mode
    http://support.apple.com/kb/ht4097

  • I'm not able to get passed the credit card info to get into iTunes or AppStore on my new iPad.

    I am unable to enter billing info in Apple ID to get hooked into App Store or iTunes. It wont't go past the credit card info. It keeps prompting me to see tech support. Can you tell me what I'm doing wrong? It's quite frustrating.

    If you are getting a message to contact iTunes Support then you can do so via this link and ask them why the message is appearing (we are fellow users, we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Thunderbird not able to import all the previous rss from opml file

    I'm using Thunderbird (linux) and move distros. So I exported all the rss feeds with the option available and got the opml file. Then imported the opml file back to the new Thunderbird. But thunderbird didn't retrieve all the rss feeds lists from the opml file and only displayed some. I know beacuse I checked what being displayed with what listed in the opml file. Was there any limit to how much feed lists that you can import?

    Hi,
    it took me some time to understand what the code should do.
    First of all please let me say, that wiring trough the error cluster is immanent for debugging. One problem I see is that the refnum from the document element is zero, so that all other calls for childs are failing. You will only notice this by debugging or execution highlighting (see James hint). You will also see a hint for a problem in this region of the code when you look at your indicator loadXml. This once was always False.
    I have changed two things:
    LoadXml.vi -> Read from Text File instead of binary
    Main.vi -> Using the read text for input of the LoadXml invoke method and not the pretty printed one.
    Now LoadXml performs the action and your 2D array is filling in some stuff. My advice would be to carefully debug your code and look, where references get lost and where errors occur.
    Good Luck
    Tyler
    Certified LabVIEW Architect

  • I am not able to connect to the Itunes store from my laptop

    After uploading and installing Itunes 10.4.1 I am no longer able to access the store.  I have addressed the firewall issues, flushed the DNS and still nothing. 

    http://support.apple.com/kb/HT5922
    If you want to mirror your desktop, see:
    http://support.apple.com/kb/HT5404
    Regards.

  • Not able to get the data in COSB Table

    Hi Colleagues,
    I have created a Project and assign the WBS number to a Sales order and also have done all the settings in Result Analysis.
    But still not able to get the data in COSB table.
    Could you please suggest me the steps and process, Might be i have missed something..
    Thanks in Advance
    Regards
    Nitin

    Hi Ken,
    I have below mentioned requirement
    COSB will show value by object number and need to pass the object number to PRPS table to find the corresponding WBS element and then pass the WBS element to VBAP table to find the corresponding SO line item.
    Please let me know as Functional prospect what I have to do to bring this values in COSB table.
    Regards
    Nitin

  • Not able to get the taxonomy field value of meta data field type

    Hi Everyone,
    Not able to get the taxonomy filed value from the metadata filed type.
    Any one can help me on this.
    Label, TermGuid, ValidatedString are showing empty when i debug the code.
    Below is the code which i used to get the taxonomy filed value

    Hi,
    Can you please try getting this way?
    var taxonomyField = listItem.Fields.GetFieldByInternalName(fieldName) as TaxonomyField;
    if (taxonomyField.AllowMultipleValues)
    var fieldValuesCollection = listItem[taxonomyField.Title] as TaxonomyFieldValueCollection;
    return fieldValuesCollection.Select(x => new Guid(x.TermGuid)).ToList();
    else
    var fieldValue = listItem[taxonomyField.Title] as TaxonomyFieldValue;
    return new List<Guid>() { new Guid(fieldValue.TermGuid) };
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for

  • Flash player 11.2.202.229 can´t see videos in youtube

    I installed the latest version of flash player for Chrome and I can´t see any video in youtube, It always worked perfectly and now It doesn't and i don't know why

  • ITunes not keeping my video files?

    I have several .mp4 (video) files that I have put into my iTunes. After updating my iPod, I can view them once, and then after later updating my iPod with new music or video files (and not changing the previously added video files referred to previou

  • ALE/EDI - Process of Inbound Freight Invoice EDI Document 210

    Good day all and a Happy New Year!  We want to receive Freight Invoices from UPS and other carrier vendors into SAP, to track actual shipment charges.  My question is, which Idoc/message type, should I use in order to map to the EDI document number 2

  • Upgrade won't complete

    I recently installed iLife and when I attempt to launch iPhoto 08, it indicates it must upgrade my library to proceed. I click ok and it continues. The satus bar/countdown will say 3 hours to complete. I check back in awhile and I'm down to 2 hours.

  • Windows Live Messenger not compatible with 8310 ?

    Hi there ! I just tried to download the Windows Live Messenger from my 8310 browser (http://www.blackberry.com/devicesoftware/entry.do?code=wlm) and I get the following message:"Notice. Sorry your device does not meet the system requirements that are