cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hide url Parameters

velsankar_sundar
Participant
0 Likes
3,715

Hi Team,

            Is it possible to hide the url parameters, when the gateway service is executed through UI5. For example from the below url is it possible to hide the parameter agencynum in the browser while it is passed to UI5.

/sap/opu/odata/IWFND/RMTSAMPLEFLIGHT/TravelagencyCollection(agencynum='00001756') .

View Entire Topic
sreehari_vpillai
Active Contributor
0 Likes

Hi , ,

Providing the key values in the GET operation is part of OData protocol, which can not be hidden in any case.But, you can try the below alternatives,

  • Encrypt the key from back end pass it to the front end so that customer never see the original key ( draw back is to create a mapping table with original key and encrypted key-remember routing in FIORI)
  • do POST instead of GET so that , no URL parameters are included. All the data will be in HTTP body

Sreehari

0 Likes

Hi sreehari,

I actually looked for this alternatives. Now its clear for me.

Thanks alot.

Regards,

S.Vikgnesh

sreehari_vpillai
Active Contributor
0 Likes

Welcome