I'm trying to prompt a report where the HANA variable is conditional.

This works for prompting the single value of fiscal year, which is a HANA input parameter.
[xml]$newNode = @"
<values>
<value type="String">202320</value>
</values>
"@
When I try this for the Sales Org, I get a "An internal error occurred while calling 'answerPromptsEX' API"
Here’s what I’ve been attempting.
[xml]$newNode = @"
<values>
<condition operator="Equal">
<value type="String">0123</value>
</condition>
</values>
"@