cancel
Showing results for 
Search instead for 
Did you mean: 

URL (more than 255 characharistics) open as external window

former_member229026
Participant
0 Kudos

HI Experts,

For open URL as externla window. I am using CALL METHOD lo_window_manager->create_external_window

here URL passing parameter is string, it allows only 255 chracteristics.

But In my scenario i need to pass more than 255 to 500 characteristics

So any one can sugget how to pass more than 255 characteristics URL?

Regards,

BBC

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos
former_member229026
Participant
0 Kudos

Hi,

I have declared 500 characteristics field and bind to UI Element Link To URL and it is allowing more than 255 characteristics URL,

But here '{, }' are not reading from URL, it goes to dump as UNCAUGHT_EXCEPTION.

like : HTTP://TEST.SERVER.COM/SITES/IT/ITSD/FORMS/ALLITEMS.ASPX?ROOTFOLDER=%2FSITES%2FIT%2FITSD%2FBUSINESS%...{73DE0F40-C3B9-4DFC-ABE5-5CF3B32C61BB}

is there any reason?

Regards,

BBC

Former Member
0 Kudos

Hi ,

For character { the URL encoding is %7B .


For encoding, you can refer this URL Encoding Reference


Thanks

KH

0 Kudos

This limitation is due HTTP GET method, and is not related with WebDynpro. You'll need to use HTTP POST method (that has no limits) instead. But this will affect your system being called by the URL.