- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Passing multiple parameters in SAP BO Webi report
An open document URL is constructed as follow −
http://<servername>:<port>/OpenDocument/opendoc/<platformSpecific>?<parameter1>&<parameter2>&...&<parameterN>
With use of SAP Business Objects API, you can query each prompt- single value or multiple value. When you build URL, you may have to include parameter types.
You can join parameters with the ampersand (&) and you shouldn’t use space with & ampersand. Example − sType=wid&sDocName=Sales2003
https://URL_path/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&sType=wid&sRefresh=Y&iDocID=AUcrjvCCPOVHtSvXJV9Qs0k&lsMYBO_BU=B;B&lsSYBO_CALYEAR=201710&lsSYBO_CRNCY=USD
In this URL, you can see single value variable YBO_CALYEAR and value is passed in YYYYMM format
&lsSYBO_CRNCY=USD, you can see single value variable and I am passing value “USD”
When you run the report, you can define a report level variable or use report-level function to capture multiple values selected in the prompt using function UserResponse()
=UserResponse([Query_Name]; PromptName)
- Related Articles
- Handline #Multivalue Error in SAP BO Webi report
- Sorting Prompt values in SAP BO Webi report
- Apply sorting on Date in SAP BO Webi report
- Finding CUID in a SAP BO Webi report in Formula Editor
- Read a date filter as input in WEBI report in SAP BO
- How to find a constant in a string in SAP BO Webi Report
- Show creator name in SAP WEBI report
- Forcing SAP Webi report to show specific data
- Limit number of rows in Webi report in SAP BusinessObjects
- Displaying distinct values in a column filtered on other column in SAP BO report
- Creating a Dashboard from Webi Report
- Passing parameters to callback functions JavaScript
- CUID format in SAP BO Server Repository
- What are different methods of passing parameters in C#?
- Query for multiple parameters in MongoDB?
