...
In Kiwi, Lotus and Morning Glory bugfests those invalid identifiers have been replaced with temporary values.
To get instances ids with incorrect identifiers execute:
Code Block | ||||
---|---|---|---|---|
| ||||
SELECT DISTINCT id
FROM {tenant}_mod_inventory_storage.instance t, jsonb_array_elements(t.jsonb->'identifiers') elem
WHERE elem->>'identifierTypeId'
IN ('59378436-9645-4add-b05f-6afc69bdc8d0', '9024e225-7a68-4f2c-bcf1-81013fb8a6f0', 'fe19bae4-da28-472b-be90-d442e2428ead') |
According BF-318 it is necessary to :
- Identify the instance records with invalid identifiers type
- Remove the reference to the invalid identifiers from the instance record
...