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

Similar Messages

  • Can you please help fix imap configuration so it will work?

    I have tried every scenario I can think of to get the imap to work and incoming is working fine, but outgoing is not working.
    I use register.com to host my email and from their site they have the following imap configuration settings
    Incoming IMAP mail server: mail.exampledomain.com
    Secure Password Authentication: NO
    Incoming IMAP port number: 143
    Outgoing SMTP mail server: mail.exampledomain.com
    Outgoing SMTP server requires authentication: YES
    Use same settings as Incoming Mail Server: YES
    Outgoing port number: 25 or 5125 or 587
    Can you please assist with getting this set up so I can send emails? I've tried all the outgoing port numbers...using SSL/TLS, STARTTTLS and using normal password and encrypted password.
    Emma

    IMAP is incoming mail so why do you want that fixed if it is working.
    SMTP settings are what control outgoing messages.
    The people that know the correct server settings for their mail servers will be your email provider. Ask them for the correct server settings and place them in Thunderbird.
    The SMTP settings are found at '''Tools-Account Settings-Outgoing Server (SMTP)'''
    Use the edit button to make changes.
    As a general rule port 25 is insecure and does not use SSL/TLS if it is supported at all. Most reliable providers have turned this port off.
    From my experience port 587 is looking for a STARTTLS command but your provider would have the real answer.
    Very few providers support encrypted passwords and normal password is the norm.
    Again only your provider knows how their system is set up. The first line of help desk agents will generally be clueless about any of this. Ask for someone that actually knows something.

  • 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

  • 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?

  • HT201364 hi Guys i need to update my macbook pro i cant i have only 10.6.8 can you please help me to update?

    Dear Sir/ Madam
    I need to update my macbook pro i cant i have only till10.6.8
    could you help me for that matter there's many applications can't get it
    Regards
    Tamer Radwan
    0097555789207
    [email protected]

    Upgrading from Snow Leopard to Lion or Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8, Lion, or Mountain Lion installed. Purchase and download Mavericks (Free) from the App Store. Sign in using your Apple ID. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mavericks- System Requirements
           Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion at the Online Apple Store. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • 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

  • TS1368 Can you please help  fix my count because i can buy nothing

    I want To help me To fix my count please

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

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

  • 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.

  • 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

  • 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.

  • Hi i am using  personal hot spot before updating 6.1.3.now iam using ios 6.1.3 version the personal hot spot is not working..can you please help me on this?how to use that,its in a default mode?

    Hi previously i use personal hotspot,after updating my 6.1.3 ios in india iam not able to use that.It is in a default mode.
    Can you please help me how to use personal hotspot.
    Thanks,
    Goutham.

    Im really good at programming but really suck at algorithms
    >If your are 'really good' at programming, you will be able to solve this problem. Because, it has nothing to do with algorithm.
    >>can someone please please write in a algorithm form for me , i need it by friday i would greatly be thankful for u
    >Wrong person, in the wrong place.

  • HT5282 I my safari automatically wiped when i took update. I am using Mac 10.6.8. Can you please send me how to reinstall it. Due to this my mail email system also effected. can you please help me soon

    I my safari automatically wiped when i took update. I am using Mac 10.6.8. Can you please send me how to reinstall it. Due to this my mail email system also effected. can you please help me soon

    The reason Safari "wiped" is unknown, but try reapplying the OS X 10.6.8 Combo update here:
    Mac OS X 10.6.8 Update Combo v1.1
    Your email problems may or may not be related. A more complete explanation of the problem would help.

Maybe you are looking for