‎2011 Mar 24 4:51 PM
We have recently switched our environment to HTTPS however some SAP code such as this:
-
FORM get_url USING p_application
CHANGING p_url.
DATA: lw_application_name TYPE string.
lw_application_name = p_application.
CALL METHOD cl_wd_utilities=>construct_wd_url
EXPORTING
application_name = lw_application_name
namespace = 'sap'
IMPORTING
out_absolute_url = p_url. "
ENDFORM. " GET_URL
-
calls the HTTP URL instead of the HTTPS URL.
Is there a way to change this globally so that call code calls the HTTPS value (with the correct port as defined in the ICM - i.e. 443)?
‎2011 Mar 25 8:27 AM