Categories
- All Categories
- 70 Oracle Analytics News
- 6 Oracle Analytics Videos
- 13.9K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 38 Oracle Analytics Trainings
- 56 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 2 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
Need to find where the Certificate Number is in the Subject Area
Answers
-
Hi Pam,
SectionId is a mandatory attribute which you will need to pass. Also, please try adding DateFrom and DateTo fields as well.
SourceSystemId is fine. Please check if the source system owner exist in the HRC%SOURCE%SYSTEM% lookup.
Check the below link to find section id:
Thanks.
0 -
Thanks again Mandeep
I now am able to get the loader to work BUT it isn't updating an existing record - it is adding a new one
METADATA|ProfileItem|ContentItemId|ContentTypeId|ItemText2402|SourceSystemOwner|SourceSystemId|ContentType|ContentItem|ProfileCode|SectionId|DateFrom
MERGE|ProfileItem|300000002696418|103|123456|HRC_SQLLOADER|PP_929347_PERSON_LC1|PERSON_CERTIFICATION|APEGS|929347_PERSON|1901|2021/08/19
MERGE|ProfileItem|300000002696312|103|789012|HRC_SQLLOADER|PP_929347_PERSON_LC2|PERSON_CERTIFICATION|EGBC|929347_PERSON|1901|2021/08/19
Am I missing something else that will allow it to update the record instead of adding a new one
Also - do you know of a SQL query that could pull all of the pieces together (I am going to have to do a mass load and would like to run a report that gives me all the keys
Thanks
Pam
0 -
Hi Pam,
To update existing records,you will need to use the existing source system keys. For that you will need to query hrc_integration_key_map table.
Use below joins:
HRT_PROFILE_ITEMS HPI, HRC_INTEGRATION_KEY_MAP HIKM, HRT_PROFILES_B HPB
WHERE HIKM.SURROGATE_ID = HPI.PROFILE_ITEM_ID
AND HPI.PROFILE_ID = HPB.PROFILE_ID
You can check the sample queries at below link:
http://fusionhcmconsulting.com/2021/02/reports-bip-query-to-get-content-item-details/
Thanks.
0 -
Hi Mandeep,
Thank you for all of the help. I have gotten the loader to work for those records that need to be updated.
When Inserting a new record, what Source System Id do I use or can I have the loader generate this key?
Pam
0