In Classic all Generated CV's are stored on the object 'cxsrec__cxsAttachment__c'. In Lightning the generated CV's will be stored and referenced on the object 'cxsrec__cxsGenerated_CV__c'. In order to have to already existing Generated CV's available in Lightning a single migration has to take place.
Please follow the steps below:
- Export all records from cxsrec__cxsJob_application__c. Use this SOQL Query in Data Loader/Workbench or any other data export tool:
SELECT Id, Name, cxsrec__CV_generator_data__c, cxsrec__CV_generator_template__c, cxsrec__Candidate__c, Createddate FROM cxsrec__cxsJob_application__c WHERE cxsrec__CV_generator_template__c != Null - Retreive the .csv from the export and add one extra columns:
- cxsrec__GeneratedCV_Status__c -> Make sure all records have the value ‘Published’ - Insert the .csv via Data Loader/Workbench or any other data insert tool.
- Insert on the object ‘cxsrec__cxsGenerated_CV__c’.
Use the field mapping below or the mapping .sdl attached to this article:
cxsrec__cxsJob_application__c |
cxsrec__cxsGenerated_CV__c |
Name |
cxsrec__Label__c |
cxsrec__CV_generator_data__c |
cxsrec__Generated_CV_Data__c |
cxsrec__CV_generator_template__c |
cxsrec__CV_generator_template__c |
Id |
cxsrec__Job_application__c |
cxsrec__Candidate__c |
cxsrec__Candidate__c |
cxsrec__GeneratedCV_Status__c |
cxsrec__GeneratedCV_Status__c |
Createddate In order to modify the created date of inserted record please follow the steps mentioned in this link.
|
Createddate |