forked from kghenderson/tm1_npp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_ti.pro
56 lines (39 loc) · 1.25 KB
/
sample_ti.pro
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# tm1_ti_sample.pro
################################################################################
## definition
################################################################################
Strings 'MyString'
Numbers 12345
ControlFlow IF(); ENDIF;
Modifying CubeCreate();
Safe/Read CellGetS();
#Todo #TODO
Operators () + / -
Variables var
Options ItemSkip
Comments #COMMENT
################################################################################
##""" error handling: checks for something which skips to next record """
#~ other comment
somevar = 'SomeString';
someval = CellGetN('SomeCube','SomeMember'|'_x','SomeMeasure');
IF(somevar @= 'SomeString');
ItemSkip;
ELSEIF();
ELSE;
someval = 0;
ENDIF;
#todo: remember to do something later on
################################################################################
#~ section
################################################################################
#~ other comment
i=1;
WHILE(i <= DIMSIZ('somedim'));
e = DIMNM('somedim', i);
DimensionElementInsert('somedim', '', 'somemember', 'C');
i=i+1;
END;
# commented code (ignore)
# ignore this code
################################################################################