Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Pericator
Contributor III
Contributor III

URL Encoding in Table

Hello,

I am trying to put some URLs into a straight Table in QlikSense February 2020. It seems if the URL contains the '=' sign atleast two times, every following '=' after the first one will be encoded to %3D. E.g. I got following:

 

[URL]...index.pl?Action=AgentTicketZoom;TicketID='  & [TicketID]

This translates to 

[URL]...index.pl?Action=AgentTicketZoom;TicketID%3D[TicketID]

 

I also tried swapping so:

[URL]...index.pl?TicketID='  & [TicketID] & ;Action=AgentTicketZoom

translates to 

[URL]...index.pl?TicketID=[TicketID];Action%3DAgentTicketZoom

 

and as third possibility I tried encoding it with Chr:

[URL]...index.pl?Action=AgentTicketZoom;TicketID' & chr(61)  & [TicketID]

--> 

[URL]...index.pl?Action=AgentTicketZoom;TicketID%3D[TicketID]

 

Is there any known bug of multiple occurings of the same sign in one URL ? Anyone knows a Fix for this?

 

Thanks in Advance

Pericator

 

1 Reply
wospivus
Contributor
Contributor

Did you find a solution to this? I have the same problem.