How do I update Active Directory attribute streetAddress to use two lines?

Please consider addressing the following when creating your topic:

  • What have you tried?
    • I found that the PowerShell command uses back-tic(n)back-tic(r) to create a new line when updating the attribute. I found another method is \n\r to add a new line. Neither of these methods worked when updating an account attribute streetAddress in Active Directory.
  • What errors did you face (share screenshots)?
    • I do not get any errors. The extra characters are present.
  • Share the details of your efforts (code / search query, workflow json etc.)?
    • Searching for sailpoint identitynow set streetaddress with line break
  • What is the result you are getting and what were you expecting?
    • I am expecting some sequence of characters to create a new line. What kind of calls does IIQService make to Active Directory when updating attributes of Identity Security Cloud?

Thanks,
Kyle

Can you try \\n\\r?

@KyleTuffentsamer you can use after rule to trigger the powershell code in iqservice

sample as below

image

Shantanu,
Thank you for the advise. We can work on getting the ability to run rules.

Thank you,
Kyle

The answer for me is in SQL to use CHAR(13) + CHAR(10) for a line split.

SELECT ‘First line’ + CHAR(13) + CHAR(10) + ‘Second line’ AS MultiLineString;

Thank you Roberto for the information.

Thanks,
Kyle

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.