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

Similar Messages

  • I have jave 7 I'm trying underscore option in String.   as String strNum = "1000_000";System.out.println("..abc..."  Integer.parseInt(strNum)); but getting error. could you please help in this?

    Hi,
    There is a new feature added in java 7 on integer, called as underscore '_" and it is working fine
    if it is a normal int variable  but if it is coming with String jvm throw the error.
    if  any one of you have java8 installed on your PC can you check this is working on that version.
    int a = 1000_000;   
    String strNum = "1000_000";
    // System.out.println("..abc..."+ Integer.parseInt(strNum));
    System.out.println("a..."+a);
    Thank you,
    Shailesh.

    what is your actual question here?
    bye
    TPD

  • 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

  • HT1311 Since resetting my apple id on my iphone 4s, My apps won't update. Can you please help as this is frustrating, not having my mobile up to date. Many Thanks.

    Since resetting my apple id, my iphone 4s will not update my apps
    I have downloaded apps but will not update the existing ones. I
    Have contacted apple for help but to no benefit. I'd appreciate any
    Help to get my apps up to date as it's frustrating not having my phone
    In proper working order.
    Many Thanks.

    Double tap the Home button to bring up the multi-tasking bar. Tap & hold any app shown until they all start to wiggle. Tap the red minus sign next to every app shown & remove them all from the multi-tasking bar. Tap the Home button when finished. Now, reset your phone: Press the Sleep/Wake button & Home button at the same time, keep pressing until you see the Apple logo, then release.
    Try now...same result?

  • 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

  • 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(*) >= ...

  • 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

  • Trying to update photoshop and repeatedly get error code U44M1P7, can anyone please help resolve this?

    Trying to update photoshop and repeatedly get error code U44M1P7, can you please help resolve this?

    JJMack, Thanks for the info. Let this old man digest it and see if I can put the info into action. I'll give you a feedback. Thanks for your help in this matter. I am not a tech savvy person. 
    Rueben Rueben D. Olivas Home Ph:  1-671-969-2452
    Cell Ph:  1-671-747-2453La Luz Photography
    Email: [email protected]/Guam Firehouse Cook: http://guamfirehousecook.blogspot.com/BBQGuam: http://bbqguam.blogspot.com/My Photostream: http://ruebenolivas.megashot.net/photostream

  • Hi can you please help me to fix my iPhone 5 when I update it to the iOS 6.1.2 my carrier signal indicator states searching all the time please help me what to do

    HiHi can you please help me to fix my iPhone 5 when I update it to the iOS 6.1.2 my carrier signal indicator states searching all the time please help me what to do

    Hi Samantha,
    Are you aware that if you restore your ipad that you will lose all data from your ipad and very difficult to get it back unless you had previously made a back-up of your data on itunes or in the cloud. and that would be on the computer you set those up on. (There are some independent apps out there that might help restore data but I don't have any experience with them...)
    Also, I think if you restore on another computer you're supposed to have administrator rights and have the latest itunes update. And I think if you sync (if restoring is considered syncing with another computer, you'll be locked out of your computer or a new one.)
    I don't know if there is a way for you to safely eject your ipad from your mom's laptop and find another way, but please read this
    http://support.apple.com/kb/ts1275
    Also, I suggest you start a new post and title it something like First, stuck on update and now on Restore on another computer. Please HELP! And then tell the story of your problem that you originally included and your follow-up efforts to restore given a suggestion on previous post (though I think you SHOULD AVOID RSTORE if you can.) And refer them to your original post
    https://discussions.apple.com/message/22050045?ac_cid=tw123456#22050045
    Hope this helps and if you can get back to your ios before the upgrade, stay with it. I hope it all works out for you.
    FYI - If it's a new or refurb bought within the past year you might be able to have it replaced by Apple.

  • TS3694 Hi, i'm trying to update my iphone but this is the msg i'm getting, can you please help me. thank you. "the iphone ''C & M '' could not be restored. An unknown error occurred (3194)"

    Hi, i'm trying to update my iphone but this is the msg i'm getting, can you please help me. thank you. "the iphone ''C & M '' could not be restored. An unknown error occurred (3194)"

    http://support.apple.com/kb/TS3694#error3194
    This means that either your firewall/antivirus is blocking access to Apple's servers, or you have used your computer to jailbreak an iDevice in the past. The link above tells you how to resolve this issue.

  • While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?

    Hello,
    While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?
    PS.- Thank you very much for your Support in trying to solve a problem created by yourselves.
    Message was edited by: Juan Verano

    Is there anything else beside the number 2203?
    Try removing the current Reader using http://labs.adobe.com/downloads/acrobatcleaner.html, then install 11.0.07 from http://get.adobe.com/reader/enterprise/

  • I wanted to update my itunes and it didn't update and now it wont open so i had to uninstall it and it wont install now at all can you please help?

    Hi
    I turned on my laptop this evening to import a new cd but it asked me if i wanted to download the new version of itunes so i went ahead to update it but it failed to update then it failed to open at all, and and runtime error keeps popping up but when i uninstalled it to reinstall it it wont install now and i cant use my ipod or ipad with my laptop without itunes and i never had this problem at all. can you please help?

    Hey maryncomiskey,
    Thanks for the question. I understand you are experiencing issues with the latest iTunes update. The following resource may help to resolve your issue:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Additional Information:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Thanks,
    Matt M.

  • I cannot install Creative Suite 5.5 on my Windows 7 Professional. I keep getting error message: "Exit Code: 15 - Media DB sync failed". I have disabled UAC and Startup items and Services with no luck. Can you please help?

    I cannot install Creative Suite 5.5 on my Windows 7 Professional. I keep getting error message: "Exit Code: 15 - Media DB sync failed". I have disabled UAC and Startup items and Services with no luck. Can you please help?

    I am sorry Erickkasner but there is no longer direct support provided for Creative Suite 5.5 installation issues.
    You are welcome to post any specific errors you are able to discover within your installation log to this discussion.  Since you are using Windows then Exit Code 15 could mean one of the following:
    Installer database is corrupted
    Update pending to your operating system
    Improper permissions set for the Media.db
    The installation log file should provide additional insight into the exact error you are experiencing.  Please make sure to use the find command to look for the words 'ERROR' and 'FATAL' to locate the relevant error messages.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • I entered new fields in a form that was created last year to update it.  However, now when I view the responses, they are listed as Column 1, Column 5, etc.  It doesn't show a label for the actual field when I view the responses.  Can you please help?

    I entered new fields in a form that was created last year to update it.  However, now when I view the responses, the headings are listed as Column 1, Column 5, etc. rather than the name of the heading.  Can you please help?

    Hi Mike,
    CRSE is an OEM Product and for use with a custom application they have written. Unfortunately we don't their reports or how they are connecting, it would appear they were originally built off a SQL and then set to a Dataset in the app or they could be adding the data source at runtime. Lots of variations and without access to the source code to see what they are doing not much we can help you with.
    You need to contact the OEM Partner for help in resolving this and find out what you can and need to do to update your SP and work with their canned reports,
    Thank you
    Don

