Removing the Original Note URL Field from the Create PSNote Form

As installed, the Create form for a Note includes an Original Note URL field. This field, and the Notes object, supports the migration of Notes from ProjectSync. During the migration, this attribute for a PSNote object is populated with the value as stored in ProjecSync. When creating a note with Collaboration and Approvals, though, this field does not apply. To avoid confusion, you can remove this field from the create form.

For more information, see MQL Command Reference: form Command.


Before you begin: The migration from ProjectSync must be completed.
  1. Start an MQL session. For more information, see Running MQL.
  2. To set the context for the MQL session, run this command:

    set context user creator;

  3. Print the details of the PSNote form:

    print form PSNote; 

    Note the field number for the Original Note URL attribute.

  4. Remove the Original Note URL field from the PSNote form:

    modify form PSNote field delete N;

    where N is the field number.