Extending Expert Query VO but Query doesn't display in standard VO

I need to add a new attribute to an export query VO (oracle.apps.icx.por.reqmgmt.server.GroupReqsPublicVO), but when I edit the standard VO in JDeveloper the existing query doesn't display (query is blank and no attributes are listed). I can get the query from the xml file, but does this mean there is a problem? Should I just copy the query from the xml file and use that?

All of the info is in the standard VO xml file (ie query, attributes, etc), but when I choose Edit VO ... in JDev nothing is displayed. A similar standard VO (slightly different query) appears fine in JDev - query and attributes displayed.
I ended up trying the following, which appears to be working (although I am still waiting on some test data from the users):
Create new VO, extending standard
Copied the query from standard VO xml file
This left me with all of the queried attributes, but none of the transient attributes.
I tried to copy the additional attributes from the standard VO xml file to the extending VO xml file in JDev, but the extending VO xml file is protected.
Then I closed JDev, manually edited the extending VO xml file to include the additional transient attributes that are in the standard VO xml file.
Whether it was related or not, but when rebuilding my project, it complained that it couldn't find the standard VO's Impl java file, so I decompiled the class file to produce that.

Similar Messages

  • BI7 Query in Solution Manager doesn't display chars

    Hi All,
    I've just created a new query in Solman 7.01 SPS31 using SAP GUI 720 and BEx Analyzer BI AddOn 7.X SP10.
    But when I run the query in Excel 2007 I get all the key figures but no values for any of the characteristics, either those in the query or those in the free characteristics.  I've tested this on new queries and queries delivered by SAP and get the same result.  However the queries are displayed fine within the BEx Web!
    Any ideas what might be causing this?  We are running SAP_BW SPS13
    I should mention that 3.x queries are just fine.
    Thanks
    Craig

    That's a strange one. Run Thinkvantage System Update, or just download and install most recent PM driver and software. Maybe refreshing these will give you PM back. Otherwise, I believe you may also have a setting in the BIOS for the beep. Not in front of my X100 now, but I know I have this setting on my X60s.

  • Reverted back to 8.1 from Windows 10 but desktop doesn't display now....

    I just reverted back to Windows 8.1 because I was having issues with 10.  It looked like everything would be fine but now the desktop doesn;t show up.  I can move the cursor around and press control alt delete and use the options there but thats about it.   I was trying to boot the computer into recovery but I can't figure out how to do it.  I'd restore the computer to factory settings if I could at this point.  Is there a comand or anything I can run in task manager to do anything?   I am currently on hold with HP but that's going to be a long wait so any help would be appreciated. Edit:  I spoke to support and they were unable to fix the issue so we did a factory reset.  Luckily it was a new computer and what was on there was backed up already so no big deal.  I was trying to figure out how to delete this topic so if an admin wants to feel free to just delete it as no one commented or viewed it.

    F11 would do the trick to restore the computer back to manufacture settings as long your restore partition drive is not disturb and to edit or delet the topic would be at your upper right corner above your post and you click on edit which i can not remember and you have to be logged in to edit your post 

  • Time Machine no longer backs up data, but also doesn't display "Failed"

    Hello. I've had problems with Time Machine for a while now. First, instead of just performing an incremental backup, almost every day it tries to back up about 59GB of data, far more data than I'm changing. Then it started to fail after the first successful backup of the day. Once it begins to fail the only thing I've found fixes it is completely wiping the backup and starting from scratch. Now most recently it starts to backup (once again about 59GB of data) and then after about 1GB is backed up it just stops, with no message of failure but also not reporting that it backed up anything.

    If you are using a Windows partition or the VMware/Parallels equivelents, you might have a big chunk of data out there that does need backing up. Also, if you manually back it up, does it work?

  • Why can I see my .swf file in the folder on the web hosting server but it doesn't display on the page?

    Go to www.handstool.net, go to "products" tab in menu bar, "clamshells" link in sub-menu.

    That's strange.
    When I view source directly from your page via the URL you provided even I don't see it.
    But when I do a Save As your page and open the html I see following part in your code..look at the part in red (this is not in view source though):
    <style type="text/css">
    <!--
    a:link {
        color: #333;
    a:visited {
        color: #333;
    a:hover {
        color: #333;
    a:active {
        color: #333;
    -->
    </style><style media="screen" type="text/css">#FlashID {visibility:hidden}</style></head><body class="twoColFixRtHdr">
    <div id="container">
      <div id="header">
      <!-- end #header -->
      <img src="clamshells_files/logoClamshells.gif" alt="H&amp;S Tool Clamshells" width="250" height="180">
      <object style="visibility: visible;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" class="headeranim
    Strange...very strange.
    Regards
    Vinay

  • Query Result Doesn't Display

    Hi All,
    When i run the code below the query with SELECT statement display result as expected but other queries with LOOP and Object oriented running againt same table as that used in SELECT statement doesn't show anything, not even the output page. The status bar only showed the the program has complied without syntax error but no output page.
    Please I need somebody to tell me why is the output not showing.
    REPORT  read_table_flights.
    DATA: itab_flight TYPE STANDARD TABLE OF sflight,
          wa_flight TYPE sflight,
          alv TYPE REF TO cl_salv_table.
    FIELD-SYMBOLS: <wa_comp> TYPE any.
    SELECT *
      FROM sflight INTO TABLE itab_flight
      WHERE carrid = 'LH' AND seatsmax < 250 .
    Alternative one: Loop at table and write the different components of work area
    LOOP AT itab_flight INTO wa_flight.
    WRITE:  wa_flight-carrid,
            wa_flight-connid,
            wa_flight-fldate,
            wa_flight-price,
            wa_flight-currency,
            wa_flight-planetype,
            wa_flight-seatsmax,
            wa_flight-seatsocc,
            wa_flight-paymentsum.
            skip.
    endloop.
    **Alternative two: Loop at table with dynamic assign of component
    *LOOP AT itab_flight INTO wa_flight.
    DO.
       ASSIGN COMPONENT sy-index OF STRUCTURE wa_flight TO <wa_comp>.
       IF sy-subrc <> 0.
         SKIP.
         EXIT.
       ENDIF.
       WRITE <wa_comp>.
    ENDDO.
    *ENDLOOP.
    object oriented way
    *cl_salv_table=>factory( IMPORTING r_salv_table = alv
                           CHANGING  t_table      = itab_flight ).
    *alv->display( ).

    Thanks SaiRam  for your prompt reply. and thanks to everyone who has read my post.
    The GUI i have is fresh installation. The SELECT query is working fine but LOOP doesn't display result even when SELECT does.
    Please help me.

  • Picklist Demo doesn't display records

    I tried the picklist demo, and substituted a query on my DB for the employee one in the example.
    When I run the form, the message line shows "Record: 1/17" and I was indeed expecting 17 records to be selected by my qualified query. But no data is displayed on the screen! I didn't alter the demo code in any way, except to substitute my query. Does anyone know why I can't see my data?

    Welcome to our community, Denise
    Perhaps check the names of all the files involved? What type
    of web server are you using?
    You say that your co-worker said she is linking to the skin
    file from a .htm page, but what is missing here is whether she is
    using the .HTM page you provided in the mix or if it's one she
    created herself. If it's one she created herself, that may be the
    issue.
    Cheers... Rick

  • Power Map doesn't display in ribbon

    I installed Power Maps Preview and the add-in is active, but it doesn't display in the ribbon. I unistalled the program several times and re-downloaded it, but it still does not work. Many of the discussion threads on this topic contain dead links for fixes
    or don't provide much information. How have others solved this issue? I have Home Office 2013. Thanks!

    That's a strange one. Run Thinkvantage System Update, or just download and install most recent PM driver and software. Maybe refreshing these will give you PM back. Otherwise, I believe you may also have a setting in the BIOS for the beep. Not in front of my X100 now, but I know I have this setting on my X60s.

  • Cover Art Doesn't Display for New CDs, Podcasts, etc.

    Cover art doesn't display for new items that I add to my 60GB iPod from iTunes. Older items are fine but new CDs, podcasts or songs purchased from iTunes don't display cover art on my iPod. The cover art is there when viewed in iTunes but just doesn't display when they are being played. The problem seems to have started about a month ago. Anyone experience something similar?

    Thanks for the suggestion but.... it actually made the problem worse. When I went to the music tab I found that the "Display Cover Art" check box was unchecked so I clicked in the box and the fun began. First thing that happened was the iTunes status box displayed "Deleting covert art from iPod" (definately not what I would have expected) for about a minute then it changed to "Optimizing cover art on your iPod" (that seemed like a step in the right direction) but then I got an error message saying "Can't sync iPod. Unknow error". Closing out the error message ended the process. I was able to eject my iPod after that without any issues but now even more covert art doesn't display (even though when viewed through iTunes its there).

  • CC desktop client doesn't display available updates

    After a rocky start I was finally able to download the desktop client. It was fine at first and allowed me to install CC trials, update trials, sync settings, etc.
    I'm still able to sync settings and use my software, but CC doesn't display all the new updates that came out recently. It's been like this for a couple days that I know of, and I was able to download all of those updates on Monday from my work machine which is also running trials off the same account.
    Mac OS X 10.8.4
    Creative Cloud 1.0.0.183

    Wow, Adobe customer support is the worst I've ever used. Not these boards, these have helped me a lot in the past, but everything else.
    Support has done nothing but vehemently try to convince me that I don't have a problem. "If CC desktop says 'up-to-date' then it's up-to-date." This has been their mantra. I plead with them, "No, my version of Premiere Pro is at 7.0.0 and the current release is 7.0.1." Then they just read the same line from their script, "If it says 'up-to-date' …"
    One support guy even said to me, after I explained and re-explained my issue many times, "I don't understand, so why is your other computer getting updates and this one is not?" Gee, I don't know, THAT'S WHY I'M CALLING YOU!
    I'm told to try the same basic things I've tried time and time again. I keep getting passed off to other people who quickly give up and tell me there's nothing they can do except pass me off to someone else.
    It's been over a month that I've had this problem, ever since I installed Creative Cloud. I have encountered lots of bugs in the software, there are certain things I cannot do in my apps and I really need to get this resolved.
    Sorry to rant and rave on a forum meant for utility, but this is the worst customer support experience I've ever endured, and I guess i'm trying to illustrate that THIS FORUM IS MY ONLY HOPE.
    Please, any tips, advice, suggestions, any help from you knowledgable forum members is really appreciated. I really like the CC suite in theory, but I can't continue to be a creative cloud member if I am resigned to only using buggy release software for the foreseeable future on my primary computer.
    I am not going to pay $50 a month for something so broken that I am not getting any support on.
    Thanks,
    Evan

  • Decorative Box doesn't display custom skin

    I created following definitions for Decorative Box, but this doesn't display:
    /* DECORATIVE BOX */
    /* Start of deprecated decorative box styles: */
    /* Decorative box top-start corner */
    .AFDecorativeBoxTopStart {
    display: block;
    background-image: url('img/decor-top-start.gif');
    background-repeat: no-repeat;
    /* Decorative box top */
    .AFDecorativeBoxTop {
    display: block;
    background-image: url('img/decor-top.gif');
    background-repeat: repeat-x;
    /* Decorative box top-end corner */
    .AFDecorativeBoxTopEnd {
    display: block;
    background-image: url('img/decor-top-end.gif');
    background-repeat: no-repeat;
    /* Decorative box center-start side */
    .AFDecorativeBoxCenterStart {
    display: block;
    background-image: url("img/decor-center-start.gif");
    background-repeat: repeat-y;
    /* Decorative box center */
    .AFDecorativeBoxCenter {
    background-color: transparent;
    /* Decorative box center-end side */
    .AFDecorativeBoxCenterEnd {
    display: block;
    background-image: url("img/decor-center-end.gif");
    background-repeat: repeat-y;
    /* Decorative box bottom-start corner */
    .AFDecorativeBoxBottomStart {
    display: block;
    background-image: url('img/decor-bottom-start.gif');
    background-repeat: no-repeat;
    /* Decorative box bottom */
    .AFDecorativeBoxBottom {
    display: block;
    background-image: url('img/decor-bottom.gif');
    background-repeat: repeat-x;
    /* Decorative box bottom-end corner */
    .AFDecorativeBoxBottomEnd {
    display: block;
    background-image: url('img/decor-bottom-end.gif');
    background-repeat: no-repeat;
    /* End of deprecated decorative box styles */
    /* END TEMPLATE */

    Hi!
    Decorative box component does not have "own" icno in Component palette (it uses generic tag <<>> icon). So, I would suspect that this comp is not finished yet with TP4 release. Thus, don't be supprised if it don't respect all skinning properties well.
    Regards,
    PaKo

  • FireFox doesn't display special characters!

    I'm sure this has been talked about before but I can't find
    any related posts... Basically I have a flash app that will take a
    text variable through the querystring and disaply, the problem is
    it needs to take 11 different languages which works fine in IE once
    all the special glyphs for the languages are embedded. But in
    Firefox it displays only standard ascii latin characters! Please
    help!

    Hi Rifaet,
    Good news. There is a simple way to fix the FireFox special
    character problem. Use and external .js file to store a function to
    write the embed tag and it will work, it has the added bonus of
    fixing the new 'problem' with internet explorer also.
    myFlash.js
    function writeflash() {
    document.write ('<embed..... usual flash tagset
    and then in your HTML document where the embed tag previously
    was you just place:
    <script>myFlash();</script>
    See how to do it here, the first example is easy
    http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activati ng_activex.asp

  • I want to use the SQL query IF EXIST to update or insert data in a ms access table, but it doesn´t work

    Hi,
    I want to use the SQL query IF EXIST to update or insert data in a ms access table, but it doesn´t work
    (fault number -2147217900)
    I want to search for a value in a ms access table , if it exist i want to update it, if not i want to insert a new row.
    Working with LabView 7.1, database con. toolset.
    Who can HELP?
    Thanks a lot
    Marco

    Hello,
    I think that If exist is not a standar SQL command (I know it exists I think in Oracle and SQL server), MS access doesn't support it, so I think the best way to do it is first make a Select and then either an Update or an insert, sorry...
    Paulo

  • Simple query but it doesn't work

    hi, i have 2 schema, that is user1 and user2
    i run this query on user1 but it doesn't give any result, but if i run on user2 it does return results. any idea why this happen?
         SELECT
              STORE_ID,
              NVL(STORE_NAME,'-'),
    l.INSUPD_TIME
    FROM user2.store s, user2.LOG l
         WHERE (s.rowid = l.row_id)
         AND insupd_time > (SELECT MAX(loading_time)
    FROM user2.LOG
    WHERE table_name = UPPER('Store'));

    hi,
    in the query u did not specify any table that is present in the schema user 1
    try this
    SELECT s.STORE_ID, NVL(s.STORE_NAME,'-'),i.INSUPD_TIME
    FROM user2.store s, user2.LOG i
    WHERE (s.rowid = i.row_id)
    AND s.insupd_time > (SELECT MAX(loading_time)
    FROM user2.LOG
    WHERE table_name = UPPER('Store')
    Trinath Somanchi,
    Hyderabad.

  • Error Opening Reports (Cannot find Dimension Scenario, Error executing query: the member null doesn't exist in this application)

    Hello,
    two of our users get the following error message, when opening two specific reports:
    First Report: Cannot find Dimension Scenario.
    Second Report: Error executing query: the member null doesn't exist in this application.
    Other users can access these reports, and the same users where the problem occurs can access other reports in the same folder.
    I set the same rights for me, but i can access the reports without problems.
    Somebody encountered the same problem before?

    Hi there,
    I had the same issue a few weeks ago... not sure how it happened but it was related only with my username.
    In order to fix it:
    1. I created a report which does not require to select the scenario in advance. Try to use the default data-grid that you get when you first create a report for example.
    2. When the user runs the report, try to see if he can see the dimension. Do not use the missing dimension on rows or columns. If he can see the dimension, ask him to select one scenario. This will solve the issue.
    3. If he cannot see the dimension, try to change the layout of the report.
    Regards,
    Thanos

Maybe you are looking for

  • Mail app stopped syncing

    I set up my mail app & it synced fine first time, but it won't sync again. I've set it to sync every 15 minutes, & have tried the sync option in the menus.  Nokia N8 on Belle

  • Ipad 2 crashes whenever video is played in ANY app.

    My ipad 2 is now crashing to the lock screen whenever I play a video in ANY app. Netflix, Itunes trailers, YouTube, etc. No matter what the app, if a video is played it crashes to the lock screen. I've Hard reset, Reset settings, all of the above sho

  • Flash 10.0 r12 not working in Firefox

    I installed the latest version of Flash when prompted to by Firefox, but once I had installed it I still got the message saying I don't have the latest version of flash player in the window where the graphics should be displaying. I restarted Firefox

  • Q-10 Calandar not syncing with Outlook, only some of the appointments show up?

    Anyone know why when I sync my phone with my computer, only some of the appointments from outlook show up on my phone?  this just started happening about a week ago?  Did I turn something off?  any help would be appreciated. Tony 

  • Parent Applications with Eclipse WTP

    Hello, I have an question upon Eclipse WTP and Oracle 10.1.3. In my project we have 4 EJB Modules which are in 4 EAR Files and are deployed on the Oracle 10.1.3 application server. One EAR is the parent for all the others. So I configured the server.