I am getting the error "Invalid data. No data could be found based on the required key fields passed in (18137, 1128 )". when i am accessing the "Add/Update a Person" or "Maintain Applications" or "Emergency Contacts" in 9.0 Under Campus Solutions Module .
Having the same problem here. Have checked out the address,ethnicity and telephone number info and they all look ok. are there other usual suspects for this issue?
Maybe it's an App Package doing something in the buffer that you can't see. A trace will help you find the PeopleCode that is causing the error. Try doing just an each statement PeopleCode trace to see where it gets to before the error occurs. A SQL trace may be helpful too.
The trace gave us CannotGetCIException HCR_PERSONAL_DATA_SRV. When this happened before the users personal data was corrupt, this time it does not "seem" to be that. Still looking at the log for any clues.
Nothing to do with changes to security to the HCR_PERSONAL_DATA_SRV component interface?
This SQL will tell you which permission lists have access:
select CLASSID from PSAUTHBUSCOMP where BCNAME = 'HCR_PERSONAL_DATA_SRV';
You can take it one step further to check if a user has security:
select * from PSOPRCLS where OPRCLASS in ( select CLASSID from PSAUTHBUSCOMP where BCNAME = 'HCR_PERSONAL_DATA_SRV' ) and OPRID = '<OPRID'>
The security is there, that was one of the first things I checked. When I run the CI Tester in Application Designer it fails on the get method with error "No matching buffer found for level. (15,26)" so we are looking for an orphaned record at this point.
