cancel
Showing results for 
Search instead for 
Did you mean: 

BI4.1 Webi-SDK: Setting prompts in BEx-Query

Former Member
0 Kudos

Hallo everyone,

I have a problem, concerning the scheduling of webi-reports based on bex queries. Theses reports contains several prompts, but I can not get/set them the way I do it with prompts in "normal" queries.

My code works fine for standard webi queries:

Code:

IInfoObject webi = ...;
DocumentInstance doc = reportEngine.openDocument(webi.getID());
Prompts prompts = doc.getPrompts();

// fill the prompts etc

The last line in the snipplet "doc.getPrompts()" does return no prompts at all for bex queries. Is that a limitation in the SDK? And if so, is there an aternative way to get/set propmts?

Thx in advance!
Christian

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Christian,

Refer to SAP Note: 1746807 - BICS Connection - Prompts not exposed using Report Engine SDK

Thanks,

Prithvi

Former Member
0 Kudos

Hello Prithvi!

Thank you very much for the fast answer! I already noticed the possibility to read the prompts using the Enterprise SDK.

But what I need is to actually generate new reports / instances with bex prompts. Is there any way to do this? I think its not possible with the Enterprise SDK.. Do I really have to live with this limitation of ReportEngine SDK?

Thank you!