일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AppScript
- Serena Dimensions CM
- Serena software
- 엔터프라이즈 SCCM
- Customization
- Embracing OpenSource
- DIM14
- Dimensions CM
- Software Change and Configuration Management
- 소스코드관리
- TeamTrack
- CM14
- Enterprise Software Change and Configuration Management
- Stream
- build
- CM Bridge
- integration
- Dimensions Pulse
- teamscript
- SCCM
- SharePoint
- UseCase
- Continuous Integration
- IntelliJ IDEA
- BPM
- CKEditor
- 세레나소프트웨어
- SBM
- Jenkins
- 버전관리
- Today
- Total
목록AppScript (5)
this and that
스크립트를 이용하여 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 go..
Subtask에 대해 처리한 시간을 취합하여 상위 WCR에 입력하는 스크립트. Child Task의 등록시간과 종료시간의 차이를 계산하여 취합. 첨부할 Note의 이름은 Number of Hours spent on Assessment. 보여지는 시간 포맷은 hh:mm:ss. Assessment 완료 시점에 Post-transition을 통하여 실행이 된다. ' Name: calcSubTasksTime ' Function: After the completion of all subtasks for a parent item, ' retrieve each subtask and calculate the total amount of time ' that it took for all subtasks to comple..
한번의 트랜지션으로 선택된 Assessors 에 대한 Subtask를 자동으로 일괄 생성한다. 새로운 워크플로우로는 Post-Transition script를 사용한 Regular Transition을 이용한다. 선택된 Assessors를 알아낸다. 선택된 각 Assessor를 위해 새로운 Taks 아이템을 생성한다. 그리고 다음과 같이 필드를 매핑한다.: • Title and Description copied from Widget Change Request • Item Type to Task • Task Owner to the Assessor • Owner to the Assessor • Parent Widget CR to the TS_ID of the Widget Change Request i..
이번 스크립트는 예상 작업 시간과 실제 작업 시간의 값의 차이를 계산하여 경우에 따라 해당되는 필드에 값을 입력하는 시나리오이다. 프로세스가 종료될 때 예상 시간보다 실제 시간이 초과했을 경우 Work Effort Over에 차이값을 입력을 하고, 초과하지 않았을 경우 Work Effort Under에 차이값을 입력을 한다. ' Name: calcWorkEffort ' Function: Find the difference between Est. Work Effort and ' Act. Work Effort and set the proper field value: ' Work Effort Over or Work Effort Under ' Context: Post-transition on Complete t..
Est. Work Effort 라는 필드가 있다고 가정하자. 보통 시간 단위로 입력한다. 프로세스를 진행할 때에 예상 작업 시간이 1보다 작을 경우 에러메시지를 표시하고 진행할 수 없도록 처리하는 스크립트이다. ' Name: validateEstWorkEffort ' Function: Check the Est. Work Effort field for a value larger than 0. ' Context: Pre-state for Approved state ' ' Date: 03/09/2006 ' For use in the TeamTrack TeamScript course examples. ' Require all vars to be declared before use (and then declare..