I need to pass and pre populate the fields in the Lotus Notes Client.I am calling the following script from web to open a from in Notes Client
location.href=“notes://server1//Biby/RoomReservations.nsf/test?Openform&test=biby”
test form is loading fine. But I want to get the parameter …in LOTUS NOTES CLIENT, not in web.
Please help
Subject: Passing Parameter to Lotus Client form
Biby,
Can’t be done.
You can’t mix and match platforms. Either it is a web application, which by definition runs in a web browser, or it is a Notes application running in the Notes client.
Ken
Subject: Passing Parameter to Lotus Client form
So the web client is starting the notes client OK? Cool. (Never tried it).
I’ve never tried to do such a thing, in the test form is there a Query_String field. Does it have a value? when called this way? If so you could pull the value from it.
Alternatively, you could change your code to create a test document in the backend in the other database and then open that document in edit mode.
Subject: RE: Passing Parameter to Lotus Client form
Thank you.