ProjectBasedRecord FinishSubmitToProject() Method

(SBM On-Premise/PaaS only) Finishes a submit transition for an item.

Function Signature

 bool FinishSubmitToProject( [ signedUserID, signedUserPwd ] )

Parameters

Parameter Type Description

signedUserID

string

Optional. Provides the user name portion of the signature if the transition requires a user's signature.

signedUserPwd

string

Optional, required if signedUserID is provided. Provides the password portion of the signature if the transition requires a user's signature.

Return

Type Description

bool

Returns true if transition completed successfully. If false, use Shell.GetLastErrorMessage() for more information.

Technical Details

SBM ModScript version: 11.3.

Example

projectRecord.SetFieldValue( "title", "My Title");
projectRecord.FinishSubmitToProject("UserName", "pass");

Notes

Related Topics

ProjectBasedRecord