Show / Hide Table of Contents

Class NSProject

Carrier object for Project.

Syntax

Constructors

NSProject()

Initializes a new instance of the NSProject class.

Declaration
NSProject

Methods

GetActiveErpLinks()

Carrier object for Project.

Declaration
Integer GetActiveErpLinks()
Returns
Type Description
Integer

The number of active ERP links.

Examples
NSProject thing;
Integer activeErpLinks = thing.GetActiveErpLinks();

GetAssociateFullName()

Carrier object for Project.

Declaration
String GetAssociateFullName()
Returns
Type Description
String

The project owner.

Examples
NSProject thing;
String associateFullName = thing.GetAssociateFullName();

GetAssociateId()

Carrier object for Project.

Declaration
Integer GetAssociateId()
Returns
Type Description
Integer

The project owner ID (associate ID).

Examples
NSProject thing;
Integer associateId = thing.GetAssociateId();

GetDescription()

Carrier object for Project.

Declaration
String GetDescription()
Returns
Type Description
String

The projects description.

Examples
NSProject thing;
String description = thing.GetDescription();

GetIsPublished()

Carrier object for Project.

Declaration
Bool GetIsPublished()
Returns
Type Description
Bool
Examples
NSProject thing;
Bool isPublished = thing.GetIsPublished();

GetName()

Carrier object for Project.

Declaration
String GetName()
Returns
Type Description
String

Project name.

Examples
NSProject thing;
String name = thing.GetName();

GetProjectId()

Carrier object for Project.

Declaration
Integer GetProjectId()
Returns
Type Description
Integer

Primary key.

Examples
NSProject thing;
Integer projectId = thing.GetProjectId();

GetProjectNumber()

Carrier object for Project.

Declaration
String GetProjectNumber()
Returns
Type Description
String

Automatically generated number.

Examples
NSProject thing;
String projectNumber = thing.GetProjectNumber();

GetPublishFrom()

Carrier object for Project.

Declaration
DateTime GetPublishFrom()
Returns
Type Description
DateTime

Publication valid from (inclusive).

Examples
NSProject thing;
DateTime publishFrom = thing.GetPublishFrom();

GetPublishTo()

Carrier object for Project.

Declaration
DateTime GetPublishTo()
Returns
Type Description
DateTime

Publication valid to (inclusive).

Examples
NSProject thing;
DateTime publishTo = thing.GetPublishTo();

GetStatus()

Carrier object for Project.

Declaration
String GetStatus()
Returns
Type Description
String

The projects status.

Examples
NSProject thing;
String status = thing.GetStatus();

GetStatusId()

Carrier object for Project.

Declaration
Integer GetStatusId()
Returns
Type Description
Integer

The projects status Id.

Examples
NSProject thing;
Integer statusId = thing.GetStatusId();

GetTextId()

Carrier object for Project.

Declaration
Integer GetTextId()
Returns
Type Description
Integer

The ID of the description.

Examples
NSProject thing;
Integer textId = thing.GetTextId();

GetType()

Carrier object for Project.

Declaration
String GetType()
Returns
Type Description
String

The project type.

Examples
NSProject thing;
String type = thing.GetType();

GetTypeId()

Carrier object for Project.

Declaration
Integer GetTypeId()
Returns
Type Description
Integer
Examples
NSProject thing;
Integer typeId = thing.GetTypeId();

GetUpdated()

Carrier object for Project.

Declaration
DateTime GetUpdated()
Returns
Type Description
DateTime

Last updated date.

Examples
NSProject thing;
DateTime updated = thing.GetUpdated();

GetURL()

Carrier object for Project.

Declaration
String GetURL()
Returns
Type Description
String

URL address.

Examples
NSProject thing;
String uRL = thing.GetURL();

GetURLName()

Carrier object for Project.

Declaration
String GetURLName()
Returns
Type Description
String

Visible field.

Examples
NSProject thing;
String uRLName = thing.GetURLName();

SetActiveErpLinks(Integer)

Carrier object for Project.

Declaration
Void SetActiveErpLinks(Integer activeErpLinks)
Parameters
Type Name Description
Integer activeErpLinks

The number of active ERP links.

Returns
Type Description
Void
Examples
NSProject thing;
Integer activeErpLinks;
thing.SetActiveErpLinks(activeErpLinks);

SetAssociateFullName(String)

Carrier object for Project.

Declaration
Void SetAssociateFullName(String associateFullName)
Parameters
Type Name Description
String associateFullName

The project owner.

Returns
Type Description
Void
Examples
NSProject thing;
String associateFullName;
thing.SetAssociateFullName(associateFullName);

