|
Results |
|
Example script demonstrating the ReadWithWhere() method in Mashup/Team Script Reference is faulty
If Not myRecord. ReadWithWhere(whereClause ) Then
|
|
|
TeamScript Release Notes for TeamTrack 6.3
3. When populating Text/Memo fields using TeamScript, TeamTrack now honors the character limit of the database. 4.When calling ReadWithWhere(WhereClause ), if you use the optional [orderByClause] parameter, the script no longer hangs. Known Problems in TeamTrack 6.3
|
|
|
If a form field equals a certain value, require a file be attached before a transition can happen. Sample app script.
set myAttachmentList = Ext.CreateAppRecordList(Ext.TableId("TS_ATTACHMENTS")) ok = myAttachmentList. ReadWithWhere(whereClause ) ' Count the number of attachments
|
|
|
How to configure TeamTrack in IIS6
WHERECLAUSE= "TS_ID = " & RECORDEID if MYRECORD. ReadWithWhere(whereClause ) then call MYRECORD.SetFieldValue( "State", C_CLOSED )
|
|
|
TeamScript Release Notes for TeamTrack 6.2
5. When calling ReadWithWhere(WhereClause ), if you use the optional [orderByClause] parameter, the script will hang.
|
|
|
TeamTrack Advanced Topics Manual
DimmyRecord, whereClause REMCreateaContactrecord tableId=ExtTableId("TS_CONTACTS") SetmyRecord=Ext.CreateAppRecord(tableId) whereClause ="TS_CONTACTFIRSTNAME='Joe'" IfmyRecord. ReadWithWhere(whereClause )Then IfNotmyRecord.Delete()Then CallExt.LogErrorMsg("ErrorDeletingContactrecord.") EndIf EndIf
|
|
|
TeamScript Reference Guide
DimmyRecord, whereClause REMCreateaContactrecord tableId=ExtTableId("TS_CONTACTS") SetmyRecord=Ext.CreateAppRecord(tableId) whereClause ="TS_CONTACTFIRSTNAME='Joe'" IfmyRecord. ReadWithWhere(whereClause )Then IfNotmyRecord.Delete()Then CallExt.LogErrorMsg("ErrorDeletingContactrecord.") EndIf EndIf
|
|
|
Untitled
Dim myRecord, whereClause REM Create a Contact record tableId = ExtTableId ("TS_CONTACTS") Set myRecord = Ext.CreateAppRecord(tableId) whereClause = "TS_CONTACTFIRSTNAME = 'Joe'" If myRecord. ReadWithWhere(whereClause ) Then If Not myRecord.Delete()
|
|
|
Mashup Script Reference
("TS_CONTACTS") Set myRecord = Ext.CreateAppRecord(tableId) whereClause = "TS_CONTACTFIRSTNAME = 'Joe'" If myRecord. ReadWithWhere(whereClause ) Then If Not myRecord.Delete()
|
|
|
SBM AppScript Reference
("TS_CONTACTS") Set myRecord = Ext.CreateAppRecord(tableId) whereClause = "TS_CONTACTFIRSTNAME = 'Joe'" If myRecord. ReadWithWhere(whereClause ) Then If Not myRecord.Delete()
|
|
|