Oracle-Developer.com Forums
A forum for discussing and sharing information about Oracle technologies
 

Navigation: Home  | Discussion Forums  |  Scripts  |  About Us  | Links  | Job Openings  | Blog  
 FAQFAQ   SearchSearch   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Email your Oracle questions to webmaster@oracle-developer.com to get Oracle 11g or Oracle E-Business expert advice.

PERWSDOR APP-PAY-07207 Object_version_number is Null on Hr_a

 
Post new topic   Reply to topic    Oracle-Developer.com Forums Forum Index -> Oracle E-Business Release 12
View previous topic :: View next topic  
Author Message
vj.jain
Site Admin


Joined: 10 Aug 2007
Posts: 86

PostPosted: Fri Mar 20, 2009 9:06 pm    Post subject: PERWSDOR APP-PAY-07207 Object_version_number is Null on Hr_a Reply with quote

Ran into this one during an 11.0.3 upgrade to R12

Oracle Human Resources - Version: 11.5.9
This problem can occur on any platform.
PERWSDOR 11.5.122
Symptoms
Getting errors when attempting to update a descriptive flexfield segment for the
descriptive flexfield titled "Add'l Org. Unit Details" which is accessed off the
Organization description form (PERWSDOR).

APP-PAY-07207: The mandatory argument object_version_number value cannot be null.
Cause: The mandatory argument object_version_number has either not been
specified or has been explicitly set to null in the API hr_oru_shd.lck.
Action: Either specify a value for the object_version_number argument which is
not null or contact your local support representative.
Changes
Navigation:

Work Structure--> Organization--> Description > Add'l Org. Unit Details (Descriptive Flexfield )
Cause
Object_version_number was null in hr_all_organization_units.
The value of object_version_number was not updated for existing records at the time of upgrading.
Fix
The supported workaround in the following script:

Run the following script to determine if you have any organization definitions where
select ORGANIZATION_ID, NAME, OBJECT_VERSION_NUMBER
from HR_ALL_ORGANIZATION_UNITS
where OBJECT_VERSION_NUMBER IS NULL;
If you have rows returned, run the following scripts. alter trigger HR_ALL_ORGANIZATION_UNITS_OVN disable;

update hr_all_organization_units
set object_version_number = 1
where object_version_number IS NULL;
commit;

alter trigger hr_all_organization_units_ovn enable; .
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Oracle-Developer.com Forums Forum Index -> Oracle E-Business Release 12 All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Sponsored by Oracle Consulting

Copyright ©2007 Oracle-Developer.com