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 | 31 |
Tags
- 엔터프라이즈 SCCM
- DIM14
- SharePoint
- 세레나소프트웨어
- IntelliJ IDEA
- Customization
- Embracing OpenSource
- CKEditor
- TeamTrack
- Continuous Integration
- Jenkins
- SCCM
- Enterprise Software Change and Configuration Management
- CM14
- build
- integration
- Stream
- Dimensions Pulse
- UseCase
- AppScript
- teamscript
- 소스코드관리
- 버전관리
- Serena Dimensions CM
- Software Change and Configuration Management
- CM Bridge
- Serena software
- SBM
- BPM
- Dimensions CM
Archives
- Today
- Total
this and that
AppScript를 이용하여 임의의 사용자에게 메일 보내기 본문
스크립트를 이용하여 SBM사용자가 아닌 임의의 사용자로 메일 보내기 예제
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 |
Comments