I'm trying to use this but I can't get it to work correctly.
Where am I going wrong?
Scenario:
Relationship: Case <> Meeting
Field: "DueDate" will have ID of the Meeting
This was my original code, it perfect. It will create a Meeting call Due Date, and it will then get the ID of the meeting and store if in field call DueDate. The problem arise when I want to assign a team to it. I tried various method, two example that I thought it would work but it doesn't below:
Some link for your reference:
So... how do we use this? It not problem adding the teams ID to the current entity, but how would I do it for other entity.
Where am I going wrong?
Scenario:
Relationship: Case <> Meeting
Field: "DueDate" will have ID of the Meeting
Code:
DueDateID= record\create('Meeting', 'name', 'Due Date')
Code:
DueDateID= record\create('Meeting', 'name', 'Due Date', entity\addLinkMultipleId('teams', 'idhere123') ) // fail DueDateID= record\create('Meeting', 'name', 'Due Date', teamuserIds, entity\addLinkMultipleId('teams', 'idhere123') ) // fail // Even tried this way by doing this 'update' afterward. record\update('Meeting', DueDateID, entity\addLinkMultipleId('teams', 'idhere123'));
Some link for your reference:
So... how do we use this? It not problem adding the teams ID to the current entity, but how would I do it for other entity.
Comment