An updated question with additional information as a solution is not applicable.
Sorry, I will have to ask this question again. My goal is to implement some TFS automation for the Assigned To field. This field must be filled with some values ββin the module and category fields.
Is there a way to create an AND operator in the TFS XML interface that can handle this? I asked this question a couple of months ago and got an answer. Unfortunately, I did not have time to realize it because of several objects that went down the pipe. When I tried to implement the solution and when importing WIT, TFS would throw "WHEN", it has a child element error of "WHEN".
Example:
If "Module" field = value X and "Platform" field = value Y, then "Assigned to" field is set to specific user
This solution does not work:
<FIELD name="QA Owner" refname="<QAOwnerFieldReference>" type="String">
<VALIDUSER />
<WHEN field="<ModuleReferenceName>" value="Compliance">
<WHEN field="<AnotherFieldName>" value="SomeValue">
<DEFAULT from="value" value="<QATester>" />
</WHEN>
</WHEN>
</FIELD>
I have an idea if it is possible to merge the second condition "WHEN" with the first, for example:
<WHEN field="<ModuleReferenceName>" value="Compliance" && WHEN field="<AnotherFieldName>" value="SomeValue">
Link to previous post: Assigning users to TFS if two fields have specific values
source share