I have created Oracle JDBC system (user mapping also) using system admin in portal and tested my connection. Now trying to get mapped user info using UME API's. Below are the steps I am following
ISystemLandscapeObject sysObj = systemLandscape.getSystemByAlias("xxxxxxxxxxx");
IUserMappingData mapData = userMapping.getUserMappingData(sysObj, user);
Properties jcoProperties = new Properties();
mapData.enrich(jcoProperties);
when check jcoProperties getting below responses
jcoProperties.getProperty(IUserMappingData.UMAP_USER) - null
jcoProperties.getProperty(IUserMappingData.UMAP_PASSWORD) - null
jcoProperties.getProperty(IUserMappingData.UMAP_JCO_USER) - $MYSAPSSO2$
jcoProperties.getProperty(IUserMappingData.UMAP_JCO_PASSWORD) - encrypted password
Why my UMAP_USER and UMAP_PASSWORD are null? How to get Oracle JDBC system mapped user info?