cancel
Showing results for 
Search instead for 
Did you mean: 

adding value to the fiori URL

Former Member
0 Kudos

Hello all,

I am working on an application for user creation.First user will add all his details in the form and press submit.then the values is getting saved in table.

Now I want to send this for approval to HOD.

Once user Click submit it should trigger a mail which contains the URL.

HOD will click this URL He should see the watever values user entered by user.

http://**********************/sap/bc/ui5_ui5/sap/zusr_create/index.html?sap-client=600&sap-ui-langua...

this is is the url.Is it possible to carry detail of a particular user in URL?

Is it possible?

Thanks in Advance please help.

Accepted Solutions (1)

Accepted Solutions (1)

Qualiture
Active Contributor
0 Kudos

Not sure what you mean... you could include a hash in your URL with an ID, which upon load of your page retrieves the user details, but this is just simple web development

Do you have any specific requirements?

Former Member
0 Kudos

Hi robin thanks for rpl.

this application is for approval of new users system access.

User will register his details in one form.and once he click on submit.

one email should get trigger to the HOD containing the URL of that form.

Now problem is that if HOD is clicking on that link that page will get refreshed and watever details entered by user will be empty.

is their any solution for this so that HOD can check the details as well.

Qualiture
Active Contributor
0 Kudos

First, what is an HOD?

And secondly, if a user enters his details in a form, these will get stored somewhere in a backend system (erp, database, etc)

So when you request a page, you specify a unique ID which will retrieve that stored information

Former Member
0 Kudos

Hi robin

Head of any particular department(HOD).

Can we specify that Unique ID in the URL itself.So that whenever that person click on URL recieved in mail will show all the details in the same form that user have entered before.

Qualiture
Active Contributor
0 Kudos

Yes, of course, something like this http://www.yourdomain.com/yourapp/index.html?id=224F3C12DE6E11etc...

Using javascript/jQuery you retrieve the id parameter value from the URL, and use that id to get the stored data from your backend and fill your form accordingly

Former Member
0 Kudos

Ok it will be helpfull..

thanks robin.

Answers (0)