This repository was archived by the owner on Jun 16, 2026. It is now read-only.
Description Hello,
In order to get wrapper working had to edit URL's like this:
FROM:
self .urlExportNamespaces = "https://" + tenantName + "." + dataCenter + ".hcs.cloud.sap/api/v1/dataexport/administration/Namespaces"
self .urlExportProviders = "https://" + tenantName + "." + dataCenter + ".hcs.cloud.sap/api/v1/dataexport/administration/Namespaces(NamespaceID='sac')/Providers"
self .urlExportProviderRoot = "https://" + tenantName + "." + dataCenter + ".hcs.cloud.sap/api/v1/dataexport/providers/sac"
self .urlImportModels = "https://" + tenantName + "." + dataCenter + ".hcs.cloud.sap/api/v1/dataimport/models"
self .urlImportJobs = "https://" + tenantName + "." + dataCenter + ".hcs.cloud.sap/api/v1/dataimport/jobs"
TO:
self .urlExportNamespaces = "https://" + tenantName + "." + dataCenter + ".sapanalytics.cloud/api/v1/dataexport/administration/Namespaces"
self .urlExportProviders = "https://" + tenantName + "." + dataCenter + ".sapanalytics.cloud/api/v1/dataexport/administration/Namespaces(NamespaceID='sac')/Providers"
self .urlExportProviderRoot = "https://" + tenantName + "." + dataCenter + ".sapanalytics.cloud/api/v1/dataexport/providers/sac"
self .urlImportModels = "https://" + tenantName + "." + dataCenter + ".sapanalytics.cloud/api/v1/dataimport/models"
self .urlImportJobs = "https://" + tenantName + "." + dataCenter + ".sapanalytics.cloud/api/v1/dataimport/jobs"
In short, changed ".hcs.cloud.sap" to ".sapanalytics.cloud".
Might be useful for someone struggling to get this working.
Reactions are currently unavailable
Hello,
In order to get wrapper working had to edit URL's like this:
FROM:
TO:
In short, changed ".hcs.cloud.sap" to ".sapanalytics.cloud".
Might be useful for someone struggling to get this working.