Maybe you are looking for

  • More than one icon in a string

    Hello everyone, Is it possible to have more than one icon in a string? Something like:   CONCATENATE '@S_OKAY@' 'dd' '@S_OKAY@'  INTO t_text.   WRITE: 35 t_text AS ICON. I could not find any information about this possibility. Regards, Cláudio Ramos

  • IMovie file too big?

    hey guys! thanks for the GREAT help on converting a mpeg file for iMovie use. anyways new question now. i just looked at the iMovie file im creating now and its 7 something gigabytes!! is that actually how big the converted quicktime movie will turn

  • SDO_RELATE command with 'coveredby' option doesnt return record as expected

    Hi all, I use oracle spatial 10.2. I use sdo_relate to compare 2 tables' geometries. The case is table 1 has ~2000 records, each is a retangle and has sdo_geometry field. 'Table 2' is transient geometry defined by sdo_geometry to a rectengle. The def

  • RSCRM_BAPI

    Hi Gurus, We are Extracting Data From the Queries to Tables, using RSCRM_BAPI. Here what i am looking is When i excute a Query; for Every Charectestic i am displaying KEy as well as TEXT fields but, Once we extarcte same query to the Tables, i can't

  • Why ('ontouchstart' in window) is false on a touch tablet with Windows 8

    I use Java Script to determine if my Web-Site is running on Tablet touch device The device is Assus tablet with windows 8