cancel
Showing results for 
Search instead for 
Did you mean: 

How to keep track of the sequence of the BSP Pages being invoked.

Former Member
0 Kudos

Hi,

How to keep track of the sequence of the BSP Pages being invoked.

I have a BSP Page A.htm. There are two other pages B.HTM and C.HTM in the same BSP Application.

The page B.HTM has a link A.HTM. The page C.HTM also has a link A.HTM. On clicking these links the Page A.HTM would be invoked. Is there any way to keep track which BSP Page (i.e B.HTM or C.HTM) invoked the page A.HTM.

Any input on this Regard would be of great help.

Thanks and Regards,

Pavithra

Accepted Solutions (1)

Accepted Solutions (1)

former_member184111
Active Contributor
0 Kudos

Hi Pavithra,

Declare in page attributes:

appl_url type string

In the onClick event of the link that calls the A.htm page , use:

call method runtime->get_url
receiving
 URL = appl_url.

Now appl_url contains the url (also name) of the page that invoked A.htm .

Hope it helps.

Anubhav.

Answers (0)