Some users may experience issues accessing the case portal. For more information, please click here.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Delete misspelling contract status from dropdown list

Jump to solution

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

0 Kudos
1 Solution
mfranz
Level 16 Champion
Level 16 Champion
  1. Use a SQL statement to double check that you are looking for the correct entry.

    SELECT *
    FROM ContractStatus
    WHERE DefaultValue LIKE '%misspelled%'
  2. 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.

View solution in original post

This thread has been automatically locked due to inactivity.

To continue the discussion, please start a new thread.

1 Reply
mfranz
Level 16 Champion
Level 16 Champion
  1. Use a SQL statement to double check that you are looking for the correct entry.

    SELECT *
    FROM ContractStatus
    WHERE DefaultValue LIKE '%misspelled%'
  2. 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.