Hi,
When i am trying to add two more url links for POI, I am getting an error saying "unidentified imput" as below.
My url link is below:
="iDocID=AUkUm1fWowNLqyN8aQmZEXA&sIDType=CUID&sType=wid&sReportName=Sales Person Summary&sReportPart=;SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11&lsSLocation="+[State]||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
How can I append multiple url links to display multiple report parts in POI selection using ||?
Regards
Ram
Hi,
If || is not supported in webi then why does SAP given information about the usage of it?
I think somewhere we are missing and SAP in Admin & Report Design Guide has elaborated this with an example.
Does anyone worked on the above logic and succeeded?
Regards
Ram
Hi Ram,
Try below and see if it works.
="iDocID=AUkUm1fWowNLqyN8aQmZEXA&sIDType=CUID&sType=wid&sReportName=Sales Person Summary&sReportPart=;SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11&lsSLocation="+[State]||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
||"iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
||"iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
If the above has issues, you can use semi colon seperator and the replace it with ||
Popup="iDocID=AUkUm1fWowNLqyN8aQmZEXA&sIDType=CUID&sType=wid&sReportName=Sales Person Summary&sReportPart=;SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11&lsSLocation="+[State]||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
;"iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
;"iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
=Replace([Popup];";";"||")
Thanks
Mallik
Hello RAM,
I think the main problem is that you are missing some language symbols on the url (+"), after the parameter's value, and putting addicional one (") after the "||".
Your url:
="iDocID=AUkUm1fWowNLqyN8aQmZEXA&sIDType=CUID&sType=wid&sReportName=Sales Person Summary&sReportPart=;SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11&lsSLocation="+[State]||="iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
Woud be something like:
="iDocID=AUkUm1fWowNLqyN8aQmZEXA&sIDType=CUID&sType=wid&sReportName=Sales Person Summary&sReportPart=;SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11&lsSLocation="+[State]+"||iDocID=Abpoph9Z8hhIqrVa5KppgMw&sIDType=CUID&sType=wid&sReportName=Sales Person Details&sReportPart=Block 1&lsSLocation="+[State]
Another concern is the ReportName and ReportPart... I could not manage to make it work with spaces and/or scorecards codes (like: SC_GF_C_5;SC_GF_Rolling 12 Months_C_6_11).
I hope this works for you!
Regards,
Fernando
Add a comment