CSV connector configuration issue

Hi to all,

I'm working on the onDeman solution.

I have create a CSV connector for the users. Some fields are determined by templates, others by CSV connector. For example, I have the field "isExternal" that by default has the value "true", but in CSV file I want to overwrite it with the value "false". When I create the report with the simulation, the data seems correct. When I execute the connector, the fileds determined by template overwrite those in che CSV file. 

If I flag or not the "Data import" option in the WF settings the behavior is the same. 

Is it possible to load users through CSV connector by inserting data in the CSV file independently from templates, therefore without considering the templates?

Do you have any suggestion?

Thank you,

Martina

Parents Reply
  • I think this has something to do with your template which - I assume - has been detected has Default Value in combination with a set "Overwrites" flag.

    If so, you could change your template to (assuming you set the ImportSource value to "IMPORT" in the CSV sync).

    ' To avoid updates for the default value
    If Not $[IsLoaded]:Bool$ 
        If $ImportSource$ <> "IMPORT" Then    
            Value = True
        End If
    End If
    

    May I ask what the use-case for your default value is and what version of OneIM you are using?

Children