A new Flexera Community experience is coming on November 25th. Click here for more information.
I’m creating an custom LDAP business adapter for importing various active directory user attributes. I’m struggling with the following items:
Thnx!
Sep 30, 2019 08:32 AM
Hi @mremkes
The short answer is you need to do this in two steps:
1. Stage your data and normalise it
2. Import to FNMS via a business adapter
To answer your specific questions:
1. Assuming you are staging data in SQL, there are a number of links on google for changing sentence case in a field. This one is simple:
UPDATE titles SET title = UPPER(LEFT(title, 1)) + LOWER(RIGHT(title, LEN(title) - 1))
2. Refer to the user.xml DDI. You will see that you can first pass teh manager name to the system to get a manageroutid which you then use to update the users manager value.
3. You can stage the data in an sql table, normalise it. Or you can write a case statement in your SQL that you select the data out in.
4. Assuming you are referring to employment status - current vs ex employee - then the userstatus field can be done as with 3 above.
Regards
Sep 30, 2019 08:54 AM
Attached is a sample adapter that works with FlexNet Manager Suite On-premises (not Cloud) to import user data from Active Directory. This adapter illustrates handling of some similar (but a little different) scenarios as discussed in this thread:
Hopefully these examples give inspiration on how to go about handling the particular properties you are working with.
If you are working with FlexNet Cloud then you would need to stage and transform data locally as @Nico_Erasmus has suggested before your business adapter runs to achieve similar outcomes.
Sep 30, 2019 07:30 PM
Hi @ChrisG ,
I'm trying to implement the solution you provided. As soon as I use the ValueType = "SQL" in the xml file, the excution of the adapter will fail with:
'SQLValue attribute found in DDI file C:\ProgramData\Flexera Software\Beacon\IntermediateData\BI_Import AD Users\ddi.xml.'
Also when I try to use the 'Use Physical table' option, the execution of the adapter will fail with:
'UsePhysicalTable attribute found in DDI file C:\ProgramData\Flexera Software\Beacon\IntermediateData\BI_Import AD Users\ddi.xml.'
Apparently I'm missing something here...
Oct 02, 2019 04:06 AM
These messages suggest that you are attempting to run the adapter on a beacon here in a "standalone" fashion which does not connect directly to the compliance database while the adapter is running. An adapter using the features you are trying to use should be executed on the FlexNet application server, where it will be able to connect to the compliance database as it is running.
Oct 02, 2019 04:21 AM
In addition to the last update by Chris, if you have FNMS Cloud, then you cannot include native SQL commands in a Business Adapter as for obvious reasons we cannot allow you to upload direct SQL commands to our hosted database.
If you have FNMS Cloud, then the best solution would be the one that was previously mentioned in this thread, which would be to load your AD information into a Staging Database, transform the data in the Staging DB with SQL, and then write a Business Adapter connected to your Staging DB as the source and then upload to FNMS Cloud.
Kirk
Oct 02, 2019 07:36 AM
Thank you for your answer. I was hoping I could resolve this without using the staging database. As we are using the FlexNet Manager Suite On-premises I’m first going to investigate the solution provided by @ChrisG before diving into staging databases.
Oct 02, 2019 03:37 AM