Versions Compared

Key

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

...

Section
titleNew and Noteworthy


Section
titleProperty Supplier for Documents

Authors can define properties for projectdoc document with the Document Properties Marker Macro, the Document Properties Supplier Macro, and the Document Properties Supplier Attachment Macro. No properties can also be supplied by other projectdoc documents by the use of the new Document Properties Supplier From Documents Macro.

The properties are ready for import once they have the supply control set.

For more information see Supply Documents


Section
titleSearch Function Support

Where clauses of macros provided by the projectdoc Toolbox may take advantage of search functions such as now() to specify queries.

The syntax for using search functions is:

Code Block
languagetext
$<PROPERTY NAME>=${function-name(argument-list)}

Functions can be used for a value in a Where clause parameter of a projectdoc macro.

Functions cannot be used for a property name or outside the Where clause.

Example Box

Here are some usage examples:

Code Block
languagetext
$<Start Date§>=${now()}

$<Login Name>=${currentUser()}

$<Attendee>=${currentUser("fn")}


The following functions are supported:

  • currentUser()
  • now()
  • startOfDay()
  • endOfDay()
  • startOfWeek()
  • endOfWeek()
  • startOfMonth()
  • endOfMonth()
  • startOfYear()
  • endOfYear()
For more information refer to Search TipsFunctions as part of our Search Tips.


...