Issue in HR_PERSON_API.UPDATE_PERSON

Hi
i'm trying update the person record
     L_EMAIL_ADD          VARCHAR2(150);
     L_eff_start           DATE;
     L_eff_end           DATE;
     L_full_name           VARCHAR2(240);
     L_comment_id          NUMBER;
     L_NCW           BOOLEAN;
     L_APW           BOOLEAN;
     LOHW           BOOLEAN;
begin
DBMS_OUTPUT.PUT_LINE('Begin ');
L_EMAIL_ADD :='[email protected]';
     HR_PERSON_API.UPDATE_PERSON (
                         p_effective_date => SYSDATE,
                         p_datetrack_update_mode => 'CORRECTION',
                    p_person_id => 5,                         p_object_version_number => 1439,                         p_email_address => L_EMAIL_ADD,                         p_employee_number => '400003',
                         p_effective_start_date => L_eff_start,
                         p_effective_end_date => L_eff_end,
                         p_full_name => L_full_name,
                         p_comment_id => L_comment_id,
                         p_name_combination_warning => L_NCW,
                         p_assign_payroll_warning => L_APW,
                         p_orig_hire_warning => LOHW
but an getting this error
Error message is ORA-20001: The HR object is invalid
Cause: The HR object which is attempted to be locked is inconsistent with the corresponding object in the HR Schema.
Action: Retry the action with the correct object version number.
Please help
thanks

There is a basic problem in the way you are calling the API.
While calling an API you need to take care of the effective date and date track mode. In this case, since you are using the date track mode 'CORRECTION', I suppose that you want to correct (and not update) a date tracked record for the person.
Now if you pass the effective date as sysdate, system will correct the record which is effective on the sysdate. Hence first you should fetch the object version number of that record and then pass it to the API as an IN OUT parameter.
So the modifications you need to do in your API call is as follows:
1. Always use function trunc(<your effective Date>) as input parameter for effective date while calling HRMS APIs.
2. In the code block, before calling the main API hr_update_api.update_person, write a select query to fetch the object version number for the record effective on the effective_date passed by you (in this case sysdate).
select object_version_number into l_obj_version_number
from per_all_people_f
where person_id = <person_id>
and trunc(sysdate) between effective_start_date and effective_end_date;
Use this l_obj_version_number for parameter p_object_version_number in call to the API.
I hope this should resolve your problem. Try it and do let us know how it worked out.
Thanks,
Sinha

Similar Messages

  • Problem With HR_PERSON_API.UPDATE_PERSON

    Hi All,
    I am trying to update the PER_INFORMATION2 and PER_INFORMATION3 fields in PER_ALL_PEOPLE_F and am getting the following error when trying to use the HR_PERSON_API.UPDATE_PERSON Api...
    Error report:
    ORA-20001: The primary key specified is invalid
    Cause: The primary key values specified are invalid and do not exist in the schema.
    Action: Check the primary key values before attempting to carry out the operation again.
    ORA-06512: at "APPS.HR_PERSON_API", line 1104
    I've checked The Object Version Number, Effective Dates and the Person ID and all seem correct. Any help would be much appreciated
    regards
    Brad

    Hi,
    Please check the person_id and object_version_number of the record you are trying to update (ie.the one within the effective_start_date and effective_end_date that you specified to the API).
    This error is caused by incorrect combination of person_id,object_version_number,effective_start_date and effective_end_date
    What is the datetrack mode that you have used?

  • Not able to terminate an Emp, Error: The person must exist as an employee at the time specified by Date Start

    HI Guru's
    We are sourcing Employee records from upstream system and the Effective_start_date for particular record of Employee is getting changed, consider a below scenario.
    EXISTING RECORD.
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,31-MAY-2001,        EMP
    123,       01-JUN-2001         ,31-DEC-4712,        EMP
    MODIFIED DRECORD
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,14-MAY-2001,        EMP
    123,       15-MAY-2001         ,31-DEC-4712,        EMP
    So when i am able to change the effective_start_date for 2nd record from 01-JUN-2001 to 15-MAY-2001 using an API "hr_person_api.update_person" with p_datetrack_update_mode as 'UPDATE_OVERRIDE'..
    but after this when i am trying to terminate the employee using an API "hr_ex_employee_api.actual_termination_emp" for below scenario, i am getting the following error: "The person must exist as an employee at the time specified by Date Start".
    For Termination:
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,14-MAY-2001,        EMP
    123,       15-MAY-2001        ,09-JUL-2001,        EMP
    123,       10-JUL-2001         ,31-DEC-4712,       EX_EMP  ----> Not able to process erroing
    Please help me in resolving this issue..
    Regards,
    Mushtaq

    Hi,
    Just wondering if this is an ATG related question.
    Thanks,
    Gopinath Ramasamy

  • How to change Date of joining in Oracle Apps Hrms?

    While employee data migration i have entered incorrect original date of hire.Now ,i want to correct it to system date.
    I'm using 'hr_person_api.update_person' to correct the date but not able to do.So, can any let me know how i can do that from backend.

    When you say "you are not able to"...what error messages are you getting back from the API?
    If its to correct a single person then its easier to do this via the front end application forms.
    Regards
    Barry

  • Which API updates employee info

    Hi,
    we are working in oracle applications 11i
    I need update /add existing employee info in PER_ALL_PEOPLE_F table . Especially EMAIL_ADDRESS column. I can see that we add or update email address from Office Details Tab in People -> Enter and Maintain form.
    So which API can I use to update employee emails???
    thank you...

    Hi,
    this is a sample of updating Person API:
    hr_person_api.update_person
    (p_validate => FALSE
    ,p_effective_date => TRUNC(SYSDATE)
    ,p_datetrack_update_mode => 'CORRECTION'
    ,p_person_id => l_person_id
    ,p_object_version_number => l_object_version_number
    ,p_national_identifier => lcursor.national_id
    ,p_employee_number => l_employee_number
    ,p_effective_start_date => l_effective_start_date
    ,p_effective_end_date => l_effective_end_date
    ,p_full_name => l_full_name
    ,p_comment_id => l_comment_id
    ,p_name_combination_warning => l_name_combination_warning
    ,p_assign_payroll_warning => l_assign_payroll_warning
    ,p_orig_hire_warning => l_orig_hire_warning
    regards,
    taha

  • Getting An Error when a Concurrent Program is run

    ORA-20001: A value has been provided for a non-enabled or non-existent descriptive flexfield segment. This Error is coming out from the API call - hr_person_api.update_person. Please advise !

    Hi,
    Please mention the OS version and the application release.
    Is this a custom or standard concurrent program?
    Has this ever worked? If yes, what changes have been done recently?
    Search My Oracle Support for "ORA-20001 hr_person_api.update_person", go through the documents, and see if it helps.
    If none of the above helps, enable trace, submit the concurrent program and check the log file for details about the error.
    Regards,
    Hussein

  • Query on Contact's api

    Hi everyone,
    We're currently using 11.5.10.2 / 10.1.0.4 db
    Is there an api to update the contact's basic information (like last_name, first_name, date_of_birth)?
    Is it the HR_PERSON_API.update_person ?
    I used the HR_CONTACT_REL_API.create_contact in creating the contact's basic information but can't find any procedure inside the HR_CONTACT_REL_API package that updates the contacts' last_name, first_name, date_of_birth, etc.
    Any help is highly appreciated.
    Thank you,
    Elmer

    Hi elmer;
    Please follow below and see its helpful for you
    [Link 1|http://freshers-oracleapplications.blogspot.com/2009/01/oracle-hrms-faqs.html]
    [Link 2|www.succeeding.com.cn/bbs/attachment.php?aid=15]
    [Link 3|www.oracle-fusion.com/members/hrms/hrms_pinfo_2.htm]
    Regard
    Helios

  • ORA-20001: The current row is locked

    Hi Team
    I find below mentioned error message in my log table .Please can you suggest why we are getting this error .
    Some time back we had our OS migration from one server to another ,can it be related to that as we have noticed this error message after such migration.
    Please suggest what can be done in order to avoid such error.
    ERROR IN hr_person_api.update_person api failed -step4 -ORA-20001: The current row is locked
    Cause:        You are trying to lock a row in the per_people_f table which is currently being locked by another user. 
    Action:        Re-query and attempt to lock the row again
    ERROR IN hr_assignment_api.update_emp_asg API - STEP8.2 - ORA-20001: The current row is locked
    Cause:        You are trying to lock a row in the per_all_assignments_f table which is currently being locked by another user. 
    Action:        Re-query and attempt to lock the row again.
    Regards
    Anima

    Hi Everyone
    Can anyone help me with this .Why we are getting this error and how can it be handled.
    Please suggest what can be done in order to avoid such error.
    ERROR IN hr_person_api.update_person api failed -step4 -ORA-20001: The current row is locked
    Cause:        You are trying to lock a row in the per_people_f table which is currently being locked by another user. 
    Action:        Re-query and attempt to lock the row again
    ERROR IN hr_assignment_api.update_emp_asg API - STEP8.2 - ORA-20001: The current row is locked
    Cause:        You are trying to lock a row in the per_all_assignments_f table which is currently being locked by another user. 
    Action:        Re-query and attempt to lock the row again.

  • Updation of DFF field using SQL

    Dear HRMS experts,
    There is a DFF (Attribute10) that has been created in PER_ALL_PEOPLE_F table. The DFF is populated initially with some value. Now the requirement is to make it NULL for all the employee records.
    Can I run an update script, something like this? Is it supported by Oracle?
    UPDATE PER_ALL_PEOPLE_F SET ATTRIBUTE10=NULL
    WHERE TRUNC(SYSDATE) BETWEEN EFFECTIVE_START_DATE AND EFFECTIVE_END_DATE;Regards,
    qARS

    Ideally You're not supposed to.
    But as this is an Attribute field, it is ok.
    Else use the below -
    Declare
    l_effective_start_date     date       ;
    l_effective_end_date       date       ;
    l_full_name                varchar2(300);
    l_comment_id               number     ;
    l_name_combination_warning boolean    ;
    l_assign_payroll_warning   boolean    ;
    l_orig_hire_warning        boolean    ;
    Begin
    For csr_per in (select *
              from per_all_people_f
              where business_group_id = 0
              and sysdate between effective_start_date and effective_end_date
              ) Loop
    apps.hr_person_api.update_person
      (p_validate                    =>      false
      ,p_effective_date              =>      csr_per.effective_start_date
      ,p_datetrack_update_mode       =>      'CORRECTION'
      ,p_person_id                   =>      csr_per.person_id
      ,p_object_version_number       => csr_per.object_version_number
      ,p_employee_number             => csr_per.employee_number     
      ,p_attribute10              =>      null
      ,p_effective_start_date        => l_effective_start_date   
      ,p_effective_end_date          => l_effective_end_date     
      ,p_full_name                   => l_full_name              
      ,p_comment_id                  => l_comment_id             
      ,p_name_combination_warning    => l_name_combination_warning
      ,p_assign_payroll_warning      => l_assign_payroll_warning 
      ,p_orig_hire_warning           => l_orig_hire_warning      
    End Loop;
    End;change the Business Group and other details accordingly.
    cheers,
    VB

  • Using HR_PERSON_API removed parenthesis from full_name

    Hello,
    We created a script to load some data into a DFF for some employees (around 400) using HR_person_api.update_us_person. We tested in a test instance and had no issues. When we ran it in production the users noticed that for each person updated, their full name no longer has parenthesis when the known_as field was filled in. The only thing that was updated was one of the attribute fields, the name and known_as fields were note updated. The way names usually look in our system is: Lastname, Firstname (known_as) But for these 50 or so people now looks like: Lastname, Firstname known_as
    I have not been able to duplicate the issue on any other instance, and I could not find any bugs for this on metalink.
    Any ideas?
    Thanks,
    Johnnie

    can you try to pass an explicit value for the name format parameter of the API (valid formats should be legislation specific)

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • Pension issue Mid Month Leaving

    Dear All,
    As per rule sustem should deduct mid month joining/leaving/absences or transfer scenarios, the Pension/PF Basis will be correspondingly prorated. But our system is not doing this. In RT table i have found 3FC Pension Basis for Er c 01/2010                    0.00           6,500.00.
    Employee leaving date is 14.04.2010. system is picking pension amout as 541. Last year it was coming right.
    Please suggest.
    Ashwani

    Dear Jayanti,
    We required prorata basis pension in case of left employees and system is not doing this. This is the issue. As per our PF experts Pension amount should come on prorata basis for left employees in case they left mid of month.System is doing prorata basis last year but from this year it is deducting 541. I am giving two RT cases of different years.
    RT table for year 2010. DOL 26.04.2010
    /111 EPF Basis              01/2010                    0.00           8,750.00 
    /139 VPF Basis              01/2010                    0.00           8,750.00 
    /3F1 Ee PF contribution     01/2010                    0.00           1,050.00 
    /3F3 Er PF contribution     01/2010                    0.00             509.00 
    /3F5 Ee Mon PF contribution 01/2010                    0.00           1,050.00 
    /3F6 Ee Ann PF contribution 01/2010                    0.00          12,600.00 
    /3F9 PF adm chrgs * 1,00,00 01/2010                    0.00              96.25 
    /3FA PF basis for Ee contri 01/2010                    0.00           8,750.00 
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00 
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00 
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00 
    /3F4 Er Pension contributio 01/2010                    0.00             541.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00
    /3R3 Metro HRA Basis Amount 01/2010                    0.00           8,750.00
    1BAS Basic Salary           01/2010                    0.00           8,750.00
    RT table for year 2009. DOL 27.10.2009
                                                                                    /111 EPF Basis              07/2009                    0.00           9,016.13
    /139 VPF Basis              07/2009                    0.00           9,016.13
    /3F1 Ee PF contribution     07/2009                    0.00           1,082.00
    /3F3 Er PF contribution     07/2009                    0.00             628.00
    /3F5 Ee Mon PF contribution 07/2009                    0.00           1,082.00
    /3F6 Ee Ann PF contribution 07/2009                    0.00           8,822.00
    /3F9 PF adm chrgs * 1,00,00 07/2009                    0.00              99.18
    /3FA PF basis for Ee contri 07/2009                    0.00           9,016.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00 
    /3FC Pension Basis for Er c 07/2009                    0.00           5,452.00 
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00 
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00 
    /3R4 Non-metro HRA Basis Am 07/2009                    0.00           9,016.13 
    1BAS Basic Salary           07/2009                    0.00           9,016.13 
    Now please suggest what to do. where is the problem  ? If have also checked EXIT_HINCALC0_002 but nothing written in it.
    With Regards
    Ashwani

  • Open PO Analysis - BW report issue

    Hello Friends
    I constructed a query in BW in order to show Open Purchase Orders. We have custom DSO populated with standard
    datasource 2lis_02_itm (Purcahse Order Item). In this DSO we mapped the field ELIKZ to the infoobject 0COMP_DEL
    (Delivery completed).
    We loaded the data from ECC system for all POs and found the following issue for Stock Transport Purchase orders (DocType = UB).
    We have a PO with 4 line items. For line items 10 and 20, Goods issued, Goods received and both the flags "Delivery
    complete" and "Final delivery" checked. For line items 30 and 40, only delivery indicator note is issued for zero
    quantity and Delivery complete flag is checked (Final delivery flag is not checked) in ECC system. For this PO, the
    delivery completion indicator is not properly updated in the DSO for line items 30 and 40. The data looks like the
    following:
    DOC_NUM     DOC_ITEM       DOCTYPE     COMP_DEL
    650000001       10     UB        X
    650000001       20     UB        X
    650000001       30     UB
    650000001       40     UB      
    When we run the Open PO analysis report on BW side this PO is appearing in the report but the same is closed in ECC
    system.
    Any help is appreciated in this regard.
    Thanks and Regards
    sampath

    Hi Priya and Reddy
       Thanks for your response.
                         Yes the indicator is checked in EKPO table for items 30 and 40 and delta is running regularly for more than 1 year and no issues with other POs. This is happening only for few POs of type Stock Transport (UB).
                        I already checked the changes in ME23N and the Delivery completed indicator was changed and it reflected in EKPO table. Further, i checked the PSA records for this PO and i am getting the records with the Delivery completed flag but when i update from PSA to DSO the delivery completed indicator is not updating properly.
                       In PSA, for item 30 i have the following entries. Record number 42 is capturing the value X for ELIKZ but after that i am getting two more records 43 and 44 with process key 10 and without X for ELIKZ. I think this is causing the problem.
    Record No.    Doc.No.                    Item              Processkey         Rocancel     Elikz
        41               6500000001            30                    11                            X           ---    
        42               6500000001            30                    11                            ---           X
        43               6500000001            30                    10                            X           ---
        44               6500000001            30                    10                            ---         ---
    (Here --- means blank)        
    Thanks and Regards
    sampath

  • HP LaserJet Enterprise 600 M602 driver issue

    Hello,
    I've got issue with 600-series printers. We use the latest UPD drivrer ver. 61.175.1.18849 and print from XenApp 6.5. The error occurs every time when users try to print jpg files from XenApp session. It only happens with 600 series printers and UPD.
    Also I've tried to assign native 600-series driver ver. 6.3.9600.16384 and it works good. But with that driver system says that it's color printer and it brokes our printing reports. These reports are very important for us. So we can't use printer and that driver as well.
    Printer installed on Windows Server 2012 R2. All clients are Windows 7 x64. XenApp Servers are Server 2008R2.
    Is it possible to get fixed UPD driver or correct native driver for Server 2012 R2?
    Regards,
    Anatoly

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Windows 7 displays error message when exiting +cursor issue

    Two issues here. CS5 Phoshop on Wind 7 64 bit.
    Physical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 9577 MB
    Memory available to Photoshop: 10934 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    First issue is since the latest automatic Adobe update (why fix what isn't broken?) Every time I now exit Photoshop I get the message "Adobe QT Server has stoped working" and occasionally it happens when I exit bridge. Indesign is also behaving badly. I can no longer start a previous document from file manager without ID crashing out.
    The other is the cursors in Clone and erase lose their edge (become invisable) for no reason - well not quite. Noise Ninja crashed Photoshop when I tried to use it. I reinstalled it and all is well. The cursor issue seems to be intermittant but came back (for no reason) after I reinstalled NN. I can't seem to change the cursor, no matter what I do. The problem is now seriously affecting how I work. Almost enough to go back to Win XP which ran CS5 Photoshop flawlessly.
    Any help will be gratefully accepted.
    Doug

    function(){return A.apply(null,[this].concat($A(arguments)))}
    doug87510 wrote:
    The recent problem is the entire outline of the cursor (including the crosshair in the middle) was missing at any size of cursor. All I had was exactly what I'd get if I used a real spraygun.
    Well, that issue is simply a matter of hitting the Caps Lock key.  When Caps Lock is on, you'll see the cursor outline, and when it is off you'll see a crosshair.  That's a feature, not a bug.
    Glad to hear the 11.1 drivers are out.  I will download them and try them now myself.
    Regarding "Adobe QT" crashing...  QT brings to mind QuickTime, though that is Apple, not Adobe.  Do you have Apple QuickTime installed?
    Regarding memory usage, with 12 GB of installed RAM, you should be able to set Photoshop to use 90% or more in Edit - Preferences - Performance.
    -Noel

Maybe you are looking for

  • Out of the blue Itunes can't find a large qty of songs, with a twist

    The library has been in tact and functional for some time now until today. Itunes has lost location of a  large quantity of songs in my library. I have gone through the song location process at which point itunes asks whether it should locate all of

  • How to use CSS Class

    Dear Friends, I am using Apex 4.1. i have made a below CSS class. i just want to know where i have to paste the below code and from where i have to call it and how? I have written this in PAGE Properties-->HTML Header <style type="text/css"> myclass

  • Warnings in faces-config.xml

    I've had to reinstall JDeveloper in the middle of trying to follow the 'Oracle Application Development Framework Tutorial', which shouldn't be a problem, since I just recreated the connection to my database and unzipped the appropriate file (starterA

  • I'll settle for a simple Yes or No...

    Is it possible (re-)edit text in item of HTML Editor minimal type? Hi, I created a form with an item of type HTML editor minimal. After insertig tekst and saving the text to the database (varchar2(4000)-type column) and displaying it in an APEX-repor

  • Creation of unbw material

    Hi All        what are views that are required while creating material master for non valuatted materials (UNBW) regards kumar