Flag values are not valid

Column flags have fixed values and positions.

Violating this rule will affect the functionality of the code.The severity is major which means that it should be corrected.

Allowed column flags are:

Position Allowed values
1 P = primary key
K = key
A = attribute
2 M = mandatory
- = optional
3 I = insertable
- = not insertable
4 U = updatable
N = updatable if null
- = not updatable
5 L = member of LOV (list of values)
- = not member of LOV

Example of Incorrect Code:

The letter O is incorrectly used as optional marker.

...
COLUMN Iata_Code IS
   Flags      = 'KOI-L'
   Datatype   = 'STRING(3)'
   Prompt     = 'Iata Code';
...

This page is generated from IFS Developer Studio at 2025-05-28 19:44.