Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Sav4Sav userImport job failure

yash
New Contributor
New Contributor
Issue: While running the import user job for the Sav4Sav connector we are getting the below error message
 
Error: Ambiguous method overloading for method java.lang.String#. Cannot resolve which method to invoke for [null] due to overlapping prototypes between: [class [B] [class [C] [class java.lang.String]
 
Below is the ImportUserJSON
{
"call": [
{
"connection": "userAuth",
"url": "https://####/ECM/api/v5/fetchRuntimeControlsData",
"httpMethod": "POST",
"httpContentType": "application/json",
"httpParams": "{\"analyticsname\":\"queryreport\"}",
"userResponsePath": "result",
"httpHeaders": {
"Authorization": "${access_token}",
"Accept": "application/json"
},
"colsToPropsMap": {
"username": "username~#~char",
"customproperty12": "customproperty12~#~char"
}
}
]
}
7 REPLIES 7

NM
Esteemed Contributor
Esteemed Contributor

Hi @yash , try adding alias in column and then map the same in json.


If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'

yash
New Contributor
New Contributor

Hi @NM i have given alias only see the below query

select us.username as username, 'yes' as customproperty12 from users us inner join user_accounts uac on us.userkey = uac.userkey inner join accounts ac on uac.accountkey = ac.accountkey inner join endpoints en on ac.endpointkey=en.endpointkey inner join customer_users cus on us.userkey = cus.userkey inner join customer cu on cu.customerkey = cus.customerkey

but still getting the error

rushikeshvartak
All-Star
All-Star

Refer https://forums.saviynt.com/t5/identity-governance/unable-to-populate-usercustomproperty-based-on-sav...


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Hi @rushikeshvartak i have followed the same post and still getting the error

In version 24.5 while creating the runtime analytics its creating v1 report, which is giving me proper output in the postman

Can you share data analyzer screenshot of report configuration and output

select * from analyticsconfigses


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

NM
Esteemed Contributor
Esteemed Contributor

Add this in SQL query and then give it a shot

select us.username as UserName, 'yes' as CUSTOMPROPERTY12 from users us inner join user_accounts uac on us.userkey = uac.userkey inner join accounts ac on uac.accountkey = ac.accountkey inner join endpoints en on ac.endpointkey=en.endpointkey inner join customer_users cus on us.userkey = cus.userkey inner join customer cu on cu.customerkey = cus.customerkey


If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'

yash
New Contributor
New Contributor

i did updated the query now but still the same error