HI
I need to create a URL which is not for WD component but for some Service call.
CALL METHOD cl_wd_utilities=>construct_wd_url
EXPORTING
application_name = 'VF02'
namespace = 'SAP/ITS'
IMPORTING
out_absolute_url = lv_url. "HTTP://INGNRLMS002.TCSGNRODC.LOCAL:8000/sap/bc/webdynpro/sap/its/vf02
REPLACE 'webdynpro'
WITH 'gui'
INTO lv_url. "HTTP://INGNRLMS002.TCSGNRODC.LOCAL:8000/sap/bc/gui/sap/its/vf02
CONCATENATE lv_url '?sap-client=' sy-mandt
INTO lv_url. "HTTP://INGNRLMS002.TCSGNRODC.LOCAL:8000/sap/bc/gui/sap/its/vf02?sap-client=300
i dont want to use construct_wd_url .
Is There any functon module available to achieve the same?