Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- SBM
- Serena software
- CM14
- Embracing OpenSource
- 엔터프라이즈 SCCM
- SCCM
- DIM14
- 소스코드관리
- Serena Dimensions CM
- BPM
- integration
- IntelliJ IDEA
- build
- 세레나소프트웨어
- AppScript
- CM Bridge
- Customization
- Jenkins
- Stream
- Dimensions CM
- teamscript
- Dimensions Pulse
- CKEditor
- UseCase
- TeamTrack
- 버전관리
- SharePoint
- Software Change and Configuration Management
- Continuous Integration
- Enterprise Software Change and Configuration Management
Archives
- Today
- Total
this and that
AppScript를 이용하여 임의의 사용자에게 메일 보내기 본문
스크립트를 이용하여 SBM사용자가 아닌 임의의 사용자로 메일 보내기 예제
1 2 3 4 5 6 7 8 9 10 11 | Dim tableId, myRecord, myLong REM Create a Notifications Message record tableId = Ext.TableId( "TS_NOTIFICATIONMESSAGES" ) Set myRecord = Ext.CreateAppRecord (tableId) myRecord.SetFieldValue( "address" , "toaddress@gmail.com" ) myRecord.SetFieldValue( "subject" , "Test Message Subject Goes Here" ) myRecord.SetFieldValue( "content" , "The body of the message goes here." ) myLong = myRecord.Add() If myLong = 0 Then Call Ext.LogErrorMsg( "Error adding message to notifications table." ) End If |
'SBM' 카테고리의 다른 글
SBM JSON API 활용하기 (0) | 2016.08.18 |
---|---|
SBM with Gantt Chart (3) | 2011.12.13 |
SBM AppScript Use Cases - 04. Subtask Time Calculation (0) | 2011.11.22 |
SBM AppScript Use Cases - 03. Auto-Subtasks for Assessors (0) | 2011.11.22 |
SBM AppScript Use Cases - 02. Calculate Work Effort Difference (0) | 2011.10.28 |