cancel
Showing results for 
Search instead for 
Did you mean: 

Open Doc syntax using Universe Data source?

chandrasekhar6
Participant
0 Kudos

Hi,

How to create open doc syntax.

I have universe data source contains year,state and sales revenue.

I select year =2015 in Design studio application and open Year =2015 related state records in webi report.

How to link Design studio and Webi.

Thanks

sekhar

Accepted Solutions (1)

Accepted Solutions (1)

TammyPowlas
Active Contributor
0 Kudos

At the bottom of this thread - https://blogs.sap.com/2014/12/17/passing-date-range-to-a-webi-report-from-design-studio-via-opendoc-...

The opendoc syntax going from Design Studio to Web Intelligence appears to have another parameter than what you have - Refresh - perhaps compare?

chandrasekhar6
Participant

Thank you so much Tammy!!!

My issue solved.

chandrasekhar6
Participant
0 Kudos

Hi Tommy,

I try to used below script for open doc syntax,

state_text= CHART_1.getSelectedMember("OBJ_218").text; var newurl="http://servername:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AUFR1QOfTkRNjG85YG4U0SE"+ "&lsMEnter value(s) for State="+state_text; APPLICATION.openNewWindow(newurl);

The above script working successfully with single prompt selection.

Is it any possible way to connect multiple prompts selection: like suppose I have select two states then show two related data in webi report.

Please share share valuable inputs.

Thanks,

sekhar

TammyPowlas
Active Contributor
0 Kudos

Hi - as this is a closed question, please create a new thread for this question so the community may better assist you. Thank you

Answers (2)

Answers (2)

chandrasekhar6
Participant
0 Kudos

Hi All,

I tried below script in crosstab but only open Webi report.

I need only particular state related revenue only.

state_key= CROSSTAB_1.getSelectedMember("OBJ_218").internalKey;

state_text= CROSSTAB_1.getSelectedMember("OBJ_218").text; var newurl="http://servername:8080/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AUFR1QOfTkRNjG85YG4U0SE&sType=wid&lsS=OBJ_218"+state_text+"&lsT=OBJ_218"+state_key; APPLICATION.openNewWindow(newurl);

using this link: https://www.youtube.com/watch?v=HBrjwZ0vgAw

please share your valuable inputs

Thanks

sekhar

TammyPowlas
Active Contributor
0 Kudos

Are you getting an error in Design Studio with it? What happens?

chandrasekhar6
Participant
0 Kudos

Hi Tammy

Not getting any error in design studio scripting, but I used above script in output click on Crosstab it opens overall webi report.

for example in design studio contains state related records, when I click on California state then california related records shown in webi,

I need output,

but I get a result in webi as shown below,

Thanks,

sekhar

TammyPowlas
Active Contributor
0 Kudos

OK, I assume the first part is your sending application; what have you put in your receiving application?

TammyPowlas
Active Contributor
0 Kudos

I'm guessing that the Web Intelligence report will need the same variable names to "receive" it from Design Studio?

I see the video you are using is from a BEx query

chandrasekhar6
Participant
0 Kudos

Hi Tammy

Thanks for response.

No,I'm using universe(ODBC connection) as data source

TammyPowlas
Active Contributor
0 Kudos

Understood, Chandra, but is Web Intelligence set up to "receive" the same variables/prompts/values that you are sending from Design Studio? That was my question

chandrasekhar6
Participant
0 Kudos

Same values using in webi report.

TammyPowlas
Active Contributor
0 Kudos