Table connection > Hyperlink of type custom jump > non-numeric ID field causing error: Bad Request

Hello,

I added a new table connection called 'Customer' from a custom database. This is automatically converted to a secondary entity in customization section.

This table contains some data, fields and an ID field called 'sn_account' of type varchar.

When creating a custom list for the entity called 'Customer' with hyperlinks of type 'Custom Jump' and providing a custom asp page along with my ID field a query string called 'Key58' is added containing an ID value Ex: 'ANA0012'.

This is causing an error message saying : Bad Request.

I noticed that if i replace the value of Key58 query string (containing ANA0001) in my URL with a numeric value only EX: 123

Ill get my ASP page with no error messages. or if i remove this query string and create my own query string EX: sn_account=ANA0001.

Is it possible to remove this query string and or replace it with my custom query string called "&sn_account=ANA0091" ?

If so how?

Any suggestion are welcome.

  • 0

    Dear Michal,

    This seems to be strange. Never had any issues in passing the string values in URL. Ideally it should work properly. What I suspect is that this ID value is processed on your summary page and that processing is raising an issue. Remove all the code from your Summary page and just add below 2 lines.

    Response.Write(Request.QueryString(“sn_account”))

    Response.End()

    Once this is done check whether functionality works properly and you get the ID value.

    Regards,

    Dinesh