Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


This option can be set to true to cause the JSON output of Designer to have an additional attribute in each record format which lists the original field order from the DDS.

Code Block
languagejs
titleInclude DDS Field Order in JSON
pui["include field order"] = true;

Below is an example JSON snippet:

Code Block
languagejs
titleExample JSON
{
  "text": "...",
  "formats": [
    {
      "screen": {...},
      "items": [...],
      "dds field order": ["FIELD00012", "FIELD0001", ...]
    },
    ...
  ],
  ...
}