cancel
Showing results for 
Search instead for 
Did you mean: 

Global script variable not passing values through URL after upgrade

vijaymuniraj
Active Participant
0 Kudos

Dear Experts,

- Global script variable is not working after upgrade from DS 1.6 sp0 to DS 1.6 sp5 patch3.

- Still it is working with DS 1.6 sp0

- As i checked the code, all are correct as it is working with DS 1.6 sp0

APPLICATION.openNewWindow("/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=FvnL6VrEewgACSgAAABncHAgAFBWqlUM&designersessionid=10b40de5e3d849c18fd11736e8988ba4&X_LP_VIEW="+G_VIEW+"&X_LP_TAB="+G_TAB+"&X_NvB="+G_NVB);

Anyone faced similar issue? Appreciating your help.

Thanks

J

TammyPowlas
Active Contributor
0 Kudos

Hi - do you receive an error or it just doesn't work? Which version of the BI platform are you using?

vijaymuniraj
Active Participant
0 Kudos

Hi Tammy,

I have written this coding on "On click" of text component. When i click on it, nothing is happening but if I removed global variable from URL, I'm able to open the report.

We are using Design studio 1.6 SP5 patch3 now. (it is still working with 1.6 SP0)

Accepted Solutions (0)

Answers (1)

Answers (1)

vijaymuniraj
Active Participant
0 Kudos

Hello All,

I got this resolved filling blank space by %20 on variable value. For example,

G_VIEW="Major Category" (didn't work after upgrade)

G_VIEW="Major%20Category" (It worked)

It is URL encoding issue which is not considering blank space on values. I'm still wondering that it is working on lower version but not on higher version.

Note: G_VIEW is global variable

Thanks

Vijai Muniraj