Mar 21, 2023
01:32 PM
2 Kudos
There is a similar discussion found here: https://community.flexera.com/t5/FlexNet-Manager-Forum/O365-token-generation-quot-interaction-required-quot-error/m-p/132054/highlight/true#M4702 where a link to the Microsoft site with the necessary information is included.
https://docs.microsoft.com/en-us/office365/enterprise/urls-and-ip-address-ranges
... View more
Oct 05, 2022
01:39 PM
2 Kudos
This appears to be a documentation oversight (not a fault of our documentation team but of the engineering team for not letting the documentation team know that an update was needed).
Some objects in the UI will not be usable for custom properties such as those that have the Search ability like the 'Category' control that is directly above 'Hosted In' on the Inventory Device Properties page.
For 'Hosted In' and others controls not in the documentation you can try to find the needed information using the web browser developer tools (typically they open when you hit F12) where you will find the name of the control in question is 'CloudServiceProviderID'.
You can try using this and test it out to see if it will work for you.
... View more
Aug 17, 2022
11:33 AM
1 Kudo
That was a very good catch! It does retrieve a ComplianceOperator based on the session context. This happens about 10 layers deep in a call to the table function 'TableGetSessionOperatorID' when the parameter for Operator login is set to NULL as you discovered. Thanks for finding this and for pointing it out as well. Good luck with custom report!
... View more
Aug 15, 2022
04:33 PM
2 Kudos
If you are talking about a SQL View then I think that you could use something like this to retrieve the data using the logged in operator:
---------------
DECLARE @OperatorLogin NVARCHAR(256)
-- Retrieve the OperatorLogin value based on the Operator who is logged in to FNMS currently
SELECT @OperatorLogin = co.OperatorLogin FROM CurrentOperator op INNER JOIN ComplianceOperator co ON op.ComplianceOperatorID = co.ComplianceOperatorID
SELECT * FROM ComputerByOperatorLogin(@OperatorLogin)
--------------------
I am not certain if this is what you are looking for or not. If not, please add any detail you can for where you have seen ComputerByOperatorLogin used previously.
Thanks,
Bill
... View more
Mar 16, 2022
12:43 PM
1 Kudo
What version of FNMS are you currently using? It appears that there was an enhancement added to get customers past this in FNMS 2021 R1 but it may have only been for ILMT SQL instances.
There is also a KB article related to this here: https://community.flexera.com/t5/FlexNet-Manager-Knowledge-Base/ILMT-import-Failed-to-execute-Reader-SendInstallerEvidence-Error/ta-p/189119.
I do see that the support team has had success with getting ILMT DB2 customers past this issue so it would probably be best to go with the route of opening a support case to help get you the assistance you need.
HTH,
Bill
... View more
Mar 11, 2022
11:58 AM
Hello @joan_mckinley.
I am not 100% certain why you're seeing an error but I can see why the SQL above is not adding a custom property as you would like to see. The value in the '@RelativePositionTo' is set to 'Used' which is the label for one of the columns in the grid for the tab you reference in the SQL. Custom properties cannot be added directly to a grid. They need to be positioned adjacent to controls like text boxes and drop down lists/combo boxes and things like that. Once the custom property is added it can be used in a grid or added to the grid from the 'choose the columns to display' option at the top right side above the grid if it is of the type of information displayed in the grid.
The product documentation has a list of controls for each of the targets to which custom controls can be added. Licenses are found specifically here:
https://docs.flexera.com/FlexNetManagerSuite2021R1/EN/SystemRef/index.html#SysRef/CustomProperties/topics/CP-DBI_Licenses.html.
I hope that gives you the information you need.
Bill
... View more
Feb 18, 2022
01:17 PM
No, it is not simple that is for sure. I think the reason behind this is that it is used for different Target Types so ComplianceComputer, SoftwareLicense, Contract, Purchases, etc. and there needed to be a standard way to get at the data for the UI to work properly. Data normalization of some form may have been a different way to handle it but who knows if that might have ended up being even more complex.
Glad to hear that you've got it figured out.
... View more
Feb 18, 2022
01:08 PM
2 Kudos
It's slightly more complex to get the data as there is also an AssetTypeProperty table involved (or <TargetType>TypeProperty). The match is between ItemResourceName in the UIITem table and PropertyName in AssetTypeProperty.
Here is a little bit of an example:
SELECT * FROM AssetPropertyValue apv INNER JOIN AssetTypeProperty atp on atp.AssetTypePropertyID = apv.AssetTypePropertyID INNER JOIN UIITem u on u.ItemResourceName = atp.PropertyName
Hope that helps!
Bill
... View more
Feb 18, 2022
10:34 AM
2 Kudos
Yes, that stored procedure can be used to add or update custom properties for display in the UI. The data for a custom property related to an Asset will be stored in the AssetPropertyValue table/view in the Compliance database. Custom properties will have their data stored in a table/view with the name of <TargetType>PropertyValue for each TargetType (Asset, ComplianceComputer, etc.).
... View more
Feb 11, 2022
01:12 PM
You are correct. It is in the banner at the top of the page with more info here as well: https://community.flexera.com/t5/Community-Notices/Flexera-Documentation-Unavailable-11-February-13-February-2022/ba-p/223824#M165
... View more
Sep 07, 2021
02:52 PM
1 Kudo
There are a couple of potential options you could try that are mentioned in this thread: https://community.flexera.com/t5/FlexNet-Manager-Forum/Exporting-Attachments/td-p/179516
In your case you could filter data in the Document table on the PurchaseOrderID and potentially on PurchaseOrderDetailID being populated (i.e. not null) as well.
... View more
Aug 20, 2021
10:45 AM
Just to follow up on this, a bug was logged and the issue has been corrected. This should no longer exist in future releases and if there is anyone who runs into this in past releases then you can open a support case to get it corrected. Thanks!
... View more
Jul 20, 2021
10:48 AM
2 Kudos
@dmathias ,
It does appear to be the same for the referenced documentation though here is a link to it for the on-prem release:
PerformVirtualBoxInventory agent preference
and for the first link in the on-prem documentation it can be found here:
Improvements to the FlexNet inventory agent - FlexNet Manager Suite version 2019 R2.2
HTH,
Bill
... View more
Jul 14, 2021
09:17 AM
3 Kudos
@SenthilNathan ,
That's great to hear! I am working to get an escaped defect logged on the Flexera side so this will not happen again with future migrations.
Thanks again!
Bill
... View more
Latest posts by bheadley
Subject | Views | Posted |
---|---|---|
238 | Mar 21, 2023 01:32 PM | |
380 | Oct 18, 2022 01:30 PM | |
413 | Oct 05, 2022 01:39 PM | |
435 | Aug 17, 2022 11:33 AM | |
484 | Aug 15, 2022 04:33 PM | |
278 | Mar 16, 2022 12:43 PM | |
548 | Mar 11, 2022 11:58 AM | |
920 | Feb 18, 2022 01:17 PM | |
927 | Feb 18, 2022 01:08 PM | |
949 | Feb 18, 2022 10:34 AM |
Activity Feed
- Got a Kudo for Re: M365 Connection. List of urls needing whitelisted for M365 connection. Mar 21, 2023 07:30 PM
- Kudoed Re: M365 Connection. List of urls needing whitelisted for M365 connection for karlwogoman. Mar 21, 2023 03:22 PM
- Got a Kudo for Re: M365 Connection. List of urls needing whitelisted for M365 connection. Mar 21, 2023 02:51 PM
- Posted Re: M365 Connection. List of urls needing whitelisted for M365 connection on FlexNet Manager Forum. Mar 21, 2023 01:32 PM
- Got a Kudo for Re: Report builder in SQL. Nov 23, 2022 08:54 AM
- Posted Re: Application Properties Custom Field on FlexNet Manager Forum. Oct 18, 2022 01:30 PM
- Kudoed Re: Application Properties Custom Field for dbeckner. Oct 18, 2022 01:30 PM
- Got a Kudo for Re: Expose WebUI Properties in Database. Oct 05, 2022 07:39 PM
- Got a Kudo for Re: Expose WebUI Properties in Database. Oct 05, 2022 06:39 PM
- Posted Re: Expose WebUI Properties in Database on FlexNet Manager Forum. Oct 05, 2022 01:39 PM
- Got a Kudo for Re: Custom Report for Operators. Aug 18, 2022 03:06 AM
- Posted Re: Custom Report for Operators on FlexNet Manager Forum. Aug 17, 2022 11:33 AM
- Kudoed Re: Custom Report for Operators for paromita_deb2. Aug 17, 2022 11:25 AM
- Got a Kudo for Re: Custom Report for Operators. Aug 16, 2022 09:17 PM
- Got a Kudo for Re: Custom Report for Operators. Aug 15, 2022 05:40 PM
- Posted Re: Custom Report for Operators on FlexNet Manager Forum. Aug 15, 2022 04:33 PM
- Kudoed Re: FNMS Attachment Storage for Flex-Jeremy. Jul 26, 2022 05:33 PM
- Kudoed Re: FNMS Attachment Storage for caldwellb. Jul 26, 2022 05:33 PM
- Got a Kudo for Re: ILMT import Failed to execute Reader 'SendInstallerEvidence' Error: Invalid object name 'sam.software_facts' for ILMT DB2. Mar 16, 2022 06:15 PM
- Posted Re: ILMT import Failed to execute Reader 'SendInstallerEvidence' Error: Invalid object name 'sam.software_facts' for ILMT DB2 on FlexNet Manager Forum. Mar 16, 2022 12:43 PM