Topic Options
Rate This Topic
#134092 - 03/23/06 12:39 AM Direct Access URL Qualification retrieval
radhika_narayanan Offline
newbie

Registered: 03/23/06
Posts: 3
**
Hi,

I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,
there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.

The problem is , how do I read the qualification string in the Active Link.

http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22

Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.

Any ideas ? Thanks in advance.

Radhika
LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it

Top
#134093 - 03/23/06 12:46 AM Direct Access URL Qualification retrieval [Re: ag33e27]
radhika_narayanan Offline
newbie

Registered: 03/23/06
Posts: 3
**
Hi,


I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,
there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.

The problem is , how do I read the qualification string in the Active Link.

http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22

Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.

Any ideas ? Thanks in advance.

Radhika
LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it

Top
#134094 - 03/23/06 01:57 AM Re: Direct Access URL Qualification retrieval [Re: ag33e27]
craig_carter Offline
journeyman

Registered: 03/09/05
Posts: 129
**

I’m not sure why you are passing a qualification if there is no matching case ID. If there is, you should use the EID parameter.



If you just want to open a display only form in search mode and pass in a value you can use for Active Links, use an F(field id) parameter instead with the field you want populated with the case ID. Once opened, you can perform active links, etc using this field to load the other values.



//SIGNED//

CRAIG J. CARTER



From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Narayanan, Radhika
Sent: Thursday, March 23, 2006 5:46 AM
To: arslist@ARSLIST.ORG
Subject: Direct Access URL Qualification retrieval



Hi,



I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,

there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.



The problem is , how do I read the qualification string in the Active Link.



http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22



Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.



Any ideas ? Thanks in advance.



Radhika

LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it 20060125This posting was submitted with HTML in it

Top
#134095 - 03/23/06 02:03 AM Re: Direct Access URL Qualification retrieval [Re: ag33e27]
james_mckenzie1 Offline
journeyman

Registered: 03/14/06
Posts: 133
**

Radhika:

You have to URL encode the plus (+) sign in the qual or it should not get passed to the next step. This was recently discussed and should be available through the archives.

James McKenzie
-----Original Message-----
From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG]On Behalf Of Narayanan, Radhika
Sent: Thursday, March 23, 2006 5:40 AM
To: arslist@ARSLIST.ORG
Subject: Direct Access URL Qualification retrieval


**
Hi,

I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,

there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.

The problem is , how do I read the qualification string in the Active Link.

http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22

Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.

Any ideas ? Thanks in advance.

Radhika
LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it

20060125This posting was submitted with HTML in it

Top
#134096 - 03/23/06 02:55 AM Re: Direct Access URL Qualification retrieval [Re: ag33e27]
radhika_narayanan Offline
newbie

Registered: 03/23/06
Posts: 3
**
Hi,

Could you please guide me a little more on this ?

If I use a Set Fields action on Window Loaded Active Link on this display-only form, should I use something like

Fieldname=$F230000007$

assuming 230000007 is the database Id of Case ID. Or should I use F230000007 in the URL ? Please let me know. Thanks.

Radhika
Direct : +44 20718 20262
Extn : 20262

-----Original Message-----
From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG]On Behalf Of Carter, Craig J Civ ARPC/DPD
Sent: 23 March, 2006 7:27 PM
To: arslist@ARSLIST.ORG
Subject: Re: Direct Access URL Qualification retrieval


**

I’m not sure why you are passing a qualification if there is no matching case ID. If there is, you should use the EID parameter.



If you just want to open a display only form in search mode and pass in a value you can use for Active Links, use an F(field id) parameter instead with the field you want populated with the case ID. Once opened, you can perform active links, etc using this field to load the other values.



//SIGNED//

CRAIG J. CARTER





From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Narayanan, Radhika
Sent: Thursday, March 23, 2006 5:46 AM
To: arslist@ARSLIST.ORG
Subject: Direct Access URL Qualification retrieval



Hi,



I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,

there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.



The problem is , how do I read the qualification string in the Active Link.



http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22



Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.



Any ideas ? Thanks in advance.



Radhika

LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it 20060125This posting was submitted with HTML in it

20060125This posting was submitted with HTML in it

Top
#134097 - 03/23/06 03:38 AM Re: Direct Access URL Qualification retrieval [Re: ag33e27]
craig_carter Offline
journeyman

Registered: 03/09/05
Posts: 129
**

What you do is pass in the field values on the URL. When the form opens, you can then use your active links to set other fields based on these values. Below is a sample jsp forward (fill in the xxxx values as appropriate):

















This opens the form and fills in the field with the passed value(s). On Window Loaded, you can use those values to retrieve the others you need for your form. You can pass in multiple field values this way by just listing the extra F parameters. You can do this as a URL like you have below or as a JSP redirect file. The &F parameter is the field name on the display only form you want to populate with the passed value. You can pass in the value using $xxx$.



There was a problem with Patch 13 that wouldn’t allow these values to be passed in when also using the “mode=submit” parameter. If you are not on patch 13 or are not using the mode parameter, you won’t run into this problem as I believe it was fixed in the next patch.



Based on what you have below, it’s probably something like:



http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&FXXXXXX=$Case ID$



Regards,



//SIGNED//

CRAIG J. CARTER



From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Narayanan, Radhika
Sent: Thursday, March 23, 2006 7:55 AM
To: arslist@ARSLIST.ORG
Subject: Re: Direct Access URL Qualification retrieval



Hi,



Could you please guide me a little more on this ?



If I use a Set Fields action on Window Loaded Active Link on this display-only form, should I use something like



Fieldname=$F230000007$



assuming 230000007 is the database Id of Case ID. Or should I use F230000007 in the URL ? Please let me know. Thanks.



Radhika
Direct : +44 20718 20262
Extn : 20262

-----Original Message-----
From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG]On Behalf Of Carter, Craig J Civ ARPC/DPD
Sent: 23 March, 2006 7:27 PM
To: arslist@ARSLIST.ORG
Subject: Re: Direct Access URL Qualification retrieval

**

I’m not sure why you are passing a qualification if there is no matching case ID. If there is, you should use the EID parameter.



If you just want to open a display only form in search mode and pass in a value you can use for Active Links, use an F(field id) parameter instead with the field you want populated with the case ID. Once opened, you can perform active links, etc using this field to load the other values.



//SIGNED//

CRAIG J. CARTER





From: Action Request System discussion list(ARSList) [mailto:arslist@ARSLIST.ORG] On Behalf Of Narayanan, Radhika
Sent: Thursday, March 23, 2006 5:46 AM
To: arslist@ARSLIST.ORG
Subject: Direct Access URL Qualification retrieval



Hi,



I give a direct access URL opening a display-only form in the Search Mode with a qualification. Since there is no data in the display-only form,

there's an active link executing on Window Loaded to retrieve values from another form based on the qualification string passed in the URL.



The problem is , how do I read the qualification string in the Active Link.



http://localhost/arsys/servlet/ViewFormServlet?server=ServerName&form=Formname&username=user&pwd=pass&qual=%27Case+ID%27%3D%22OSD0000483748%22



Now the value of Case ID - "OSD0000483748" is not available in $Case ID$ to be used in Active Links.



Any ideas ? Thanks in advance.



Radhika

LogicaCMG



This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.

20060125This posting was submitted with HTML in it 20060125This posting was submitted with HTML in it

20060125This posting was submitted with HTML in it 20060125This posting was submitted with HTML in it

Top