@servicenow/sdk - v4.9.0
    Preparing search index...

    Variable dl_definition_rel_setConst

    dl_definition_rel_set: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        display: "source_table_field";
        extends: "sys_metadata";
        extensible: true;
        label: "Setter Field Definitions";
        name: "dl_definition_rel_set";
        schema: {
            always_replace: Typed<
                boolean,
                {
                    default: false;
                    label: [
                        {
                            hint: "If true, a matching lookup will update the source field even if the matching field is blank";
                            label: "Always replace";
                            plural: "Always replaces";
                        },
                    ];
                },
            >;
            dl_definition: Typed<
                | string
                | Record<"dl_definition">
                | ExplicitKey<"dl_definition">
                | TableBrand<"dl_definition">,
                {
                    attributes: { encode_utf8: false };
                    cascadeRule: "delete";
                    label: "Data Lookup";
                    referenceTable: "dl_definition";
                },
            >;
            matcher_table: Typed<
                string,
                {
                    default: "javascript:parent.matcher_table";
                    label: "Matcher table";
                    maxLength: 80;
                    readOnly: true;
                    readOnlyOption: "instance_configured";
                },
            >;
            matcher_table_field: Typed<
                string,
                {
                    dependent: "matcher_table";
                    label: [
                        {
                            hint: "Specifies the field in the matching table";
                            label: "Matcher table field";
                            plural: "Matcher table fields";
                        },
                    ];
                    mandatory: true;
                },
            >;
            source_table: Typed<
                string,
                {
                    default: "javascript:parent.source_table";
                    label: "Source table";
                    maxLength: 80;
                    readOnly: true;
                    readOnlyOption: "instance_configured";
                },
            >;
            source_table_field: Typed<
                string,
                {
                    dependent: "source_table";
                    label: [
                        {
                            hint: "Specifies the field in the source table";
                            label: "Source table field";
                            plural: "Source table fields";
                        },
                    ];
                    mandatory: true;
                },
            >;
            sys_id: Typed<
                string,
                { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
            >;
        };
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlydisplay: "source_table_field"
    • Readonlyextends: "sys_metadata"
    • Readonlyextensible: true
    • Readonlylabel: "Setter Field Definitions"
    • Readonlyname: "dl_definition_rel_set"
    • Readonlyschema: {
          always_replace: Typed<
              boolean,
              {
                  default: false;
                  label: [
                      {
                          hint: "If true, a matching lookup will update the source field even if the matching field is blank";
                          label: "Always replace";
                          plural: "Always replaces";
                      },
                  ];
              },
          >;
          dl_definition: Typed<
              | string
              | Record<"dl_definition">
              | ExplicitKey<"dl_definition">
              | TableBrand<"dl_definition">,
              {
                  attributes: { encode_utf8: false };
                  cascadeRule: "delete";
                  label: "Data Lookup";
                  referenceTable: "dl_definition";
              },
          >;
          matcher_table: Typed<
              string,
              {
                  default: "javascript:parent.matcher_table";
                  label: "Matcher table";
                  maxLength: 80;
                  readOnly: true;
                  readOnlyOption: "instance_configured";
              },
          >;
          matcher_table_field: Typed<
              string,
              {
                  dependent: "matcher_table";
                  label: [
                      {
                          hint: "Specifies the field in the matching table";
                          label: "Matcher table field";
                          plural: "Matcher table fields";
                      },
                  ];
                  mandatory: true;
              },
          >;
          source_table: Typed<
              string,
              {
                  default: "javascript:parent.source_table";
                  label: "Source table";
                  maxLength: 80;
                  readOnly: true;
                  readOnlyOption: "instance_configured";
              },
          >;
          source_table_field: Typed<
              string,
              {
                  dependent: "source_table";
                  label: [
                      {
                          hint: "Specifies the field in the source table";
                          label: "Source table field";
                          plural: "Source table fields";
                      },
                  ];
                  mandatory: true;
              },
          >;
          sys_id: Typed<
              string,
              { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
          >;
      }