Skip to Content
0
Aug 29, 2023 at 04:19 PM

Webi RESTful Prompting a HANA Variable with Conditional Values

163 Views Last edit Aug 29, 2023 at 04:26 PM 2 rev

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

conditional-prompt.png

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>

"@

Attachments