-
Notifications
You must be signed in to change notification settings - Fork 0
/
sm-testpngetlate.js
37 lines (28 loc) · 992 Bytes
/
sm-testpngetlate.js
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
print("=====================");
print("Start");
print("=====================");
var nShw = 2 ; var bNot = false ; var bSA = false;
//print("===================InclNew");
//system.library.cnfcm.GetLateRFC({abAll:true,abNot:bNot,anShw:nShw,abSA:bSA});
print("====================OnlyNew");
system.library.cnfcm.GetLateRFC({abNew:true,abNot:bNot,anShw:nShw,abSA:bSA});
print("=======================Late");
system.library.cnfcm.GetLateRFC({abNot:bNot,anShw:nShw,abSA:bSA});
print("=====================");
print("Done");
print("=====================");
/*
//-----------------------
// Notes
//-----------------------
GetLateRFC()
anTop : "all" -> Range Top value
anBot : 0 -> Range Low value
anGD : 3 -> Grace period
abAll : false -> All records including New
abNew : false -> Show only New records
abNot : false -> Show Not late records
abRA : false -> Return Array
anShw : 1 -> Show the progress level
abSA : true -> Show function call Arguments
*/