Can you please help with this select statement.

The following code has a result, I need to modify the select somehow which only gives me the rows which are common between all PLSTS.
Any suggestions?
Thank you
SELECT DISTINCT P.PLST, P.MENU, I,PNL, P.ACCESS
FROM AUTHITEM P, I.MENUITEM
WHERE P.MENU = I.MENU
AND P.PNL = I.PNL
AND P.MENU IN ('MSN, CPP')
AND P.ACESS >= 8
GROUP BY P.PLST, PMENU, I.PNL, P.ACCESS
HAVING COUNT (*) >=2
ORDER BY 2,3,4,1
This is the result with having count > = 1, and if I add having count > =1 I get the following result
PLST     MENU     PNL     ACCESS
C001     MSN     LNAME     14
C002     MSN     LNAME     14
B008     MSN     LNAME     14
B005     MSN     FNAME     14
M009     MSN     LNAME     14
C001     MSN     GNAME     14
C002     MSN     GNAME     14
B008     MSN     LNAME     14
C001     MSN     FNAME     14
C002     MSN     FNAME     14
k008     CPP     MNAME     14
I need this result
PLST     MENU     PNL     ACCESS
C001     MSN     LNAME     14
C002     MSN     LNAME     14
C001     MSN     GNAME     14
C002     MSN     GNAME     14
C001     MSN     FNAME     14
C002     MSN     FNAME     14

why bother with DISTINCT ?
have a look at the results of :
SELECT P.PLST, P.MENU, I.PNL, P.ACCESS , COUNT(*) ZCOUNT
  FROM AUTHITEM P, I.MENUITEM
WHERE P.MENU    = I.MENU
   AND P.PNL     = I.PNL
   AND P.MENU  IN ('MSN, CPP')
   AND P.ACCESS >= 8
GROUP BY P.PLST, P.PMENU, I.PNL, P.ACCESS
ORDER BY 2,3,4,1
;and then apply HAVING COUNT(*) >= ...

