This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- Delete misspelling contract status from dropdown list
Subscribe
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Aug 21, 2019
11:02 AM
Hello experts,
How I can delete the misspelling status that imported from Business adapters studio from the dropdown list in FNMS On-Prem?
Thanks !
HP
1 Solution
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Aug 21, 2019
11:07 AM
- Use a SQL statement to double check that you are looking for the correct entry.
SELECT * FROM ContractStatus WHERE DefaultValue LIKE '%misspelled%'
- Then delete it directly from the table.
DELETE FROM ContractStatus WHERE DefaultValue LIKE '%misspelled%'
Softline Group is Europe's leading independent expert in Software Asset Management.
This thread has been automatically locked due to inactivity.
To continue the discussion, please start a new thread.
1 Reply
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Aug 21, 2019
11:07 AM
- Use a SQL statement to double check that you are looking for the correct entry.
SELECT * FROM ContractStatus WHERE DefaultValue LIKE '%misspelled%'
- Then delete it directly from the table.
DELETE FROM ContractStatus WHERE DefaultValue LIKE '%misspelled%'
Softline Group is Europe's leading independent expert in Software Asset Management.
