Hi Experts,
I have a BSP application where i have a link to the screen in another BSP application.
I have hardcoded the URL link.
When I tranported it to the test system, my server number changes. as i have hardcoded the URL, the link still specifies the screen in the development system.
Has anyone faced this type of issue. How to handle this.
Your inputs will be helpful.
Regards,
Gopal
Request clarification before answering.
search this forum for key word "construct bsp url"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
it doesn´t surprise me that the URL in test has changed and it will change when you move the code into the production, so why do you have to write a fixed URL in your application ?? this should be dynamic:
data: abs_url type string,
local_url type string.
call method runtime->construct_bsp_url
exporting
in_protocol = 'https' " give it a try
in_application = 'it00' " your target application
in_page = 'test.htm' " the page to be called
importing
out_local_url = local_url
out_abs_url = abs_url.
Local URL: /sap/bc/bsp/sap/it00/test.htm
Absolute URL: https://sap19230.os.fth.sbs.de/sap/bc/bsp/sap/it00/test.htm
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Raj,
Thanks, The issue is solved.
Regards,
Gopal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.