Similar Messages

  • Can you please help with this error messag when I go to upload the latest version of lightroom 5.4

    I havent had any problems in the past with upgrading.  It appears some link of sorts has been broken.  I have a Windows PC.
    Thanks

    Hello,  What I do is I open Lightroom 5.3 and go to 'Help' and go to 'Check for Updates' then click on it which brings up Lightroom Update Available (see image below) and as soon as I click 'Download' I get the error as shown above (in the other image).  Hope this helps

  • My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    Following the fix here worked for me:
    https://discussions.apple.com/message/15680566#15680566
    except my plist file was in ~/Library instead of /Library.
    -Scott

  • I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect to my MacBook it erases everything on had on there. Can someone please help with this problem?

    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.

    dwgar1322 wrote:
    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.
    Yes, you have WD software installed  REMOVE IT !! 
    WD has warned its customers about their huge mistake that their software doesnt work on Mavericks and causes data loss.
    (also dont use WD drives anymore)
    Read all about it here:
    https://discussions.apple.com/thread/5475136?start=255&tstart=0
    See their website on removing the destructive WD software here:
    http://community.wd.com/t5/External-Drives-for-Mac/External-Drives-for-Mac-Exper iencing-Data-Loss-with-Maverick-OS/td-p/613775
    Western Digital External Hard Drives Experiencing Data Loss On OS X Mavericks
    http://www.cultofmac.com/252826/western-digital-external-hard-drives-experiencin g-data-loss-on-os-x-mavericks/

  • Can you please help with Fancybox CSS?

    Hello. Someone helped me a while back on creating fancybox boxes that generate pop out boxes with more content in them by clicking on them. Here is what they look like. I deleted a lot of the other content because it would just much everthing up. http://www.bestmarketingnames.com/default.php
    Now that I've kind of figured it out I want to make changes to the CSS for these fancyboxes. For instance, I want to lower the margins on the top and bottom of these boxes. Anyway. When I try to edit the jquery.fancybox.css it says that they are "a remote files and can not be edited". So i downloaded the fancybox fancyapps program that gives me the coding but I have NO idea what to do now. I saved the default jquery.fancybox.css files into dreamweaver but im not sure if it's in the right place.
    So what I am saying is that I need to change the sizing in the fancybox boxes in this link, but have no idea how to do it. Can someone please help?
    http://www.bestmarketingnames.com/default.php

    Hey Nancy so everything seems to be working out until I hit another problem. So the website is basically set up but now when you click on the "Read More" and the fancy box pops out, it shifts the entire website to the right about 200px or so. The only browser where it doesn't do this is google chrome. I have no idea why this is happening. Do you have any suggestions on how to solve it? Here is the link...http://www.bestmarketingnames.com/default.php
    Thank you so much! I will out of your hair soon!

  • Hi can u please help with this cursor topic

    declare
         cursor c1 is select ename,deptno from emp where deptno=20 and sal >2000;
    begiin
         for item in c1
         loop
              dbms_output.put_line('name= ' || item.ename || ' ,deptno= ' || item.deptno);
         end loop;
    end;
    SQL> /
    for item in c1
    ERROR at line 4:
    ORA-06550: line 4, column 2:
    PLS-00103: Encountered the symbol "FOR" when expecting one of the following:
    constant exception <an identifier>
    <a double-quoted delimited-identifier> table long double ref
    char time timestamp interval date binary national character
    nchar
    can you please tell me where the error is..........

    Hurreyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy thank youuuuuuuuuuuuuuuuuuuu sooooooooooooooooo muchhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh

  • In update statement i am errors can you please help on this logic

    BEGIN
                      SELECT COUNT(1)
                      INTO v_count
                      FROM apps.xxcsi_trex_ob_ecs_mhm
                      WHERE instance_id  = NVL(tab_ib_ecs_dat_c(k).instance_id,'');
                    EXCEPTION
                    WHEN OTHERS THEN
                      v_count := 0;
                    END;
                    print_log('v_count : '||v_count);
                    IF v_count = 0 THEN
                      BEGIN
                        INSERT
                        INTO xxcsi_trex_ob_ecs_mhm
                            instance_id,
                            instance_number,
                            inventory_item_id,
                            unit,
                            unit_name,
                            master_organization_id,
                            serial_number,
                            quantity,
                            uom,
                            active_start_date,
                            active_end_date,
                            install_date,
                            object_version_number,
                            last_vld_organization_id,
                            pre_registration_location,
                            order_header_id,
                            order_number,
                            order_line_id,
                            pre_registration_date,
                            pre_registration_operator,
                            bill_to_customer_name,
                            bill_to_site_id ,
                            bill_to_state ,
                            bill_to_country ,
                            bill_to_city ,
                            bill_to_location ,
                            ship_to_customer_name,
                            ship_to_site_id ,
                            ship_to_state ,
                            ship_to_country ,
                            ship_to_city ,
                            ship_to_location ,
                            ship_to_pin_code,
                            bill_to_pin_code,
                            ship_to_number,
                            bill_to_number,
                            customer_number,
                            ea_license_number,
                            ea_va_sales_order_number,
                            parent_instance_id,
                            parent_y_n,
                            process_flag,
                            error_code,
                            error_details,
                            request_id,
                            created_by,
                            creation_date,
                            last_updated_by,
                            last_update_date,
                            last_update_login,
                            eai_process_flag,
                            master_organization_name,
                            system_id,
                            system_name
                          VALUES
                            NVL(tab_ib_ecs_dat_c(k).instance_id,''),
                            NVL(tab_ib_ecs_dat_c(k).instance_number,''),
                            NVL(tab_ib_ecs_dat_c(k).inventory_item_id,''),
                            NVL(tab_ib_ecs_dat_c(k).segment1,''),
                            NVL(tab_ib_ecs_dat_c(k).description,''),
                            NVL(tab_ib_ecs_dat_c(k).master_organization_id,''),
                            NVL(tab_ib_ecs_dat_c(k).serial_number,''),
                            NVL(tab_ib_ecs_dat_c(k).quantity,''),
                            NVL(tab_ib_ecs_dat_c(k).uom,''),
                            NVL(tab_ib_ecs_dat_c(k).active_start_date,''),
                            NVL(tab_ib_ecs_dat_c(k).active_end_date,''),
                            NVL(tab_ib_ecs_dat_c(k).install_date,''),
                            NVL(tab_ib_ecs_dat_c(k).obj_version_num,''),
                            NVL(tab_ib_ecs_dat_c(k).last_vld_organization_id,''),
                            NVL(tab_ib_ecs_dat_c(k).pre_registration_location,''),
                            NVL(tab_ib_ecs_dat_c(k).order_header_id,''),
                            NVL(tab_ib_ecs_dat_c(k).order_number,''),
                            NVL(tab_ib_ecs_dat_c(k).order_line_id,''),
                            NVL(tab_ib_ecs_dat_c(k).actual_shipment_date,''),
                            NVL(tab_ib_ecs_dat_c(k).email_address,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_company_name,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_site_id,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_state,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_country,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_city,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_location,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_company_name,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_site_id,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_state,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_country,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_city,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_location,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_pin_code,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_pin_code,''),
                            NVL(tab_ib_ecs_dat_c(k).ship_to_number,''),
                            NVL(tab_ib_ecs_dat_c(k).bill_to_number,''),
                            NVL(tab_ib_ecs_dat_c(k).customer_number,''),
                            NVL(tab_ib_ecs_dat_c(k).ea_license_number,''),
                            NVL(tab_ib_ecs_dat_c(k).ea_va_sales_order_num,''),
                            NVL(tab_ib_parent_dat(i).instance_id,''),
                            'C',
                            'N',
                            NULL,
                            NULL,
                            v_request_id,
                            v_created_by,
                            SYSDATE,
                            v_created_by,
                            SYSDATE,
                            v_last_update_login,
                            'N',
                            NVL(tab_ib_ecs_dat_c(k).master_organization_name,''),
                            NVL(tab_ib_ecs_dat_c(k).system_id,''),
                            NVL(tab_ib_ecs_dat_c(k).system_name,'')
                      EXCEPTION
                      WHEN no_data_found THEN
                        print_log('Error in  main process INSERT 2 : '||sqlerrm);
                        print_log('Error at : '||v_error_at);
                      WHEN OTHERS THEN
                        print_log('Error in  main process INSERT 2 : '||sqlerrm);
                        print_log('Error at : '||v_error_at);
                        END;
      ELSE
    Update apps.xxcsi_trex_ob_ecs_mhm set( 
    instance_id=NVL(tab_ib_ecs_dat_c(k).instance_id,''),
      instance_number= NVL(tab_ib_ecs_dat_c(k).instance_number,''),
    inventory_item_id= NVL(tab_ib_ecs_dat_c(k).inventory_item_id,''),
    unit      = NVL(tab_ib_ecs_dat_c(k).segment1,''),
    unit_name =  NVL(tab_ib_ecs_dat_c(k).description,''),
    master_organization_id=NVL(tab_ib_ecs_dat_c(k).master_organization_id,''),
    serial_number=NVL(tab_ib_ecs_dat_c(k).serial_number,''),
    quantity= NVL(tab_ib_ecs_dat_c(k).quantity,''),
    uom=NVL(tab_ib_ecs_dat_c(k).uom,''),
    active_start_date= NVL(tab_ib_ecs_dat_c(k).active_start_date,''),
    active_end_date= NVL(tab_ib_ecs_dat_c(k).active_end_date,''),
    install_date= NVL(tab_ib_ecs_dat_c(k).install_date,''),
    object_version_number=NVL(tab_ib_ecs_dat_c(k).obj_version_num,''),
    last_vld_organization_id= NVL(tab_ib_ecs_dat_c(k).last_vld_organization_id,''),
    pre_registration_location=NVL(tab_ib_ecs_dat_c(k).pre_registration_location,''),
    order_header_id=NVL(tab_ib_ecs_dat_c(k).order_header_id,''),
    order_number= NVL(tab_ib_ecs_dat_c(k).order_number,''),
    order_line_id=NVL(tab_ib_ecs_dat_c(k).order_line_id,''),
    pre_registration_date= NVL(tab_ib_ecs_dat_c(k).actual_shipment_date,''),
    pre_registration_operator= NVL(tab_ib_ecs_dat_c(k).email_address,''),
    bill_to_customer_name=NVL(tab_ib_ecs_dat_c(k).bill_to_company_name,''),
    bill_to_site_id = NVL(tab_ib_ecs_dat_c(k).bill_to_site_id,''),
    bill_to_state = NVL(tab_ib_ecs_dat_c(k).bill_to_state,''),
    bill_to_country =NVL(tab_ib_ecs_dat_c(k).bill_to_country,''),
    bill_to_city = NVL(tab_ib_ecs_dat_c(k).bill_to_city,''),
    bill_to_location =  NVL(tab_ib_ecs_dat_c(k).bill_to_location,''),
    ship_to_customer_name=NVL(tab_ib_ecs_dat_c(k).ship_to_company_name,''),
    ship_to_site_id = NVL(tab_ib_ecs_dat_c(k).ship_to_site_id,''),
    ship_to_state =NVL(tab_ib_ecs_dat_c(k).ship_to_state,''),
    ship_to_country=NVL(tab_ib_ecs_dat_c(k).ship_to_country,''),
    ship_to_city =NVL(tab_ib_ecs_dat_c(k).ship_to_city,''),
    ship_to_location= NVL(tab_ib_ecs_dat_c(k).ship_to_location,''),
      ship_to_pin_code= NVL(tab_ib_ecs_dat_c(k).ship_to_pin_code,''),
      bill_to_pin_code=NVL(tab_ib_ecs_dat_c(k).bill_to_pin_code,''),
      ship_to_number=NVL(tab_ib_ecs_dat_c(k).ship_to_number,''),
      bill_to_number= NVL(tab_ib_ecs_dat_c(k).bill_to_number,''),
      customer_number= NVL(tab_ib_ecs_dat_c(k).customer_number,''),
      ea_license_number= NVL(tab_ib_ecs_dat_c(k).ea_license_number,''),
      ea_va_sales_order_number= NVL(tab_ib_ecs_dat_c(k).ea_va_sales_order_num,''),
      parent_instance_id=NVL(tab_ib_parent_dat(i).instance_id,''),
      parent_y_n='C',
      process_flag='N',
      error_code= NULL,
      error_details= NULL,
      request_id=v_request_id,
      created_by=v_created_by,
      creation_date= SYSDATE,
      last_updated_by=v_created_by,
      last_update_date=SYSDATE,
      last_update_login= v_last_update_login,
      eai_process_flag='N',
      master_organization_name=NVL(tab_ib_ecs_dat_c(k).master_organization_name,''),
      system_id= NVL(tab_ib_ecs_dat_c(k).system_id,''),
      system_name= NVL(tab_ib_ecs_dat_c(k).system_name,''))
      WHERE instance_id  = NVL(tab_ib_ecs_dat_c(k).instance_id,'');
      END IF; --V_COUNT

    Performing a COUNT to check the existence of data is plain WRONG. Never do that. You need to be using MERGE statement. Like this. And possibly you should not be using collection and performing it with direct SQL.
    merge into apps.xxcsi_trex_ob_ecs_mhm t1
    using (
            select nvl(tab_ib_ecs_dat_c(k).instance_id,'')                       instance_id
                 , nvl(tab_ib_ecs_dat_c(k).instance_number,'')                   instance_number
                 , nvl(tab_ib_ecs_dat_c(k).inventory_item_id,'')                 inventory_item_id
                 , nvl(tab_ib_ecs_dat_c(k).segment1,'')                          unit
                 , nvl(tab_ib_ecs_dat_c(k).description,'')                       unit_name
                 , nvl(tab_ib_ecs_dat_c(k).master_organization_id,'')            master_organization_id
                 , nvl(tab_ib_ecs_dat_c(k).serial_number,'')                     serial_number
                 , nvl(tab_ib_ecs_dat_c(k).quantity,'')                          quantity
                 , nvl(tab_ib_ecs_dat_c(k).uom,'')                               uom
                 , nvl(tab_ib_ecs_dat_c(k).active_start_date,'')                 active_start_date
                 , nvl(tab_ib_ecs_dat_c(k).active_end_date,'')                   active_end_date
                 , nvl(tab_ib_ecs_dat_c(k).install_date,'')                      install_date
                 , nvl(tab_ib_ecs_dat_c(k).obj_version_num,'')                   object_version_number
                 , nvl(tab_ib_ecs_dat_c(k).last_vld_organization_id,'')          last_vld_organization_id
                 , nvl(tab_ib_ecs_dat_c(k).pre_registration_location,'')         pre_registration_location
                 , nvl(tab_ib_ecs_dat_c(k).order_header_id,'')                   order_header_id
                 , nvl(tab_ib_ecs_dat_c(k).order_number,'')                      order_number
                 , nvl(tab_ib_ecs_dat_c(k).order_line_id,'')                     order_line_id
                 , nvl(tab_ib_ecs_dat_c(k).actual_shipment_date,'')              pre_registration_date
                 , nvl(tab_ib_ecs_dat_c(k).email_address,'')                     pre_registration_operator
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_company_name,'')              bill_to_customer_name
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_site_id,'')                   bill_to_site_id
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_state,'')                     bill_to_state
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_country,'')                   bill_to_country
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_city,'')                      bill_to_city
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_location,'')                  bill_to_location
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_company_name,'')              ship_to_customer_name
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_site_id,'')                   ship_to_site_id
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_state,'')                     ship_to_state
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_country,'')                   ship_to_country
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_city,'')                      ship_to_city
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_location,'')                  ship_to_location
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_pin_code,'')                  ship_to_pin_code
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_pin_code,'')                  bill_to_pin_code
                 , nvl(tab_ib_ecs_dat_c(k).ship_to_number,'')                    ship_to_number
                 , nvl(tab_ib_ecs_dat_c(k).bill_to_number,'')                    bill_to_number
                 , nvl(tab_ib_ecs_dat_c(k).customer_number,'')                   customer_number
                 , nvl(tab_ib_ecs_dat_c(k).ea_license_number,'')                 ea_license_number
                 , nvl(tab_ib_ecs_dat_c(k).ea_va_sales_order_num,'')             ea_va_sales_order_number
                 , nvl(tab_ib_parent_dat(i).instance_id,'')                      parent_instance_id
                 , 'C'                                                           parent_y_n
                 , 'N'                                                           process_flag
                 , null                                                          error_code
                 , null                                                          error_details
                 , v_request_id                                                  request_id
                 , v_created_by                                                  created_by
                 , sysdate                                                       creation_date
                 , v_created_by                                                  last_updated_by
                 , sysdate                                                       last_update_date
                 , v_last_update_login                                           last_update_login
                 , 'N'                                                           eai_process_flag
                 , nvl(tab_ib_ecs_dat_c(k).master_organization_name,'')          master_organization_name
                 , nvl(tab_ib_ecs_dat_c(k).system_id,'')                         system_id
                 , nvl(tab_ib_ecs_dat_c(k).system_name,'')                       system_name
              from dual
          ) t2
       on (
             t1.instance_id = t2.instance_id
    when matched then
         update
            set instance_number                   = t2.instance_number
                inventory_item_id                 = t2.inventory_item_id
                unit                              = t2.unit
                unit_name                         = t2.unit_name
                master_organization_id            = t2.master_organization_id
                serial_number                     = t2.serial_number
                quantity                          = t2.quantity
                uom                               = t2.uom
                active_start_date                 = t2.active_start_date
                active_end_date                   = t2.active_end_date
                install_date                      = t2.install_date
                object_version_number             = t2.object_version_number
                last_vld_organization_id          = t2.last_vld_organization_id
                pre_registration_location         = t2.pre_registration_location
                order_header_id                   = t2.order_header_id
                order_number                      = t2.order_number
                order_line_id                     = t2.order_line_id
                pre_registration_date             = t2.pre_registration_date
                pre_registration_operator         = t2.pre_registration_operator
                bill_to_customer_name             = t2.bill_to_customer_name
                bill_to_site_id                   = t2.bill_to_site_id
                bill_to_state                     = t2.bill_to_state
                bill_to_country                   = t2.bill_to_country
                bill_to_city                      = t2.bill_to_city
                bill_to_location                  = t2.bill_to_location
                ship_to_customer_name             = t2.ship_to_customer_name
                ship_to_site_id                   = t2.ship_to_site_id
                ship_to_state                     = t2.ship_to_state
                ship_to_country                   = t2.ship_to_country
                ship_to_city                      = t2.ship_to_city
                ship_to_location                  = t2.ship_to_location
                ship_to_pin_code                  = t2.ship_to_pin_code
                bill_to_pin_code                  = t2.bill_to_pin_code
                ship_to_number                    = t2.ship_to_number
                bill_to_number                    = t2.bill_to_number
                customer_number                   = t2.customer_number
                ea_license_number                 = t2.ea_license_number
                ea_va_sales_order_number          = t2.ea_va_sales_order_number
                parent_instance_id                = t2.parent_instance_id
                parent_y_n                        = t2.parent_y_n
                process_flag                      = t2.process_flag
                error_code                        = t2.error_code
                error_details                     = t2.error_details
                request_id                        = t2.request_id
                created_by                        = t2.created_by
                creation_date                     = t2.creation_date
                last_updated_by                   = t2.last_updated_by
                last_update_date                  = t2.last_update_date
                last_update_login                 = t2.last_update_login
                eai_process_flag                  = t2.eai_process_flag
                master_organization_name          = t2.master_organization_name
                system_id                         = t2.system_id
                system_name                       = t2.system_name
    when not matched then
         insert
            instance_id
          , instance_number
          , inventory_item_id
          , unit
          , unit_name
          , master_organization_id
          , serial_number
          , quantity
          , uom
          , active_start_date
          , active_end_date
          , install_date
          , object_version_number
          , last_vld_organization_id
          , pre_registration_location
          , order_header_id
          , order_number
          , order_line_id
          , pre_registration_date
          , pre_registration_operator
          , bill_to_customer_name
          , bill_to_site_id
          , bill_to_state
          , bill_to_country
          , bill_to_city
          , bill_to_location
          , ship_to_customer_name
          , ship_to_site_id
          , ship_to_state
          , ship_to_country
          , ship_to_city
          , ship_to_location
          , ship_to_pin_code
          , bill_to_pin_code
          , ship_to_number
          , bill_to_number
          , customer_number
          , ea_license_number
          , ea_va_sales_order_number
          , parent_instance_id
          , parent_y_n
          , process_flag
          , error_code
          , error_details
          , request_id
          , created_by
          , creation_date
          , last_updated_by
          , last_update_date
          , last_update_login
          , eai_process_flag
          , master_organization_name
          , system_id
          , system_name
         values
            t2.instance_id
          , t2.instance_number
          , t2.inventory_item_id
          , t2.unit
          , t2.unit_name
          , t2.master_organization_id
          , t2.serial_number
          , t2.quantity
          , t2.uom
          , t2.active_start_date
          , t2.active_end_date
          , t2.install_date
          , t2.object_version_number
          , t2.last_vld_organization_id
          , t2.pre_registration_location
          , t2.order_header_id
          , t2.order_number
          , t2.order_line_id
          , t2.pre_registration_date
          , t2.pre_registration_operator
          , t2.bill_to_customer_name
          , t2.bill_to_site_id
          , t2.bill_to_state
          , t2.bill_to_country
          , t2.bill_to_city
          , t2.bill_to_location
          , t2.ship_to_customer_name
          , t2.ship_to_site_id
          , t2.ship_to_state
          , t2.ship_to_country
          , t2.ship_to_city
          , t2.ship_to_location
          , t2.ship_to_pin_code
          , t2.bill_to_pin_code
          , t2.ship_to_number
          , t2.bill_to_number
          , t2.customer_number
          , t2.ea_license_number
          , t2.ea_va_sales_order_number
          , t2.parent_instance_id
          , t2.parent_y_n
          , t2.process_flag
          , t2.error_code
          , t2.error_details
          , t2.request_id
          , t2.created_by
          , t2.creation_date
          , t2.last_updated_by
          , t2.last_update_date
          , t2.last_update_login
          , t2.eai_process_flag
          , t2.master_organization_name
          , t2.system_id
          , t2.system_name

  • Mac Book Crashing Can anyone please help with this error message,  I've run Disk warrior and everthing is coming up fine, so may be a hardware issue, thank you Interval Since Last Panic Report:  22119 sec Panics Since Last Report:          14 Anonymous UU

    I've run Disk warrior, it says all the files and harddrive are fine.
    thanks for your help.  This crashing was happening before I upgraded to Lion
    Interval Since Last Panic Report:  22119 sec
    Panics Since Last Report:          14
    Anonymous UUID:                    1DA2B715-D1E5-4BF1-A47F-D31CBD8C1E78
    Wed Mar  7 13:21:17 2012
    panic(cpu 2 caller 0xffffff7f8098c907): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff80a0354000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80a398b800 : 0xffffff8000220702
    0xffffff80a398b880 : 0xffffff7f8098c907
    0xffffff80a398b910 : 0xffffff7f80a7ca64
    0xffffff80a398b960 : 0xffffff7f80a7cb24
    0xffffff80a398b9c0 : 0xffffff7f80d29749
    0xffffff80a398bb00 : 0xffffff7f80a9bbad
    0xffffff80a398bb30 : 0xffffff7f80996282
    0xffffff80a398bbe0 : 0xffffff7f80991b84
    0xffffff80a398bdd0 : 0xffffff7f80993639
    0xffffff80a398beb0 : 0xffffff7f8092e484
    0xffffff80a398bf00 : 0xffffff7f820a47d6
    0xffffff80a398bf50 : 0xffffff7f820a4f2a
    0xffffff80a398bf70 : 0xffffff800023db2c
    0xffffff80a398bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.1.8)[94BA87BA-B128-3310-9860-98EC67AB7FAF]@0xffffff7f809 2c000->0xffffff7f80c05fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f808b7000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[4B3F84DC-18B3-3897-BC56-4E3940878047]@0xff ffff7f8091a000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[FE536983-1897-3D6B-965E-24B5A67080DA]@0 xffffff7f808e2000
             com.apple.nvidia.nv50hal(7.1.8)[7596DB8C-AE9D-3C87-B11A-0ED8F940CAF8]@0xffffff7 f80c06000->0xffffff7f80f27fff
                dependency: com.apple.NVDAResman(7.1.8)[94BA87BA-B128-3310-9860-98EC67AB7FAF]@0xffffff7f809 2c000
             com.apple.driver.AGPM(100.12.42)[380DAA3B-4F08-3152-A3A0-E3F8B6E4B92B]@0xffffff 7f820a3000->0xffffff7f820adfff
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[FE536983-1897-3D6B-965E-24B5A67080DA]@0 xffffff7f808e2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[4B3F84DC-18B3-3897-BC56-4E3940878047]@0xff ffff7f8091a000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f808b7000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11D50
    Kernel version:
    Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
    Kernel UUID: 7B6546C7-70E8-3ED8-A6C3-C927E4D3D0D6
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 5224512131000
    last loaded kext at 1624245923653: com.apple.driver.AppleFireWireStorage    3.0.1 (addr 0xffffff7f808b3000, size 16384)
    last unloaded kext at 1739101632802: com.apple.driver.StorageLynx    3.0.1 (addr 0xffffff7f80809000, size 8192)
    loaded kexts:
    com.regularrateandrhythm.driver.RowmoteIREmu    1.0
    com.bresink.driver.BRESINKx86Monitoring    8.0
    com.AmbrosiaSW.AudioSupport    3.2
    com.apple.driver.Oxford_Semi    3.0.1
    com.apple.driver.AppleUSBDisplays    317
    com.apple.driver.AppleHWSensor    1.9.4d0
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AGPM    100.12.42
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleHDA    2.1.7f9
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.1.7f9
    com.apple.driver.AppleIntelHDGraphics    7.1.8
    com.apple.driver.AppleIntelHDGraphicsFB    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.GeForce    7.1.8
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.5d4
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.3
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleUSBCardReader    3.0.1
    com.apple.iokit.SCSITaskUserClient    3.0.3
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.IOAHCIBlockStorage    2.0.1
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    513.20.19
    com.apple.iokit.AppleBCM5701Ethernet    3.0.8b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleAHCIPort    2.2.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleACPIButtons    1.4
    com.apple.driver.AppleRTC    1.4
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.4
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    167.3.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.1
    com.apple.driver.AppleIntelCPUPowerManagement    167.3.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport    2.1.0
    com.apple.iokit.IOFireWireSBP2    4.2.0
    com.apple.driver.AppleUSBHIDKeyboard    152.3
    com.apple.driver.AppleHIDKeyboard    152.3
    com.apple.driver.AppleUSBAudio    2.8.2f5
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.1.7f9
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0
    com.apple.iokit.IOBluetoothSerialManager    4.0.3f12
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc6
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.1.7f9
    com.apple.iokit.IOHDAFamily    2.1.7f9
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.1d8
    com.apple.driver.IOPlatformPluginFamily    4.7.5d4
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.nvidia.nv50hal    7.1.8
    com.apple.NVDAResman    7.1.8
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.3f12
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.3f12
    com.apple.iokit.IOBluetoothFamily    4.0.3f12
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.0.3
    com.apple.iokit.IOUSBMassStorageClass    3.0.1
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.0.3
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.driver.XsanFilter    403
    com.apple.iokit.IOAHCISerialATAPI    2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.0.3
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    412.2
    com.apple.iokit.IOEthernetAVBController    1.0.0d5
    com.apple.iokit.IONetworkingFamily    2.0
    com.apple.iokit.IOAHCIFamily    2.0.7
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.3
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.3
    com.apple.iokit.IOStorageFamily    1.7
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.4
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4

    Please describe:
    Computer model & hardware characteristics (especially RAM).
    How much free space left on HDD.
    Any add-ons you may have added to the system (antivirus, screen eye candy, etc.)
    What applications were running when the crash occurred.
    What were you doing when the crash occurred.

  • Can you please help fix this Update rule?

    Hi,
    I have a field (field1) in an ODS (ODS1) and the same field1 is also in ODS2.
    Once ODS2 is loaded with data, I would like to populate the same field1 in ODS1 through the UPDATE RROUTINE.
    So I went to ODS1 and in the update rules, selected field1, and selected the update method as Routine. I then assigned a name to the update routine and got the code below.
    Can help me modify this code to fill the field field1 in the ODS1 if the following is true:
    key1 in ODS1 = Key1 in ODS2 AND
    key2 in ODS1 = Key2 in ODS2 AND
    key3 in ODS1 = Key3 in ODS2 AND
    key4 in ODS1 = Key4 in ODS2 AND
    Otherwise leave the field blank.
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BIC/Zaft_PPP
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE TPSMMM-TSTSYS
      CHANGING RESULT LIKE /BIC/ AABBTST00-field1
               RETURNCODE LIKE SY-SUBRC "Do not use!
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal table "MONITOR", to make monitor entries
    result value of the routine
      RESULT = .
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Thanks

    Hi,
    Lv_field1 is a local variable to which you would be assigning the value of the field1 from ODS2. So thats the reason after assigning field1 value to lv_field1 it assigned to Result.
    The select statement should be below the following:
    FORM compute_data_field
    TABLES MONITOR STRUCTURE RSMONITOR "user defined monitoring
    USING COMM_STRUCTURE LIKE /BIC/Zaft_PPP
    RECORD_NO LIKE SY-TABIX
    RECORD_ALL LIKE SY-TABIX
    SOURCE_SYSTEM LIKE TPSMMM-TSTSYS
    CHANGING RESULT LIKE /BIC/ AABBTST00-field1
    RETURNCODE LIKE SY-SUBRC "Do not use!
    ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line -
    fill the internal table "MONITOR", to make monitor entries
    <b>Select Statement</b>
    result value of the routine
    <b>RESULT = lv_field1</b>.
    if abort is not equal zero, the update process will be canceled
    ABORT = 0.
    Also the table definition is for ODS2 from which you would be reading.
    Regards,
    Namrata

  • Can you please help with importing CDs and audio books?

    I tried to search for this topic, but had no luck.
    Have been happy with IPOD until today. On trying to import a new audio book to iTunes and then updating IPOD to install on it, I can see the title in both the iTunes Library and menu of IPOD. However, instead of seeing a normal 57:32 (or similar stop time), I am seeing 789:57:13.152. When I try to play it through iTunes or IPOD, it skips it as if it wasn't there and plays something else. I checked out importing a music CD, and find the same problem.
    Appreciate any advice you can give.
    Dell   Windows XP   Itunes 6.0

    However, instead of seeing a normal 57:32 (or similar stop time), I am seeing 789:57:13.152. When I try to play it through iTunes or IPOD, it skips it as if it wasn't there and plays something else. I checked out importing a music CD, and find the same problem.
    let's first see if you can get the CDs to import normally if you switch off "error correction" in the iTunes Advanced-Importing preferences subtab.
    but if no joy there, try checking through the other suggestions from the following document:
    You can't import or play music from an audio CD in iTunes for Windows
    ... and these resources might be helpful with that:
    Using CD Diagnostics in iTunes for Windows to troubleshoot CD/DVD drive issues
    iTunes for Windows: Updating the firmware on your CD or DVD drive
    Updating the drivers on your Windows PC
    Where to find firmware for your CD/DVD drive

  • Can you please help with creating a spreadsheet with a specific formulas that affect popup menus?

    I am a referee assignor for soccer tournaments. I would like to create a spreadsheet template that I can use that will help me with this. I have a game schedule spreadsheet with the following columns. Date, start time, age group, home team, away team, field #, center referee 1, assistant referee 1 and assistant referee 2. Here is what I would like to do if possible. If a referee has a game at say 10:00am and ends at 11:45am I would like to have a popup menu in the referee columns with referee names  where this particular referee name wouldn't show for any games between 10:00am and 11:45. I should mention that for each different age group the game lengths are different. I can also add a end time column in the spreadsheet if I need to.
    Is this even possible and if so does anyone have any suggestions on how to accomplish? I should also mention I am not very savvy on creating formulas.
    Thanks in advance
    Robert

    Thanks. This is what my schedule looks like.
    As you can see this particular official is scheduled for 10:00am. That particular age group game is 80 minutes long. I would like for his name to not appear in the dropdown until he is available again. I can create another column with the end time if needed or my thought was to sort the games by age group and enter a formula for each age group. It might sound like a lot of trouble but if there is a way to do it it would help tremendously as some of theses tournament have 300-400 games and it is hard to keep track of each referee and not double book them for the same time slot.
    I am not even sure this can be done but trying to have numbers (or excel for that matter) to do the heavy lifting for me.

  • Can you please help with changing my security answers, I have forgotten them

    Please help me get the answers for my security questions

    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then the steps on this page will give you a reset link on your account : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620

  • Can you please help with iPhone 4 camera?

    I am running ios 7 and have been for a few months with no problems. When I went to take a photo yesterday, I clicked on the Camera icon and a black screen with a white circle came on.  I tapped the white circle (even though that's not usually what I see when I want to take a picture), and it VERY briefly clicked on but way before I could think to snap a picture, it clicked me out of Camera and back to the main screen with icons. 
    PLEASE help me figure this out!  I use my phone, like many of us, for pictures almost every day.
    Thanks in advance....Beth

    Hello,  What I do is I open Lightroom 5.3 and go to 'Help' and go to 'Check for Updates' then click on it which brings up Lightroom Update Available (see image below) and as soon as I click 'Download' I get the error as shown above (in the other image).  Hope this helps

  • Please help with this select problem.

    Hi,
    I am trying to run the following PL-SQL:
    declare
    p binary_integer := 2;
    begin
    loop
         insert into xyz
         values
         (p, (select time_b from xyz where id = (p - 1)) + (time '00:00:01' - time '00:00:00'), 'text');          
         loop_count := loop_count + 1;
         exit when loop_count = 10;
    end loop;
    end;
    When I run this, I get the error "encountered the symbol "select" when expecting one of the following symbols..." However, When I run the following query, it inserts the appropriate record:
    insert into xyz
         values
         (p, (select time_b from xyz where id = 1) + (time '00:00:01' - time '00:00:00'), 'text');     
    Anybody help?
    Thanks,
    Message was edited by:
    user494578

    And do you have a good reason to use PL/SQL instead of plain SQL ?
    In SQL you could just do this:
    SQL> create table xyz
      2  as
      3  select 0 x, sysdate time_b, 'text' text from dual
      4  /
    Tabel is aangemaakt.
    SQL> set verify off
    SQL> define P_LAST_X=idle
    SQL> define P_LAST_TIME_B=idle
    SQL> column x new_value P_LAST_X
    SQL> column time_b new_value P_LAST_TIME_B
    SQL> select max(x) x
      2       , to_char(max(time_b) keep (dense_rank last order by x),'dd-mm-yyyy hh24:mi:ss') time_b
      3    from xyz
      4  /
                                         X TIME_B
                                         0 11-10-2006 16:58:07
    1 rij is geselecteerd.
    SQL> insert into xyz
      2  select &P_LAST_X + l
      3       , to_date('&P_LAST_TIME_B','dd-mm-yyyy hh24:mi:ss') + l/24/60/60
      4       , 'text'
      5    from (select level l from dual connect by level <= 10)
      6  /
    10 rijen zijn aangemaakt.
    SQL> select * from xyz
      2  /
                                         X TIME_B              TEXT
                                         0 11-10-2006 16:58:07 text
                                         1 11-10-2006 16:58:08 text
                                         2 11-10-2006 16:58:09 text
                                         3 11-10-2006 16:58:10 text
                                         4 11-10-2006 16:58:11 text
                                         5 11-10-2006 16:58:12 text
                                         6 11-10-2006 16:58:13 text
                                         7 11-10-2006 16:58:14 text
                                         8 11-10-2006 16:58:15 text
                                         9 11-10-2006 16:58:16 text
                                        10 11-10-2006 16:58:17 textHope this helps.
    Regards,
    Rob.

  • Can you please help on this case

    hi currently  we are reading data from jmsAQ this is web service based adapter,
    here right now we did n't pick the data from queue, instances are not created  in domain log file it's showing following type of exception
    <2013-06-13 06:58:12,414> <ERROR> <routes_sitehub_dsp.collaxa.cube.engine.data> <ProxyInvocationHandler::invoke> Caught invocation exception
    ORABPEL-02152
    Instance not found in datasource.
    The process domain was unable to fetch the instance with key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" from the datasource.
    Please check that the instance key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" refers to a valid instance that has been started and not removed from the process domain.
            at com.collaxa.cube.engine.data.AdminFinder.lookupInstanceByConversationId(AdminFinder.java:307)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at com.collaxa.cube.engine.data.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:58)
            at $Proxy1.lookupInstanceByConversationId(Unknown Source)
            at com.collaxa.cube.ejb.impl.FinderBean.lookupInstanceByConversationId(FinderBean.java:205)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
            at com.evermind.server.ThreadState.runAs(ThreadState.java:693)
            at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.TxNotSupportedInterceptor.invoke(TxNotSupportedInterceptor.java:43)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
            at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
            at FinderBean_RemoteProxy_4bin6i8.lookupInstanceByConversationId(Unknown Source)
            at com.oracle.bpel.client.Locator.lookupInstance(Locator.java:450)
            at _displayInstance._jspService(_displayInstance.java:123)
            at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
            at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
            at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
            at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
            at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
            at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
            at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
            at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
            at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
            at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
            at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:230)
            at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
            at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
            at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
            at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:595)
    <2013-06-13 06:58:12,436> <ERROR> <routes_sitehub_dsp.collaxa.cube.engine.data> <ProxyInvocationHandler::invoke> Not fatal connection error ... not retrying: class com.collaxa.cube.engine.core.InstanceNotFoundException: Instance not found in datasource.
    The process domain was unable to fetch the instance with key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" from the datasource.
    Please check that the instance key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" refers to a valid instance that has been started and not removed from the process domain.
    <2013-06-13 06:58:12,437> <WARN> <routes_sitehub_dsp.collaxa.cube> <BaseCubeSessionBean::logWarning> Error while invoking bean "finder": [com.collaxa.cube.engine.core.InstanceNotFoundException: Instance not found in datasource.
    The process domain was unable to fetch the instance with key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" from the datasource.
    Please check that the instance key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" refers to a valid instance that has been started and not removed from the process domain.
    ORABPEL-02152
    Instance not found in datasource.
    The process domain was unable to fetch the instance with key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" from the datasource.
    Please check that the instance key "047b94d18a219ef6:5f067af2:13ee47aaec0:b96" refers to a valid instance that has been started and not removed from the process domain.
            at com.collaxa.cube.engine.data.AdminFinder.lookupInstanceByConversationId(AdminFinder.java:307)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at com.collaxa.cube.engine.data.ProxyInvocationHandler.invoke(ProxyInvocationHandler.java:58)
            at $Proxy1.lookupInstanceByConversationId(Unknown Source)
            at com.collaxa.cube.ejb.impl.FinderBean.lookupInstanceByConversationId(FinderBean.java:205)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
            at com.evermind.server.ThreadState.runAs(ThreadState.java:693)
            at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.TxNotSupportedInterceptor.invoke(TxNotSupportedInterceptor.java:43)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
            at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
            at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
            at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
            at FinderBean_RemoteProxy_4bin6i8.lookupInstanceByConversationId(Unknown Source)
            at com.oracle.bpel.client.Locator.lookupInstance(Locator.java:450)
            at _displayInstance._jspService(_displayInstance.java:123)
            at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
            at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
            at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
            at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
            at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
            at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
            at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
            at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
            at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
            at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
            at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:230)
            at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
            at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
            at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
            at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:595)

    See if anything in here helps; http://superuser.com/questions/380330/mac-convert-from-case-sensitive-to-case-insensitive- file-system

Maybe you are looking for

  • My macbook13in has a blue screen with error code 10813

    my macbook 13in has a blue screen with error code 10813

  • FW drive freezes OS X 10.4.9

    Several years ago I bought a Neptune firewire drive from OWC to use with an older Mac running OS 8.6 and 9.1. It worked very well with that machine. I retired the computer but had a lot of files on that disk that I'd like to access from my G5 powerma

  • I TUNES IS NOT OPENING

    I have seen several postings on this, but no answer. Upgraded to 7 and all I get is the service agreement, which I accept and then it closes. How do you revert back to your other version?

  • Web Reports and Port

    Hi, When we execute a BW web report or template, they run on port:8100 or port:8000. Do anyone know how to make them run on port:80 instead? Best Regards, Anil

  • Need some assistance in binary streaming and reading

    Hi, altough I studied the examples delivered with LabView (my current version is 6i) I have some challenges to face and I hope someone could help me. This challenges may be simple for professionals but I'm not already that experienced. I have an one