Import opportunities with team assigned

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • office
    replied
    tnx, i add this formula to opportunities so if i import with user it assign also the teams:

    ifThen(
    entity\isAttributeChanged('assignedUserId') && assignedUserId != null,
    entity\addLinkMultipleId('teams', assignedUser.teamsIds)
    );

    Leave a comment:


  • heint
    replied
    Greetingsoffice,
    To automatically fill the Assigned team field while importing, you should export it in the right way, adding Teams to Field List:
    Click image for larger version

Name:	image.png
Views:	85
Size:	45.6 KB
ID:	119492
    or add specific Team manually on Step 2 of importing:
    Click image for larger version

Name:	image.png
Views:	60
Size:	15.5 KB
ID:	119493

    Leave a comment:


  • office
    started a topic Import opportunities with team assigned

    Import opportunities with team assigned

    There is any solution to import with assigned team already prefilled and selected? I see that only user can be exported also, not teams.

    if not i will try to aoutpopulate from assigned user: ifThen(
    !entity\isAttributeSet(this, 'teams'),
    teams = assignedUser.primaryTeam
    );
Working...