|
All Operating Systems: | | | All Products: | | | All Solution Types: | | | |
|
|
|
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.
|
|
|
How can I stop a transition from happening if there isn't a file attachment on the item or an attachment of a certain type?
Dim objATTTable, objThisItem,objThisItemTable, whereclause , attachmentsRec ... Call attachmentsRec. ReadWithWhere( whereclause )
|
|
|
|
|
|