SetAssociateId(Integer)

Carrier object for Project.

Declaration
Void SetAssociateId(Integer associateId)
Parameters
Type Name Description
Integer associateId

The project owner ID (associate ID).

Returns
Type Description
Void
Examples
NSProject thing;
Integer associateId;
thing.SetAssociateId(associateId);

SetDescription(String)

Carrier object for Project.

Declaration
Void SetDescription(String description)
Parameters
Type Name Description
String description

The projects description.

Returns
Type Description
Void
Examples
NSProject thing;
String description;
thing.SetDescription(description);

SetIsPublished(Bool)

Carrier object for Project.

Declaration
Void SetIsPublished(Bool isPublished)
Parameters
Type Name Description
Bool isPublished
Returns
Type Description
Void
Examples
NSProject thing;
Bool isPublished;
thing.SetIsPublished(isPublished);

SetName(String)

Carrier object for Project.

Declaration
Void SetName(String name)
Parameters
Type Name Description
String name

Project name.

Returns
Type Description
Void
Examples
NSProject thing;
String name;
thing.SetName(name);

SetProjectId(Integer)

Carrier object for Project.

Declaration
Void SetProjectId(Integer projectId)
Parameters
Type Name Description
Integer projectId

Primary key.

Returns
Type Description
Void
Examples
NSProject thing;
Integer projectId;
thing.SetProjectId(projectId);

SetProjectNumber(String)

Carrier object for Project.

Declaration
Void SetProjectNumber(String projectNumber)
Parameters
Type Name Description
String projectNumber

Automatically generated number.

Returns
Type Description
Void
Examples
NSProject thing;
String projectNumber;
thing.SetProjectNumber(projectNumber);

SetPublishFrom(DateTime)

Carrier object for Project.

Declaration
Void SetPublishFrom(DateTime publishFrom)
Parameters
Type Name Description
DateTime publishFrom

Publication valid from (inclusive).

Returns
Type Description
Void
Examples
NSProject thing;
DateTime publishFrom;
thing.SetPublishFrom(publishFrom);

SetPublishTo(DateTime)

Carrier object for Project.

Declaration
Void SetPublishTo(DateTime publishTo)
Parameters
Type Name Description
DateTime publishTo

Publication valid to (inclusive).

Returns
Type Description
Void
Examples
NSProject thing;
DateTime publishTo;
thing.SetPublishTo(publishTo);

SetStatus(String)

Carrier object for Project.

Declaration
Void SetStatus(String status)
Parameters
Type Name Description
String status

The projects status.

Returns
Type Description
Void
Examples
NSProject thing;
String status;
thing.SetStatus(status);

SetStatusId(Integer)

Carrier object for Project.

Declaration
Void SetStatusId(Integer statusId)
Parameters
Type Name Description
Integer statusId

The projects status Id.

Returns
Type Description
Void
Examples
NSProject thing;
Integer statusId;
thing.SetStatusId(statusId);

SetTextId(Integer)

Carrier object for Project.

Declaration
Void SetTextId(Integer textId)
Parameters
Type Name Description
Integer textId

The ID of the description.

Returns
Type Description
Void
Examples
NSProject thing;
Integer textId;
thing.SetTextId(textId);

SetType(String)

Carrier object for Project.

Declaration
Void SetType(String type)
Parameters
Type Name Description
String type

The project type.

Returns
Type Description
Void
Examples
NSProject thing;
String type;
thing.SetType(type);

SetTypeId(Integer)

Carrier object for Project.

Declaration
Void SetTypeId(Integer typeId)
Parameters
Type Name Description
Integer typeId
Returns
Type Description
Void
Examples
NSProject thing;
Integer typeId;
thing.SetTypeId(typeId);

SetUpdated(DateTime)

Carrier object for Project.

Declaration
Void SetUpdated(DateTime updated)
Parameters
Type Name Description
DateTime updated

Last updated date.

Returns
Type Description
Void
Examples
NSProject thing;
DateTime updated;
thing.SetUpdated(updated);

SetURL(String)

Carrier object for Project.

Declaration
Void SetURL(String uRL)
Parameters
Type Name Description
String uRL

URL address.

Returns
Type Description
Void
Examples
NSProject thing;
String uRL;
thing.SetURL(uRL);

SetURLName(String)

Carrier object for Project.

Declaration
Void SetURLName(String uRLName)
Parameters
Type Name Description
String uRLName

Visible field.

Returns
Type Description
Void
Examples
NSProject thing;
String uRLName;
thing.SetURLName(uRLName);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top