Insert and query buttons missing on qbe customize

I created a simple qbe report and enabled update, delete, insert, and query. If I use the 'customize' link on the portal development screen for the qbe, it gives me the insert and query buttons. But as a portlet added to a page, if you click on the customize at the top right of the qbe portlet, it omits the insert and query buttons. Why does this happen? In each case I am logged in as the same person. I even played with the priviledges, to no avail.
Any suggestions?

Hi Steve ,
In Qbe Report the update , delete , insert buttons are for full page mode and will not appear in portlet mode .
The portlet mode customization can only be used to change the data appearing in the report (this is in consistent with the other kinds of reports )
As a work around a form can be provided to insert and update the data .
Regards
Medini

Similar Messages

  • Firefox version: 3.6.8 Operating system: Windows XP - back and forward buttons disappers. REsetting customize toolbar to default doen't solve the problem

    I've Firefox version: 3.6.8 , OS: Windows XP - The back and forward buttons disappears. Resetting customize toolbar to default doesn't solve the problem.
    == This happened ==
    Every time Firefox opened
    == Firefox was updated to ver 3.6.8

    In Firefox 3.6 and later on Windows you can hide the menu bar via "View > Toolbars" or via the right click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the menu bar temporarily.
    Go to "View > Toolbars" or right-click the menu bar or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also [[Menu bar is missing]] and http://kb.mozillazine.org/Toolbar_customization

  • Very slow insert and query

    Dear Professionals:
    The insert and query become very slow and somtimes hang. It wasn't like this before .. Network people added 100 pc to the network .. most of them not using the databse only internet and we are all in the same network .. Can this slow down the database Oracle 9.2.0.1.0 OS w2k server ? And how to know that the slowness is from network and not from query or inserts ?
    Ahmed.

    Hi,
    >>Network people added 100 pc to the network .. most of them not using the databse only internet. Can this slow down the database Oracle 9.2.0.1.0 OS w2k server ?
    Maybe yes, maybe not, maybe a network performance problem ...
    If you try to execute these DML's (insert, ...) and querys directly on the Server, what's happen ?
    Cheers

  • Chart and filter button missing

    when I insert a query in a workbook the chart and filter button are missing.  We are using netweaver 2004s.  is there a way to have them display?

    Hi LMM,
    There are 2 ways to create workbooks:
    1) create a workbook in Excel (create new workbook in Excel thus not via the GUI), insert a query using the Bex analyzer and save using the Bex analyzer.
    2) create a query using Bex analyzer, execute the query, save as workbook using Bex analyzer  
    Option 2) will have the chart and filter buttons.
    Option 1) will not have these options.
    Assuming you created the workbook using option 1), please recreate the workbook using option 2).
    You should now have the chart and filter options.
    Please assign points of this solved your problem,
    Best Regards,
    Filip

  • LR Approve and Reject buttons missing?

    Hi,
    We have recently customised standard LR workflow and we have replaced standard LR task (TS12300097, TS12300116) to custom task.  We have updated UWL configuration file to add these 2 new task.  We could successfully see the LR raised by ESS user in the MSS UWL task list but when we click on the task we could see the task details without APPROVE and REJECT buttons, these 2 buttons are missing.
    We have made necessary changes in the SWFVISU tcode and Portal UWL XML configuration.  Is there any other configuration need to be done to fix this issue(make APPROVE and REJECT button visible)?
    NOTE: If we switch it back to standard task the buttons are visible it's invisible only when it's using new task.
    Thanks
    Praveen

    Thanks Vivek.
    I have resolve this issue, I found that in the UWL xml configuration I have configured task WebDynproApplication property incorrectly, it was pointing to LeaveRequest instead of LeaveRequestApprover.  Changing this has fixed the problem.
    Thanks anyway.
    Closing this thread.
    Praveen.

  • Accept Terms and Conditions Button Missing

    I just tried to sign up for a free trial of Creative Cloud.  I used my exisitng Adobe ID and then I was prompted to enter my date of birth... and then the terms and conditions box popped up.  Using Firefox 19.0.2 and Chrome 26.0.1410.64 m the checkbox and accept button are missing (broken CSS?) on IE 9 the button barely shows but I was able to click it.  I told Adobe customer support but they said they couldn't pass the info on and suggested that I post it here...

    TLyon please see the exisiting discussions on this topic at http://forums.adobe.com/message/5180180#5180180 and http://forums.adobe.com/message/5130319#5130319.  I would recommend adding your experience to the first discussion as opposed to starting a separate discussion.

  • Insert and Delete Button related code

    Hi Expert,
    I have requirement to create custom assignment block with custom table (value node), and add two button "Insert" and "Delete" on that AB.
    I have created the custom AB and button in "DO_PREPARE_OUTPUT" method.
    I need to create event handler for EH_ONINSERT and EH_ONDELETE, once the user click on "Insert" button one row editible row should append on AB and similar way if user select any row in AB and click on delete button entry should be deleted from AB.
    And i need "SAVE" button on top on overview page so entry should get saved in table.
    Regards,
    Kapil

    Hi Kapil,
    You can refer below mentioned link for your web ui related developments.
    SAP CRM WEB UI : 48.ADDING EDIT,CANCEL AND SAVE BUTTONS TO THE OVERVIEW PAGE TOOLBAR
    Rgds
    Hari

  • Import and Backup button missing from "library" view, I am trying to import hmtl bookmarks

    I have just clean installed latest Ubuntu 11.04 which comes with firefox 4.
    I have old bookmarks from previous install I want to import.
    When I click on Bookmarks - Show all Bookmarks, the Import and Backup button does not show.
    How can I import my saved bookmarks?

    You may need to look a bit higher to the Ubuntu menu bar.
    You can also try to disable the Ubuntu Firefox Modifications extension.

  • Problem inserting and querying XML data with a recursive XML schema

    Hello,
    I'm facing a problem with querying XML data that is valid against a recursive XML Schema. I have got a table category that stores data as binary XML using Oracle 11g Rel 2 on Windows XP. The XML Schema is the following:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="bold_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="keyword_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
                   <xs:element name="plain_text" type="xs:string"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="emph_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="text_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="parlist_type">
              <xs:sequence>
                   <xs:element name="listitem" minOccurs="0" maxOccurs="unbounded" type="listitem_type"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="listitem_type">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="parlist" type="parlist_type"/>
                   <xs:element name="text" type="text_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:element name="category">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="name"/>
                        <xs:element name="description">
                                  <xs:complexType>
                                            <xs:choice>
                                                           <xs:element name="text" type="text_type"/>
                                                           <xs:element name="parlist" type="parlist_type"/>
                                            </xs:choice>
                                  </xs:complexType>
                        </xs:element>
                                                                </xs:sequence>
                                                                <xs:attribute name="id"/>
                                            </xs:complexType>
                        </xs:element>
    </xs:schema>I registered this schema and created the category table. Then I inserted a new row using the code below:
    insert into category_a values
    (XMlElement("category",
          xmlattributes('categoryAAA' as "id"),
          xmlforest ('ma categ' as "name"),
          (xmlelement("description", (xmlelement("text", 'find doors blest now whiles favours carriage tailor spacious senses defect threat ope willow please exeunt truest assembly <keyword> staring travels <bold> balthasar parts attach </bold> enshelter two <emph> inconsiderate ways preventions </emph> preventions clasps better affections comes perish </keyword> lucretia permit street full meddle yond general nature whipp <emph> lowness </emph> grievous pedro')))    
    The row is successfully inserted as witnessed by the results of row counting. However, I cannot extract data from the table. First, I tried using SqlPlus* which hangs up and quits after a while. I then tried to use SQL Developer, but haven't got any result. Here follow some examples of queries and their results in SQL Developer:
    Query 1
    select * from category
    Result : the whole row is returned
    Query 2
    select xmlquery('$p/category/description' passing object_value as "p" returning content) from category
    Result: "SYS.XMLTYPE"
    now I tried to fully respect the nested structure of description element in order to extract the text portion of <bold> using this query
    Query 3
    select  xmlquery('$p/category/description/text/keyword/bold/text()' passing object_value as "p" returning content) from  category_a
    Result: null
    and also tried to extract the text portion of element <text> using this query
    Query 4
    select  xmlquery('$p/category/description/text/text()' passing object_value as "p" returning content) from  category_a
    Result: "SYS.XMLTYPE".
    On the other hand, I noticed, from the result of query 1, that the opening tags of elements keyword and bold are encoded as the less than operator "&lt;". This explains why query 3 returns NULL. However, query 4 should display the text content of <text>, which is not the case.
    My questions are about
    1. How to properly insert the XML data while preserving the tags (especially the opening tag).
    2. How to display the data (the text portion of the main Element or of the nested elements).
    The problem about question 1 is that it is quite unfeasible to write a unique insert statement because the structure of <description> is recursive. In other words, if the structure of <description> was not recursive, it would be possible to embed the elements using the xmlelement function during the insertion.
    In fact, I need to insert the content of <description> from a source table (called category_a) into a target table (+category_b+) automatically .
    I filled category_a using the Saxloader utility from an flat XML file that I have generated from a benchmark. The content of <description> is different from one row to another but it is always valid with regards to the XML Schema. The data is properly inserted as witnessed by the "select * from category_a" instruction (500 row inserted). Besides, the opening tags of the nested elements under <description> are preserved (no "&lt;"). Then I wrote a PL/SQL procedure in which a cursor extracts the category id and category name into varchar2 variables and description into an XMLtype variable from category_a. When I try to insert the values into a category_b, I get the follwing error:
    LSX-00213: only 0 occurrences of particle "text", minimum is 1which tells that the <text> element is absent (actually it is present in the source table).
    So, my third question is why are not the tags recognized during the insertion?
    Can anyone help please?

    Hello,
    indded, I was using an old version of Sqlplus* (8.0.60.0.0) because I had a previous installation (oracle 10g XE). Instead, I used the Sqlplus* shipped with the 11g2database (version 11.2.0.1.0). All the queries that I wrote work fine and display the data correctly.
    I also used the XMLSERIALIZE function and can now display the description content in SQL Developer.
    Thank you very much.
    To answer your question Marco, I registered the XML Schema using the following code
    declare
      doc varchar2(4000) := '<?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="bold_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="keyword_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
                   <xs:element name="plain_text" type="xs:string"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="emph_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="text_type" mixed="true">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="bold" type="bold_type"/>
                   <xs:element name="keyword" type="keyword_type"/>
                   <xs:element name="emph" type="emph_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="parlist_type">
              <xs:sequence>
                   <xs:element name="listitem" minOccurs="0" maxOccurs="unbounded" type="listitem_type"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="listitem_type">
              <xs:choice minOccurs="0" maxOccurs="unbounded">
                   <xs:element name="parlist" type="parlist_type"/>
                   <xs:element name="text" type="text_type"/>
              </xs:choice>
         </xs:complexType>
         <xs:element name="category">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="name"/>
                        <xs:element name="description">
                                  <xs:complexType>
                                            <xs:choice>
                                                           <xs:element name="text" type="text_type"/>
                                                           <xs:element name="parlist" type="parlist_type"/>
                                            </xs:choice>
                                  </xs:complexType>
                        </xs:element>
                                                                </xs:sequence>
                                                                <xs:attribute name="id"/>
                                            </xs:complexType>
                        </xs:element>
    </xs:schema>';
    begin
      dbms_xmlschema.registerSchema('/xmldb/category_auction.xsd', doc,     LOCAL      => FALSE, 
            GENTYPES   => FALSE,  GENBEAN    => FALSE,   GENTABLES  => FALSE,
             FORCE      => FALSE,
             OPTIONS    => DBMS_XMLSCHEMA.REGISTER_BINARYXML,
             OWNER      => USER);
    end;then, I created the Category table as follows:
    CREATE TABLE category_a of XMLType XMLTYPE store AS BINARY XML
        XMLSCHEMA "xmldb/category_auction.xsd" ELEMENT "category";Now, there still remains a problem of how to insert the "description" content which I serialized as a CLOB data into another table as XML. To this purpose, I wrote a view over the Category_a table as follows:
    CREATE OR REPLACE FORCE VIEW "AUCTION_XWH"."CATEGORY_V" ("CATEGORY_ID", "CNAME", "DESCRIPTION") AS
      select category_v."CATEGORY_ID",category_v."CNAME",
      XMLSerialize(content ( xmlquery('$p/category/description/*' passing object_value as "p" returning content)) as clob) as "DESCRIPTION"
      from  auction.category_a p, 
    xmltable ('$a/category' passing p.Object_Value as "a"
    columns  category_id varchar2(15) path '@id',
              cname varchar2(20) path 'name') category_v;Then, I wrote a procedure to insert data into the Category_xwh table (the source and target tables are slightly different: the common elements are just copied wereas new elements are created in the target table). The code of the procedure is the following:
    create or replace PROCEDURE I_CATEGORY AS
    v_cname VARCHAR2(30);
    v_description clob ;
    v_category_id VARCHAR2(15);
    cursor mycursor is select category_id, cname, description from category_v;
    BEGIN
    open mycursor;
      loop
      /*retrieving the columns*/
      fetch mycursor into v_category_id, v_cname, v_description ;
      exit when mycursor%notfound;
      insert into category_xwh values
      (XMlElement("category",
          xmlattributes(v_category_id as "category_id"),
          xmlelement("Hierarchies", xmlelement("ObjHierarchy", xmlelement ("H_Cat"),
                                                               xmlelement ("Rollsup",
                                                                                  (xmlelement("all_categories",
                                                                                   xmlattributes('allcategories' as "all_category_id")))
        xmlforest (
                  v_cname as "cat_name",
                  v_description as "description")    
    end loop;
      commit;
      close mycursor;
    END I_CATEGORY;When I execute the procedure, I get the following error:
    LSX-00201: contents of "description" should be elements onlyso, I just wonder if this is because v_description is considered as plain text and not as XML text, even if its content is XML. Do I need to use a special function to cast the CLOB as XML?
    Thanks for your help.
    Doulkifli

  • Mass insert and query

    Hi,
    We have a table with partition and it would be inserted 3000 rows per second.
    According to these insertions performance, we didn't create any index at that table.
    Here is a problem, our costumers want to query this table, since the table is huge
    and without index, the query performance isn't acceptable.
    Any idea to improve the query performance?
    Thanks.

    hi Dear,
    does your costomer want's to query the full table.............if yes then u need not to create indexes .....because it will have full table scan..........if no then pls tell him ur problem and tell him to bear the time it consumes...........and if i found any other solution i will forward it to u...
    Regards
    Amit Raghuvanshi

  • Insert and ovewrite buttons not working

    I am using an adobe premier pro CS4 vers. 4.2 on windows 7 x64 with a sony DSR 11 recorder connected via fire wire. It has just been installed. I am not very experienced on Premier (used to use Avid) but have used it effectively the past couple of yesrs. On this new version that has just been installed I go over to my source monitor and give the mark in and mark out signs, then I press the overwrite or insert key...but nothing happens! there is no way of getting my system to insert or overwrite with those keys. Is it a system problem or is there some CS4 setting I should know about?
    I know this is a silly and probably boring question, but I REALLY need help (deadline closing in)
    Thanks :-)

    oops, well it helps to select the tracks!!!!...sorry guys, false alarm

  • "Firewall" and "Internet" buttons missing from "Sharing" preferences page

    Hi,
    I recently upgraded two servers to 10.4.3 (one was running 10.2 and one was running 10.3). On both servers now the Firewall and Internet tabs are missing from the Sharing preferences. Also, under the list of services on the Sharing prefs, there are only three services listed:
    REmote Login, ARD, and Remote Apple Events. No other services are listed.
    I found this problem because something in the firewalls changed and was blocking access to the servers via ARD. If I stop the firewall, then ARD works. So I wanted to go into the firewall settings and open up the ports required by ARD. Lo and behold, no Firewall tab on the Sharing page!
    I've searched everywhere for info on what could make most of the services disappear, along with the Firewall and Internet tabs. But I can't find anything. Any ideas out there?

    A call to Apple confirmed that the majority of services on 10.4 Server are now handled through Server Admin rather than through the Sharing preferences window.

  • Serializing: inserting and querying and de-serializing

    I need help storing serializable java classes into a table. I need working code to go both ways. How to get it in and how to get it out.
    I have a simple class that needs to stored in the DB. I first convert to bytes then store in a table. Getting it out is much harder. Help please
    null

    I need help storing serializable java classes into a table. I need working code to go both ways. How to get it in and how to get it out.
    I have a simple class that needs to stored in the DB. I first convert to bytes then store in a table. Getting it out is much harder. Help please
    null

  • Insert then query

    I have a small CFM application on our server. It worked well
    for several years. However, we just upgraded the coldfusion server
    and one item is not working.
    I used to have folks fill out a form. The data was inserted
    into the database. I would query the database on the same page in
    which I did the insertion and all was fine....every record was
    available.
    Now, however, when I query the database after the insertion,
    all records up to the lastest insertion are reflected. In other
    words, the page insertion data is not reflected in the query.
    However, the data is successfully inserted. (Inspection with other
    methods indicates the data was successfully inserted.)
    Here is a scaled down code snippet.
    <cfinsert datasource=#WList_DSN# tablename="Wait"
    formFields="Fname,
    Lname,
    Snumber,
    Course,
    Password,
    Phone,
    Email">
    <cfquery name="get_position" datasource=#WList_DSN#
    username=#WList_USERNAME# password=#WList_PASSWORD#>
    SELECT ID, Fname, Lname, Snumber, Phone, Email FROM Wait
    WHERE Course = '#form.Course#'
    ORDER by ID
    </cfquery>
    <html>
    <head>
    <title>Test Page</title>
    <body>
    <cfoutput query="get_data">
    #FNAME# #LNANE#<br>
    </cfoutput>
    </body>
    </html>
    #FNAME# and #LNAME# in the output show each record in the
    database except for the one just inserted. Is there a way to remedy
    this? I want to conduct the query on the same page as the
    insertion, if at all possible.
    Any help would be greatly appreciated.
    Thanks...

    Thanks guys. I had a feeling the database might be updating
    slowly so I placed a pause between the insert andf query. The code
    then performed like before. I have incorporated the somewhat
    awkward 5 second pause between insert and query into the final code
    and things are working okay.
    I'm amazed, though, that the software update took a near
    instantaneous database update and slowed it to a nearly 5 second
    update situation.

  • Approve button missing for managers to approve trave & expenses

    Hello all,
       Our production system is running ESS/MSS. Last couple days, some of the users have been reporting that they are not able to approve the expense reports because they do not see "Approve" button, instead, they are seeing "Assign to me" button.
    Could anybody please suggest what could be happening?
    Thanks!

    what is your portal version? Are there any recent SP updates?
    check uwl wiki below
    http://wiki.sdn.sap.com/wiki/display/BPX/UWL+FAQ#UWLFAQ-The%27Approve%27and%27Reject%27functionsaremissinginthecontextmenu
    The Approve and Reject functions are missing in the context menu
    Reason: The configuration XML file cannot be generated due to the missing RFC destination for the provider connector. The result is that the item type information, for example, available actions, dynamic parameters, visualization parameters, cannot be retrieved from the back end.
    Solution: Refer to SAP note 1133821
    In our environment EP7.0 SP18 , approve and reject buttons missed,after implementing above note,again they appeared.
    Regards,
    Koti Reddy

Maybe you are looking for

  • Cannot get dvi to via cable to work

    trying to connect mac to tv, help

  • Help with a date field script

    Sorry if this is a repeat. I was interrupted and found that my browser had crashed when I came back so I'm not sure if the question got asked. I need a script for a date field (mm/dd/yyyy) where the user can only fill in a date that is between 12/31/

  • Match Frame in Multicam

    Hello, i am a proffessional video editor. I use Avid Media Composer for about 12 years. Two weeks ago i began to try Premiere Pro CS6 and i have a question about the multicam feature. I can say that you `ve done good work! Although i need your help.

  • Any good book on annotations and generics

    I am looking for a book that covers Annotations well including writing custom annotation processors that also handles generics. I have seen onec on Generics but it doesnt cover annotations

  • Systemd service file question (trying to start nilfs-cleanerd)

    My root file system is nilfs2. Yay! But I can't get the cleanerd to auto-start. According to the documentation, for root file systems, I need to run a manual command to start it. I tried creating a unit (service) file to do this, but systemd doesn't