Skip to main content
Solved

Job migration of Business Opportunity - Note issue

  • January 18, 2022
  • 3 replies
  • 175 views

Forum|alt.badge.img+10
  • Hero (Customer)
  • 98 replies

Hi, 

I am unable to migrate Note field from my excel migration sheet into Business Opportunities.

I know there is a function called BUSINESS_OPPORTUNITY_API.Write_Note_ but not sure how to use it .

Thanks for your advice.

 

 

 

 

 

 

Best answer by TKUKGILESTK

 

Here is a screenshot from a migration job where we used this function, we used the file migration first though. From what I remember this is documented in the technical documentation and they use the business opportunity as the example.

 

 

 

3 replies

ZTC ZTC JGOTA
Hero (Customer)
Forum|alt.badge.img+14
  • Hero (Customer)
  • 235 replies
  • January 18, 2022

Hello @NMALKI 

It supposes to work. I tried, and it worked for me.

Try to migrate five records and see if there is a character breaking the migration from the notes. 
 
The other workaround is to migrate using code, building a code with arrays. You need an array with the BO and another one with your notes, and the code will have a cursor to select OBJID and OBJVERSION per each business opportunity, and you pass the values per index to the API
BUSINESS_OPPORTUNITY_API.Write_Note__(OBJVERSION, OBJKEY, ‘YOUR NOTES’);
commit;

I hope this helps!
JL
 


Forum|alt.badge.img+6
  • 15 replies
  • Answer
  • January 18, 2022

 

Here is a screenshot from a migration job where we used this function, we used the file migration first though. From what I remember this is documented in the technical documentation and they use the business opportunity as the example.

 

 

 


Forum|alt.badge.img+10
  • Author
  • Hero (Customer)
  • 98 replies
  • January 18, 2022

Thanks a lot everyone , yes it works