Versions Compared

Key

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

...

Element

Data Type

Required?

Default

Description

Sample Data

ProjectCode

String (24)On Insert:

Yes (if One of ProjectCode or ProjectUid is not supplied)

On Update: Yes (if ProjectUid is not supplied)

required

The project code is a unique identifier for a project.

P001395-001

ProjectId

Int32On Insert: No

On Update: No

The project Id is a unique identifier for a Project. For internal use only.


ProjectUid

Int64

On Insert: Yes (if ProjectCode is not supplied)

On Update: Yes (if ProjectCode is not supplied)

The project Uid is a See ProjectCode

A unique and immutable identifier for a project.

11529215046074122091152921504607412208

Usage Example(s)


Code Block
languagexml
titleExample 01 - Project Code ProjectCode Only
collapsetrue
               <com:PwsProjectRef>
                  <com:ProjectCode>P001395-001</com:ProjectCode>
                  <!--com:ProjectId>?</com:ProjectId-->
                  <!--com:ProjectUid>?</com:ProjectUid-->
               </com:PwsProjectRef>


Code Block
languagexml
titleExample 02 - ProjectCode and ProjectUid
collapsetrue
               <com:PwsProjectRef>
                  <com:ProjectCode>P001395-001</com:ProjectCode>
                  <!--com:ProjectId>?</com:ProjectId-->
                  <com:ProjectUid>1152921504607412209</com:ProjectUid>
               </com:PwsProjectRef>

...