@thinkwise/testwise 0.1.66 → 0.1.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/README.md +39 -39
  2. package/Testwise.ts +2 -3
  3. package/config.json +9 -9
  4. package/dist/Testwise.js +2 -4
  5. package/dist/Testwise.js.map +1 -1
  6. package/dist/Testwise.json +25 -0
  7. package/dist/helpers/LoginHelper.d.ts +2 -2
  8. package/dist/helpers/LoginHelper.js +3 -3
  9. package/dist/helpers/LoginHelper.js.map +1 -1
  10. package/dist/package-lock.json +2 -2
  11. package/dist/package.json +1 -1
  12. package/dist/page-extensions/GlobalComponents.d.ts +19 -0
  13. package/dist/page-extensions/GlobalComponents.js +21 -0
  14. package/dist/page-extensions/GlobalComponents.js.map +1 -0
  15. package/dist/page-extensions/LoginFeatures.d.ts +1 -1
  16. package/dist/page-extensions/LoginFeatures.js +2 -2
  17. package/dist/page-extensions/LoginFeatures.js.map +1 -1
  18. package/dist/page-extensions/index.d.ts +1 -0
  19. package/dist/page-extensions/index.js +1 -0
  20. package/dist/page-extensions/index.js.map +1 -1
  21. package/dist/seed-data/screen-schemas/chart.json +25 -0
  22. package/dist/seed-data/screen-schemas/chart_horizontal.json +25 -0
  23. package/dist/seed-data/screen-schemas/chart_no_fields.json +14 -0
  24. package/dist/seed-data/screen-schemas/cube.json +40 -0
  25. package/dist/seed-data/screen-schemas/cube_horizontal.json +40 -0
  26. package/dist/seed-data/screen-schemas/cube_no_fields.json +25 -0
  27. package/dist/seed-data/screen-schemas/form_only.json +20 -0
  28. package/dist/seed-data/screen-schemas/form_with_tree.json +20 -0
  29. package/dist/seed-data/screen-schemas/grid_with_card_list.json +20 -0
  30. package/dist/seed-data/screen-schemas/grid_with_filter_form.json +20 -0
  31. package/dist/seed-data/screen-schemas/grid_with_map.json +20 -0
  32. package/dist/seed-data/screen-schemas/grid_with_prefilter_bar.json +20 -0
  33. package/dist/seed-data/screen-schemas/grid_with_report_bar.json +20 -0
  34. package/dist/seed-data/screen-schemas/grid_with_report_tiles.json +20 -0
  35. package/dist/seed-data/screen-schemas/hierarchy.json +43 -0
  36. package/dist/seed-data/screen-schemas/hierarchy_card_list.json +39 -0
  37. package/dist/seed-data/screen-schemas/hierarchy_no_filter.json +38 -0
  38. package/dist/seed-data/screen-schemas/look_up_popup.json +48 -0
  39. package/dist/seed-data/screen-schemas/master_detail.json +39 -0
  40. package/dist/seed-data/screen-schemas/master_detail_no_filter.json +34 -0
  41. package/dist/seed-data/screen-schemas/master_detail_vertical.json +39 -0
  42. package/dist/seed-data/screen-schemas/master_detail_with_preview.json +25 -0
  43. package/dist/seed-data/screen-schemas/master_detail_with_task_bar.json +48 -0
  44. package/dist/seed-data/screen-schemas/master_detail_with_task_tiles.json +44 -0
  45. package/dist/seed-data/screen-schemas/master_vertical_detail.json +39 -0
  46. package/dist/seed-data/screen-schemas/pivot_grid.json +25 -0
  47. package/dist/seed-data/screen-schemas/pivot_grid_horizontal.json +25 -0
  48. package/dist/seed-data/screen-schemas/pivot_grid_no_fields.json +14 -0
  49. package/dist/seed-data/screen-schemas/scheduler.json +14 -0
  50. package/dist/seed-data/screen-schemas/test.json +30 -0
  51. package/dist/seed-data/screen-schemas/testpoonam.json +40 -0
  52. package/dist/seed-data/screen-schemas/view_customer_cube.json +36 -0
  53. package/dist/seed-data/subjects.json +1586 -0
  54. package/helpers/LoginHelper.ts +3 -3
  55. package/package.json +58 -58
  56. package/page-extensions/GlobalComponents.ts +37 -0
  57. package/page-extensions/LoginFeatures.ts +3 -3
  58. package/page-extensions/index.ts +1 -0
  59. package/scripts/Testwise.template.json +24 -24
  60. package/scripts/main.js +11 -11
  61. package/scripts/tsconfig.template.json +11 -11
  62. package/tsconfig.json +19 -19
@@ -0,0 +1,1586 @@
1
+ [
2
+ {
3
+ "subject": "category",
4
+ "variant": "",
5
+ "screentype_context": "detail",
6
+ "screentype_id": "master_detail_no_filter",
7
+ "properties": [
8
+ { "col": "category_id", "datatype": "int", "control_type": "" },
9
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
10
+ ]
11
+ },
12
+ {
13
+ "subject": "category",
14
+ "variant": "category_with_task_tiles",
15
+ "screentype_context": "detail",
16
+ "screentype_id": "master_detail_no_filter",
17
+ "properties": [
18
+ { "col": "category_id", "datatype": "int", "control_type": "" },
19
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
20
+ ]
21
+ },
22
+ {
23
+ "subject": "category",
24
+ "variant": "category_with_task_tiles",
25
+ "screentype_context": "main",
26
+ "screentype_id": "master_detail_with_task_tiles",
27
+ "properties": [
28
+ { "col": "category_id", "datatype": "int", "control_type": "" },
29
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
30
+ ]
31
+ },
32
+ {
33
+ "subject": "category",
34
+ "variant": "category_with_task_tiles",
35
+ "screentype_context": "popup",
36
+ "screentype_id": "look_up_popup",
37
+ "properties": [
38
+ { "col": "category_id", "datatype": "int", "control_type": "" },
39
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
40
+ ]
41
+ },
42
+ {
43
+ "subject": "category",
44
+ "variant": "category_with_task_tiles",
45
+ "screentype_context": "zoom",
46
+ "screentype_id": "master_detail_no_filter",
47
+ "properties": [
48
+ { "col": "category_id", "datatype": "int", "control_type": "" },
49
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
50
+ ]
51
+ },
52
+ {
53
+ "subject": "category",
54
+ "variant": "category_with_tasks",
55
+ "screentype_context": "detail",
56
+ "screentype_id": "master_detail_no_filter",
57
+ "properties": [
58
+ { "col": "category_id", "datatype": "int", "control_type": "" },
59
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
60
+ ]
61
+ },
62
+ {
63
+ "subject": "category",
64
+ "variant": "category_with_tasks",
65
+ "screentype_context": "main",
66
+ "screentype_id": "master_detail_with_task_bar",
67
+ "properties": [
68
+ { "col": "category_id", "datatype": "int", "control_type": "" },
69
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
70
+ ]
71
+ },
72
+ {
73
+ "subject": "category",
74
+ "variant": "category_with_tasks",
75
+ "screentype_context": "popup",
76
+ "screentype_id": "look_up_popup",
77
+ "properties": [
78
+ { "col": "category_id", "datatype": "int", "control_type": "" },
79
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
80
+ ]
81
+ },
82
+ {
83
+ "subject": "category",
84
+ "variant": "category_with_tasks",
85
+ "screentype_context": "zoom",
86
+ "screentype_id": "master_detail_no_filter",
87
+ "properties": [
88
+ { "col": "category_id", "datatype": "int", "control_type": "" },
89
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
90
+ ]
91
+ },
92
+ {
93
+ "subject": "category",
94
+ "variant": "",
95
+ "screentype_context": "main",
96
+ "screentype_id": "master_detail",
97
+ "properties": [
98
+ { "col": "category_id", "datatype": "int", "control_type": "" },
99
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
100
+ ]
101
+ },
102
+ {
103
+ "subject": "category",
104
+ "variant": "",
105
+ "screentype_context": "popup",
106
+ "screentype_id": "look_up_popup",
107
+ "properties": [
108
+ { "col": "category_id", "datatype": "int", "control_type": "" },
109
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
110
+ ]
111
+ },
112
+ {
113
+ "subject": "category",
114
+ "variant": "",
115
+ "screentype_context": "zoom",
116
+ "screentype_id": "master_detail_no_filter",
117
+ "properties": [
118
+ { "col": "category_id", "datatype": "int", "control_type": "" },
119
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" }
120
+ ]
121
+ },
122
+ {
123
+ "subject": "cube_table",
124
+ "variant": "",
125
+ "screentype_context": "detail",
126
+ "screentype_id": "cube",
127
+ "properties": [
128
+ { "col": "cube_id", "datatype": "int", "control_type": "" },
129
+ { "col": "cube_product", "datatype": "varchar(100)", "control_type": "" },
130
+ { "col": "cube_product_qty", "datatype": "int", "control_type": "" },
131
+ { "col": "cube_price", "datatype": "numeric(10, 2)", "control_type": "" },
132
+ { "col": "cube_order_status", "datatype": "tinyint", "control_type": "COMBO" }
133
+ ]
134
+ },
135
+ {
136
+ "subject": "cube_table",
137
+ "variant": "",
138
+ "screentype_context": "main",
139
+ "screentype_id": "cube",
140
+ "properties": [
141
+ { "col": "cube_id", "datatype": "int", "control_type": "" },
142
+ { "col": "cube_product", "datatype": "varchar(100)", "control_type": "" },
143
+ { "col": "cube_product_qty", "datatype": "int", "control_type": "" },
144
+ { "col": "cube_price", "datatype": "numeric(10, 2)", "control_type": "" },
145
+ { "col": "cube_order_status", "datatype": "tinyint", "control_type": "COMBO" }
146
+ ]
147
+ },
148
+ {
149
+ "subject": "cube_table",
150
+ "variant": "",
151
+ "screentype_context": "popup",
152
+ "screentype_id": "cube",
153
+ "properties": [
154
+ { "col": "cube_id", "datatype": "int", "control_type": "" },
155
+ { "col": "cube_product", "datatype": "varchar(100)", "control_type": "" },
156
+ { "col": "cube_product_qty", "datatype": "int", "control_type": "" },
157
+ { "col": "cube_price", "datatype": "numeric(10, 2)", "control_type": "" },
158
+ { "col": "cube_order_status", "datatype": "tinyint", "control_type": "COMBO" }
159
+ ]
160
+ },
161
+ {
162
+ "subject": "cube_table",
163
+ "variant": "",
164
+ "screentype_context": "zoom",
165
+ "screentype_id": "cube",
166
+ "properties": [
167
+ { "col": "cube_id", "datatype": "int", "control_type": "" },
168
+ { "col": "cube_product", "datatype": "varchar(100)", "control_type": "" },
169
+ { "col": "cube_product_qty", "datatype": "int", "control_type": "" },
170
+ { "col": "cube_price", "datatype": "numeric(10, 2)", "control_type": "" },
171
+ { "col": "cube_order_status", "datatype": "tinyint", "control_type": "COMBO" }
172
+ ]
173
+ },
174
+ {
175
+ "subject": "customer",
176
+ "variant": "",
177
+ "screentype_context": "detail",
178
+ "screentype_id": "master_detail_no_filter",
179
+ "properties": [
180
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
181
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
182
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
183
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
184
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" }
185
+ ]
186
+ },
187
+ {
188
+ "subject": "customer",
189
+ "variant": "",
190
+ "screentype_context": "main",
191
+ "screentype_id": "master_detail",
192
+ "properties": [
193
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
194
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
195
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
196
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
197
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" }
198
+ ]
199
+ },
200
+ {
201
+ "subject": "customer",
202
+ "variant": "",
203
+ "screentype_context": "popup",
204
+ "screentype_id": "look_up_popup",
205
+ "properties": [
206
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
207
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
208
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
209
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
210
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" }
211
+ ]
212
+ },
213
+ {
214
+ "subject": "customer",
215
+ "variant": "",
216
+ "screentype_context": "zoom",
217
+ "screentype_id": "master_detail_no_filter",
218
+ "properties": [
219
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
220
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
221
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
222
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
223
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" }
224
+ ]
225
+ },
226
+ {
227
+ "subject": "order_row",
228
+ "variant": "",
229
+ "screentype_context": "detail",
230
+ "screentype_id": "master_detail",
231
+ "properties": [
232
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
233
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
234
+ { "col": "order_row_id", "datatype": "int", "control_type": "" },
235
+ { "col": "product_id", "datatype": "int", "control_type": "suggestion_starts_with" },
236
+ { "col": "quantity", "datatype": "int", "control_type": "" },
237
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" }
238
+ ]
239
+ },
240
+ {
241
+ "subject": "order_row",
242
+ "variant": "",
243
+ "screentype_context": "main",
244
+ "screentype_id": "master_detail",
245
+ "properties": [
246
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
247
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
248
+ { "col": "order_row_id", "datatype": "int", "control_type": "" },
249
+ { "col": "product_id", "datatype": "int", "control_type": "suggestion_starts_with" },
250
+ { "col": "quantity", "datatype": "int", "control_type": "" },
251
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" }
252
+ ]
253
+ },
254
+ {
255
+ "subject": "order_row",
256
+ "variant": "",
257
+ "screentype_context": "popup",
258
+ "screentype_id": "look_up_popup",
259
+ "properties": [
260
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
261
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
262
+ { "col": "order_row_id", "datatype": "int", "control_type": "" },
263
+ { "col": "product_id", "datatype": "int", "control_type": "suggestion_starts_with" },
264
+ { "col": "quantity", "datatype": "int", "control_type": "" },
265
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" }
266
+ ]
267
+ },
268
+ {
269
+ "subject": "order_row",
270
+ "variant": "",
271
+ "screentype_context": "zoom",
272
+ "screentype_id": "master_detail",
273
+ "properties": [
274
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
275
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
276
+ { "col": "order_row_id", "datatype": "int", "control_type": "" },
277
+ { "col": "product_id", "datatype": "int", "control_type": "suggestion_starts_with" },
278
+ { "col": "quantity", "datatype": "int", "control_type": "" },
279
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" }
280
+ ]
281
+ },
282
+ {
283
+ "subject": "payment",
284
+ "variant": "",
285
+ "screentype_context": "detail",
286
+ "screentype_id": "master_detail_no_filter",
287
+ "properties": [
288
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
289
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
290
+ { "col": "payment_id", "datatype": "int", "control_type": "" },
291
+ { "col": "amount", "datatype": "numeric(10, 2)", "control_type": "" },
292
+ { "col": "payment_method", "datatype": "tinyint", "control_type": "" },
293
+ { "col": "status", "datatype": "tinyint", "control_type": "" }
294
+ ]
295
+ },
296
+ {
297
+ "subject": "payment",
298
+ "variant": "",
299
+ "screentype_context": "main",
300
+ "screentype_id": "master_detail",
301
+ "properties": [
302
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
303
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
304
+ { "col": "payment_id", "datatype": "int", "control_type": "" },
305
+ { "col": "amount", "datatype": "numeric(10, 2)", "control_type": "" },
306
+ { "col": "payment_method", "datatype": "tinyint", "control_type": "" },
307
+ { "col": "status", "datatype": "tinyint", "control_type": "" }
308
+ ]
309
+ },
310
+ {
311
+ "subject": "payment",
312
+ "variant": "",
313
+ "screentype_context": "popup",
314
+ "screentype_id": "look_up_popup",
315
+ "properties": [
316
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
317
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
318
+ { "col": "payment_id", "datatype": "int", "control_type": "" },
319
+ { "col": "amount", "datatype": "numeric(10, 2)", "control_type": "" },
320
+ { "col": "payment_method", "datatype": "tinyint", "control_type": "" },
321
+ { "col": "status", "datatype": "tinyint", "control_type": "" }
322
+ ]
323
+ },
324
+ {
325
+ "subject": "payment",
326
+ "variant": "",
327
+ "screentype_context": "zoom",
328
+ "screentype_id": "master_detail_no_filter",
329
+ "properties": [
330
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
331
+ { "col": "sales_order_id", "datatype": "int", "control_type": "suggestion_starts_with" },
332
+ { "col": "payment_id", "datatype": "int", "control_type": "" },
333
+ { "col": "amount", "datatype": "numeric(10, 2)", "control_type": "" },
334
+ { "col": "payment_method", "datatype": "tinyint", "control_type": "" },
335
+ { "col": "status", "datatype": "tinyint", "control_type": "" }
336
+ ]
337
+ },
338
+ {
339
+ "subject": "prefilter_off",
340
+ "variant": "",
341
+ "screentype_context": "detail",
342
+ "screentype_id": "master_detail_no_filter",
343
+ "properties": [
344
+ { "col": "id", "datatype": "int", "control_type": "" },
345
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
346
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
347
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
348
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
349
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
350
+ ]
351
+ },
352
+ {
353
+ "subject": "prefilter_off",
354
+ "variant": "",
355
+ "screentype_context": "main",
356
+ "screentype_id": "master_detail",
357
+ "properties": [
358
+ { "col": "id", "datatype": "int", "control_type": "" },
359
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
360
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
361
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
362
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
363
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
364
+ ]
365
+ },
366
+ {
367
+ "subject": "prefilter_off",
368
+ "variant": "",
369
+ "screentype_context": "popup",
370
+ "screentype_id": "look_up_popup",
371
+ "properties": [
372
+ { "col": "id", "datatype": "int", "control_type": "" },
373
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
374
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
375
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
376
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
377
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
378
+ ]
379
+ },
380
+ {
381
+ "subject": "prefilter_off",
382
+ "variant": "",
383
+ "screentype_context": "zoom",
384
+ "screentype_id": "master_detail_no_filter",
385
+ "properties": [
386
+ { "col": "id", "datatype": "int", "control_type": "" },
387
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
388
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
389
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
390
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
391
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
392
+ ]
393
+ },
394
+ {
395
+ "subject": "prefilter_off_hidden",
396
+ "variant": "",
397
+ "screentype_context": "detail",
398
+ "screentype_id": "master_detail_no_filter",
399
+ "properties": [
400
+ { "col": "id", "datatype": "int", "control_type": "" },
401
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
402
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
403
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
404
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
405
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
406
+ ]
407
+ },
408
+ {
409
+ "subject": "prefilter_off_hidden",
410
+ "variant": "",
411
+ "screentype_context": "main",
412
+ "screentype_id": "master_detail",
413
+ "properties": [
414
+ { "col": "id", "datatype": "int", "control_type": "" },
415
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
416
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
417
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
418
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
419
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
420
+ ]
421
+ },
422
+ {
423
+ "subject": "prefilter_off_hidden",
424
+ "variant": "",
425
+ "screentype_context": "popup",
426
+ "screentype_id": "look_up_popup",
427
+ "properties": [
428
+ { "col": "id", "datatype": "int", "control_type": "" },
429
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
430
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
431
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
432
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
433
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
434
+ ]
435
+ },
436
+ {
437
+ "subject": "prefilter_off_hidden",
438
+ "variant": "",
439
+ "screentype_context": "zoom",
440
+ "screentype_id": "master_detail_no_filter",
441
+ "properties": [
442
+ { "col": "id", "datatype": "int", "control_type": "" },
443
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
444
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
445
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
446
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
447
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
448
+ ]
449
+ },
450
+ {
451
+ "subject": "prefilter_on",
452
+ "variant": "",
453
+ "screentype_context": "detail",
454
+ "screentype_id": "master_detail_no_filter",
455
+ "properties": [
456
+ { "col": "id", "datatype": "int", "control_type": "" },
457
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
458
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
459
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
460
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
461
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
462
+ ]
463
+ },
464
+ {
465
+ "subject": "prefilter_on",
466
+ "variant": "",
467
+ "screentype_context": "main",
468
+ "screentype_id": "master_detail",
469
+ "properties": [
470
+ { "col": "id", "datatype": "int", "control_type": "" },
471
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
472
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
473
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
474
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
475
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
476
+ ]
477
+ },
478
+ {
479
+ "subject": "prefilter_on",
480
+ "variant": "",
481
+ "screentype_context": "popup",
482
+ "screentype_id": "look_up_popup",
483
+ "properties": [
484
+ { "col": "id", "datatype": "int", "control_type": "" },
485
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
486
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
487
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
488
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
489
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
490
+ ]
491
+ },
492
+ {
493
+ "subject": "prefilter_on",
494
+ "variant": "",
495
+ "screentype_context": "zoom",
496
+ "screentype_id": "master_detail_no_filter",
497
+ "properties": [
498
+ { "col": "id", "datatype": "int", "control_type": "" },
499
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
500
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
501
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
502
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
503
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
504
+ ]
505
+ },
506
+ {
507
+ "subject": "prefilter_on_hidden",
508
+ "variant": "",
509
+ "screentype_context": "detail",
510
+ "screentype_id": "master_detail_no_filter",
511
+ "properties": [
512
+ { "col": "id", "datatype": "int", "control_type": "" },
513
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
514
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
515
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
516
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
517
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
518
+ ]
519
+ },
520
+ {
521
+ "subject": "prefilter_on_hidden",
522
+ "variant": "",
523
+ "screentype_context": "main",
524
+ "screentype_id": "master_detail",
525
+ "properties": [
526
+ { "col": "id", "datatype": "int", "control_type": "" },
527
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
528
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
529
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
530
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
531
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
532
+ ]
533
+ },
534
+ {
535
+ "subject": "prefilter_on_hidden",
536
+ "variant": "",
537
+ "screentype_context": "popup",
538
+ "screentype_id": "look_up_popup",
539
+ "properties": [
540
+ { "col": "id", "datatype": "int", "control_type": "" },
541
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
542
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
543
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
544
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
545
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
546
+ ]
547
+ },
548
+ {
549
+ "subject": "prefilter_on_hidden",
550
+ "variant": "",
551
+ "screentype_context": "zoom",
552
+ "screentype_id": "master_detail_no_filter",
553
+ "properties": [
554
+ { "col": "id", "datatype": "int", "control_type": "" },
555
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
556
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
557
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
558
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
559
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
560
+ ]
561
+ },
562
+ {
563
+ "subject": "prefilter_on_locked",
564
+ "variant": "",
565
+ "screentype_context": "detail",
566
+ "screentype_id": "master_detail_no_filter",
567
+ "properties": [
568
+ { "col": "id", "datatype": "int", "control_type": "" },
569
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
570
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
571
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
572
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
573
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
574
+ ]
575
+ },
576
+ {
577
+ "subject": "prefilter_on_locked",
578
+ "variant": "",
579
+ "screentype_context": "main",
580
+ "screentype_id": "master_detail",
581
+ "properties": [
582
+ { "col": "id", "datatype": "int", "control_type": "" },
583
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
584
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
585
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
586
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
587
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
588
+ ]
589
+ },
590
+ {
591
+ "subject": "prefilter_on_locked",
592
+ "variant": "",
593
+ "screentype_context": "popup",
594
+ "screentype_id": "look_up_popup",
595
+ "properties": [
596
+ { "col": "id", "datatype": "int", "control_type": "" },
597
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
598
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
599
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
600
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
601
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
602
+ ]
603
+ },
604
+ {
605
+ "subject": "prefilter_on_locked",
606
+ "variant": "",
607
+ "screentype_context": "zoom",
608
+ "screentype_id": "master_detail_no_filter",
609
+ "properties": [
610
+ { "col": "id", "datatype": "int", "control_type": "" },
611
+ { "col": "state_is_off", "datatype": "bit", "control_type": "CHECKBOX" },
612
+ { "col": "state_is_off_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
613
+ { "col": "state_is_on", "datatype": "bit", "control_type": "CHECKBOX" },
614
+ { "col": "state_is_on_hidden", "datatype": "bit", "control_type": "CHECKBOX" },
615
+ { "col": "state_is_on_locked", "datatype": "bit", "control_type": "CHECKBOX" }
616
+ ]
617
+ },
618
+ {
619
+ "subject": "product",
620
+ "variant": "",
621
+ "screentype_context": "detail",
622
+ "screentype_id": "master_detail_no_filter",
623
+ "properties": [
624
+ { "col": "product_id", "datatype": "int", "control_type": "" },
625
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
626
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
627
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
628
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
629
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
630
+ ]
631
+ },
632
+ {
633
+ "subject": "product",
634
+ "variant": "product_overview",
635
+ "screentype_context": "detail",
636
+ "screentype_id": "master_detail_no_filter",
637
+ "properties": [
638
+ { "col": "product_id", "datatype": "int", "control_type": "" },
639
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
640
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
641
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
642
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
643
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
644
+ ]
645
+ },
646
+ {
647
+ "subject": "product",
648
+ "variant": "product_overview",
649
+ "screentype_context": "main",
650
+ "screentype_id": "master_detail",
651
+ "properties": [
652
+ { "col": "product_id", "datatype": "int", "control_type": "" },
653
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
654
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
655
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
656
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
657
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
658
+ ]
659
+ },
660
+ {
661
+ "subject": "product",
662
+ "variant": "product_overview",
663
+ "screentype_context": "popup",
664
+ "screentype_id": "look_up_popup",
665
+ "properties": [
666
+ { "col": "product_id", "datatype": "int", "control_type": "" },
667
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
668
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
669
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
670
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
671
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
672
+ ]
673
+ },
674
+ {
675
+ "subject": "product",
676
+ "variant": "product_overview",
677
+ "screentype_context": "zoom",
678
+ "screentype_id": "master_detail_no_filter",
679
+ "properties": [
680
+ { "col": "product_id", "datatype": "int", "control_type": "" },
681
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
682
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
683
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
684
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
685
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
686
+ ]
687
+ },
688
+ {
689
+ "subject": "product",
690
+ "variant": "product_stock",
691
+ "screentype_context": "detail",
692
+ "screentype_id": "master_detail_no_filter",
693
+ "properties": [
694
+ { "col": "product_id", "datatype": "int", "control_type": "" },
695
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
696
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
697
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
698
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
699
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
700
+ ]
701
+ },
702
+ {
703
+ "subject": "product",
704
+ "variant": "product_stock",
705
+ "screentype_context": "main",
706
+ "screentype_id": "master_detail",
707
+ "properties": [
708
+ { "col": "product_id", "datatype": "int", "control_type": "" },
709
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
710
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
711
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
712
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
713
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
714
+ ]
715
+ },
716
+ {
717
+ "subject": "product",
718
+ "variant": "product_stock",
719
+ "screentype_context": "popup",
720
+ "screentype_id": "look_up_popup",
721
+ "properties": [
722
+ { "col": "product_id", "datatype": "int", "control_type": "" },
723
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
724
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
725
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
726
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
727
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
728
+ ]
729
+ },
730
+ {
731
+ "subject": "product",
732
+ "variant": "product_stock",
733
+ "screentype_context": "zoom",
734
+ "screentype_id": "master_detail_no_filter",
735
+ "properties": [
736
+ { "col": "product_id", "datatype": "int", "control_type": "" },
737
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
738
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
739
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
740
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
741
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
742
+ ]
743
+ },
744
+ {
745
+ "subject": "product",
746
+ "variant": "",
747
+ "screentype_context": "main",
748
+ "screentype_id": "master_detail",
749
+ "properties": [
750
+ { "col": "product_id", "datatype": "int", "control_type": "" },
751
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
752
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
753
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
754
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
755
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
756
+ ]
757
+ },
758
+ {
759
+ "subject": "product",
760
+ "variant": "",
761
+ "screentype_context": "popup",
762
+ "screentype_id": "look_up_popup",
763
+ "properties": [
764
+ { "col": "product_id", "datatype": "int", "control_type": "" },
765
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
766
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
767
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
768
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
769
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
770
+ ]
771
+ },
772
+ {
773
+ "subject": "product",
774
+ "variant": "",
775
+ "screentype_context": "zoom",
776
+ "screentype_id": "master_detail_no_filter",
777
+ "properties": [
778
+ { "col": "product_id", "datatype": "int", "control_type": "" },
779
+ { "col": "category_id", "datatype": "int", "control_type": "suggestion_starts_with" },
780
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
781
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
782
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
783
+ { "col": "stock_quantity", "datatype": "int", "control_type": "" }
784
+ ]
785
+ },
786
+ {
787
+ "subject": "sales_order",
788
+ "variant": "",
789
+ "screentype_context": "detail",
790
+ "screentype_id": "master_detail_no_filter",
791
+ "properties": [
792
+ { "col": "customer_id", "datatype": "int", "control_type": "suggestion_starts_with" },
793
+ { "col": "sales_order_id", "datatype": "int", "control_type": "" },
794
+ { "col": "status", "datatype": "tinyint", "control_type": "COMBO" },
795
+ { "col": "total_amount", "datatype": "numeric(10, 2)", "control_type": "" }
796
+ ]
797
+ },
798
+ {
799
+ "subject": "sales_order",
800
+ "variant": "",
801
+ "screentype_context": "main",
802
+ "screentype_id": "master_detail",
803
+ "properties": [
804
+ { "col": "customer_id", "datatype": "int", "control_type": "suggestion_starts_with" },
805
+ { "col": "sales_order_id", "datatype": "int", "control_type": "" },
806
+ { "col": "status", "datatype": "tinyint", "control_type": "COMBO" },
807
+ { "col": "total_amount", "datatype": "numeric(10, 2)", "control_type": "" }
808
+ ]
809
+ },
810
+ {
811
+ "subject": "sales_order",
812
+ "variant": "",
813
+ "screentype_context": "popup",
814
+ "screentype_id": "look_up_popup",
815
+ "properties": [
816
+ { "col": "customer_id", "datatype": "int", "control_type": "suggestion_starts_with" },
817
+ { "col": "sales_order_id", "datatype": "int", "control_type": "" },
818
+ { "col": "status", "datatype": "tinyint", "control_type": "COMBO" },
819
+ { "col": "total_amount", "datatype": "numeric(10, 2)", "control_type": "" }
820
+ ]
821
+ },
822
+ {
823
+ "subject": "sales_order",
824
+ "variant": "",
825
+ "screentype_context": "zoom",
826
+ "screentype_id": "master_detail_no_filter",
827
+ "properties": [
828
+ { "col": "customer_id", "datatype": "int", "control_type": "suggestion_starts_with" },
829
+ { "col": "sales_order_id", "datatype": "int", "control_type": "" },
830
+ { "col": "status", "datatype": "tinyint", "control_type": "COMBO" },
831
+ { "col": "total_amount", "datatype": "numeric(10, 2)", "control_type": "" }
832
+ ]
833
+ },
834
+ {
835
+ "subject": "tenant",
836
+ "variant": "",
837
+ "screentype_context": "detail",
838
+ "screentype_id": "master_detail_no_filter",
839
+ "properties": [
840
+ { "col": "id", "datatype": "int", "control_type": "" },
841
+ { "col": "tenant_id", "datatype": "tinyint", "control_type": "" },
842
+ { "col": "tenant_info", "datatype": "varchar(max)", "control_type": "MULTILINE" },
843
+ { "col": "filter_field", "datatype": "varchar(100)", "control_type": "" }
844
+ ]
845
+ },
846
+ {
847
+ "subject": "tenant",
848
+ "variant": "",
849
+ "screentype_context": "main",
850
+ "screentype_id": "master_detail",
851
+ "properties": [
852
+ { "col": "id", "datatype": "int", "control_type": "" },
853
+ { "col": "tenant_id", "datatype": "tinyint", "control_type": "" },
854
+ { "col": "tenant_info", "datatype": "varchar(max)", "control_type": "MULTILINE" },
855
+ { "col": "filter_field", "datatype": "varchar(100)", "control_type": "" }
856
+ ]
857
+ },
858
+ {
859
+ "subject": "tenant",
860
+ "variant": "",
861
+ "screentype_context": "popup",
862
+ "screentype_id": "look_up_popup",
863
+ "properties": [
864
+ { "col": "id", "datatype": "int", "control_type": "" },
865
+ { "col": "tenant_id", "datatype": "tinyint", "control_type": "" },
866
+ { "col": "tenant_info", "datatype": "varchar(max)", "control_type": "MULTILINE" },
867
+ { "col": "filter_field", "datatype": "varchar(100)", "control_type": "" }
868
+ ]
869
+ },
870
+ {
871
+ "subject": "tenant",
872
+ "variant": "",
873
+ "screentype_context": "zoom",
874
+ "screentype_id": "master_detail_no_filter",
875
+ "properties": [
876
+ { "col": "id", "datatype": "int", "control_type": "" },
877
+ { "col": "tenant_id", "datatype": "tinyint", "control_type": "" },
878
+ { "col": "tenant_info", "datatype": "varchar(max)", "control_type": "MULTILINE" },
879
+ { "col": "filter_field", "datatype": "varchar(100)", "control_type": "" }
880
+ ]
881
+ },
882
+ {
883
+ "subject": "user_details",
884
+ "variant": "",
885
+ "screentype_context": "detail",
886
+ "screentype_id": "master_detail_no_filter",
887
+ "properties": [
888
+ { "col": "tsf_user", "datatype": "varchar(128)", "control_type": "" },
889
+ { "col": "tfs_original_login", "datatype": "varchar(128)", "control_type": "" }
890
+ ]
891
+ },
892
+ {
893
+ "subject": "user_details",
894
+ "variant": "",
895
+ "screentype_context": "main",
896
+ "screentype_id": "form_only",
897
+ "properties": [
898
+ { "col": "tsf_user", "datatype": "varchar(128)", "control_type": "" },
899
+ { "col": "tfs_original_login", "datatype": "varchar(128)", "control_type": "" }
900
+ ]
901
+ },
902
+ {
903
+ "subject": "user_details",
904
+ "variant": "",
905
+ "screentype_context": "popup",
906
+ "screentype_id": "look_up_popup",
907
+ "properties": [
908
+ { "col": "tsf_user", "datatype": "varchar(128)", "control_type": "" },
909
+ { "col": "tfs_original_login", "datatype": "varchar(128)", "control_type": "" }
910
+ ]
911
+ },
912
+ {
913
+ "subject": "user_details",
914
+ "variant": "",
915
+ "screentype_context": "zoom",
916
+ "screentype_id": "master_detail_no_filter",
917
+ "properties": [
918
+ { "col": "tsf_user", "datatype": "varchar(128)", "control_type": "" },
919
+ { "col": "tfs_original_login", "datatype": "varchar(128)", "control_type": "" }
920
+ ]
921
+ },
922
+ {
923
+ "subject": "view_customer",
924
+ "variant": "",
925
+ "screentype_context": "detail",
926
+ "screentype_id": "master_detail_no_filter",
927
+ "properties": [
928
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
929
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
930
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
931
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
932
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
933
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
934
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
935
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
936
+ ]
937
+ },
938
+ {
939
+ "subject": "view_customer",
940
+ "variant": "view_customer_with_card_list",
941
+ "screentype_context": "detail",
942
+ "screentype_id": "master_detail_no_filter",
943
+ "properties": [
944
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
945
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
946
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
947
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
948
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
949
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
950
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
951
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
952
+ ]
953
+ },
954
+ {
955
+ "subject": "view_customer",
956
+ "variant": "view_customer_with_card_list",
957
+ "screentype_context": "main",
958
+ "screentype_id": "grid_with_card_list",
959
+ "properties": [
960
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
961
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
962
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
963
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
964
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
965
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
966
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
967
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
968
+ ]
969
+ },
970
+ {
971
+ "subject": "view_customer",
972
+ "variant": "view_customer_with_card_list",
973
+ "screentype_context": "popup",
974
+ "screentype_id": "look_up_popup",
975
+ "properties": [
976
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
977
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
978
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
979
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
980
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
981
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
982
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
983
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
984
+ ]
985
+ },
986
+ {
987
+ "subject": "view_customer",
988
+ "variant": "view_customer_with_card_list",
989
+ "screentype_context": "zoom",
990
+ "screentype_id": "master_detail_no_filter",
991
+ "properties": [
992
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
993
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
994
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
995
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
996
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
997
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
998
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
999
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1000
+ ]
1001
+ },
1002
+ {
1003
+ "subject": "view_customer",
1004
+ "variant": "view_customer_with_cube_chart",
1005
+ "screentype_context": "detail",
1006
+ "screentype_id": "master_detail_no_filter",
1007
+ "properties": [
1008
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1009
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1010
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1011
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1012
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1013
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1014
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1015
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1016
+ ]
1017
+ },
1018
+ {
1019
+ "subject": "view_customer",
1020
+ "variant": "view_customer_with_cube_chart",
1021
+ "screentype_context": "main",
1022
+ "screentype_id": "view_customer_cube",
1023
+ "properties": [
1024
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1025
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1026
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1027
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1028
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1029
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1030
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1031
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1032
+ ]
1033
+ },
1034
+ {
1035
+ "subject": "view_customer",
1036
+ "variant": "view_customer_with_cube_chart",
1037
+ "screentype_context": "popup",
1038
+ "screentype_id": "look_up_popup",
1039
+ "properties": [
1040
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1041
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1042
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1043
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1044
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1045
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1046
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1047
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1048
+ ]
1049
+ },
1050
+ {
1051
+ "subject": "view_customer",
1052
+ "variant": "view_customer_with_cube_chart",
1053
+ "screentype_context": "zoom",
1054
+ "screentype_id": "master_detail_no_filter",
1055
+ "properties": [
1056
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1057
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1058
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1059
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1060
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1061
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1062
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1063
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1064
+ ]
1065
+ },
1066
+ {
1067
+ "subject": "view_customer",
1068
+ "variant": "view_customer_with_filter_form",
1069
+ "screentype_context": "detail",
1070
+ "screentype_id": "master_detail_no_filter",
1071
+ "properties": [
1072
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1073
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1074
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1075
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1076
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1077
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1078
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1079
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1080
+ ]
1081
+ },
1082
+ {
1083
+ "subject": "view_customer",
1084
+ "variant": "view_customer_with_filter_form",
1085
+ "screentype_context": "main",
1086
+ "screentype_id": "grid_with_filter_form",
1087
+ "properties": [
1088
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1089
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1090
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1091
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1092
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1093
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1094
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1095
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1096
+ ]
1097
+ },
1098
+ {
1099
+ "subject": "view_customer",
1100
+ "variant": "view_customer_with_filter_form",
1101
+ "screentype_context": "popup",
1102
+ "screentype_id": "look_up_popup",
1103
+ "properties": [
1104
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1105
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1106
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1107
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1108
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1109
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1110
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1111
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1112
+ ]
1113
+ },
1114
+ {
1115
+ "subject": "view_customer",
1116
+ "variant": "view_customer_with_filter_form",
1117
+ "screentype_context": "zoom",
1118
+ "screentype_id": "master_detail_no_filter",
1119
+ "properties": [
1120
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1121
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1122
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1123
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1124
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1125
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1126
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1127
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1128
+ ]
1129
+ },
1130
+ {
1131
+ "subject": "view_customer",
1132
+ "variant": "view_customer_with_map",
1133
+ "screentype_context": "detail",
1134
+ "screentype_id": "master_detail_no_filter",
1135
+ "properties": [
1136
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1137
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1138
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1139
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1140
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1141
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1142
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1143
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1144
+ ]
1145
+ },
1146
+ {
1147
+ "subject": "view_customer",
1148
+ "variant": "view_customer_with_map",
1149
+ "screentype_context": "main",
1150
+ "screentype_id": "grid_with_map",
1151
+ "properties": [
1152
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1153
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1154
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1155
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1156
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1157
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1158
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1159
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1160
+ ]
1161
+ },
1162
+ {
1163
+ "subject": "view_customer",
1164
+ "variant": "view_customer_with_map",
1165
+ "screentype_context": "popup",
1166
+ "screentype_id": "look_up_popup",
1167
+ "properties": [
1168
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1169
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1170
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1171
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1172
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1173
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1174
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1175
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1176
+ ]
1177
+ },
1178
+ {
1179
+ "subject": "view_customer",
1180
+ "variant": "view_customer_with_map",
1181
+ "screentype_context": "zoom",
1182
+ "screentype_id": "master_detail_no_filter",
1183
+ "properties": [
1184
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1185
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1186
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1187
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1188
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1189
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1190
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1191
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "subject": "view_customer",
1196
+ "variant": "view_customer_with_prefilter_bar",
1197
+ "screentype_context": "detail",
1198
+ "screentype_id": "master_detail_no_filter",
1199
+ "properties": [
1200
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1201
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1202
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1203
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1204
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1205
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1206
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1207
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1208
+ ]
1209
+ },
1210
+ {
1211
+ "subject": "view_customer",
1212
+ "variant": "view_customer_with_prefilter_bar",
1213
+ "screentype_context": "main",
1214
+ "screentype_id": "grid_with_prefilter_bar",
1215
+ "properties": [
1216
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1217
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1218
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1219
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1220
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1221
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1222
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1223
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "subject": "view_customer",
1228
+ "variant": "view_customer_with_prefilter_bar",
1229
+ "screentype_context": "popup",
1230
+ "screentype_id": "look_up_popup",
1231
+ "properties": [
1232
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1233
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1234
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1235
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1236
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1237
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1238
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1239
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1240
+ ]
1241
+ },
1242
+ {
1243
+ "subject": "view_customer",
1244
+ "variant": "view_customer_with_prefilter_bar",
1245
+ "screentype_context": "zoom",
1246
+ "screentype_id": "master_detail_no_filter",
1247
+ "properties": [
1248
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1249
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1250
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1251
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1252
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1253
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1254
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1255
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1256
+ ]
1257
+ },
1258
+ {
1259
+ "subject": "view_customer",
1260
+ "variant": "view_customer_with_report_bar",
1261
+ "screentype_context": "detail",
1262
+ "screentype_id": "master_detail_no_filter",
1263
+ "properties": [
1264
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1265
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1266
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1267
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1268
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1269
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1270
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1271
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1272
+ ]
1273
+ },
1274
+ {
1275
+ "subject": "view_customer",
1276
+ "variant": "view_customer_with_report_bar",
1277
+ "screentype_context": "main",
1278
+ "screentype_id": "grid_with_report_bar",
1279
+ "properties": [
1280
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1281
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1282
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1283
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1284
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1285
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1286
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1287
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1288
+ ]
1289
+ },
1290
+ {
1291
+ "subject": "view_customer",
1292
+ "variant": "view_customer_with_report_bar",
1293
+ "screentype_context": "popup",
1294
+ "screentype_id": "look_up_popup",
1295
+ "properties": [
1296
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1297
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1298
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1299
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1300
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1301
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1302
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1303
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1304
+ ]
1305
+ },
1306
+ {
1307
+ "subject": "view_customer",
1308
+ "variant": "view_customer_with_report_bar",
1309
+ "screentype_context": "zoom",
1310
+ "screentype_id": "master_detail_no_filter",
1311
+ "properties": [
1312
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1313
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1314
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1315
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1316
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1317
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1318
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1319
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1320
+ ]
1321
+ },
1322
+ {
1323
+ "subject": "view_customer",
1324
+ "variant": "view_customer_with_report_tiles",
1325
+ "screentype_context": "detail",
1326
+ "screentype_id": "master_detail_no_filter",
1327
+ "properties": [
1328
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1329
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1330
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1331
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1332
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1333
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1334
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1335
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1336
+ ]
1337
+ },
1338
+ {
1339
+ "subject": "view_customer",
1340
+ "variant": "view_customer_with_report_tiles",
1341
+ "screentype_context": "main",
1342
+ "screentype_id": "grid_with_report_tiles",
1343
+ "properties": [
1344
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1345
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1346
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1347
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1348
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1349
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1350
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1351
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1352
+ ]
1353
+ },
1354
+ {
1355
+ "subject": "view_customer",
1356
+ "variant": "view_customer_with_report_tiles",
1357
+ "screentype_context": "popup",
1358
+ "screentype_id": "look_up_popup",
1359
+ "properties": [
1360
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1361
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1362
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1363
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1364
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1365
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1366
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1367
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1368
+ ]
1369
+ },
1370
+ {
1371
+ "subject": "view_customer",
1372
+ "variant": "view_customer_with_report_tiles",
1373
+ "screentype_context": "zoom",
1374
+ "screentype_id": "master_detail_no_filter",
1375
+ "properties": [
1376
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1377
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1378
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1379
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1380
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1381
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1382
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1383
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1384
+ ]
1385
+ },
1386
+ {
1387
+ "subject": "view_customer",
1388
+ "variant": "",
1389
+ "screentype_context": "main",
1390
+ "screentype_id": "master_detail",
1391
+ "properties": [
1392
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1393
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1394
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1395
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1396
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1397
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1398
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1399
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1400
+ ]
1401
+ },
1402
+ {
1403
+ "subject": "view_customer",
1404
+ "variant": "",
1405
+ "screentype_context": "popup",
1406
+ "screentype_id": "look_up_popup",
1407
+ "properties": [
1408
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1409
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1410
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1411
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1412
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1413
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1414
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1415
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1416
+ ]
1417
+ },
1418
+ {
1419
+ "subject": "view_customer",
1420
+ "variant": "",
1421
+ "screentype_context": "zoom",
1422
+ "screentype_id": "master_detail_no_filter",
1423
+ "properties": [
1424
+ { "col": "customer_id", "datatype": "int", "control_type": "" },
1425
+ { "col": "first_name", "datatype": "varchar(100)", "control_type": "" },
1426
+ { "col": "last_name", "datatype": "varchar(100)", "control_type": "" },
1427
+ { "col": "email", "datatype": "varchar(255)", "control_type": "EMAIL" },
1428
+ { "col": "phone", "datatype": "varchar(20)", "control_type": "PHONE_NUMBER" },
1429
+ { "col": "customer_location_type", "datatype": "varchar(20)", "control_type": "IMAGE_COMBO" },
1430
+ { "col": "customer_location_coordinates", "datatype": "nvarchar(1000)", "control_type": "" },
1431
+ { "col": "popup_content", "datatype": "varchar(100)", "control_type": "" }
1432
+ ]
1433
+ },
1434
+ {
1435
+ "subject": "view_mock_scheduler",
1436
+ "variant": "",
1437
+ "screentype_context": "detail",
1438
+ "screentype_id": "master_detail_no_filter",
1439
+ "properties": [
1440
+ { "col": "scheduler_id", "datatype": "int", "control_type": "" },
1441
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1442
+ { "col": "start_date", "datatype": "date", "control_type": "DATE" },
1443
+ { "col": "end_date", "datatype": "date", "control_type": "DATE" },
1444
+ { "col": "scheduler_status", "datatype": "varchar(100)", "control_type": "" }
1445
+ ]
1446
+ },
1447
+ {
1448
+ "subject": "view_mock_scheduler",
1449
+ "variant": "",
1450
+ "screentype_context": "main",
1451
+ "screentype_id": "scheduler",
1452
+ "properties": [
1453
+ { "col": "scheduler_id", "datatype": "int", "control_type": "" },
1454
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1455
+ { "col": "start_date", "datatype": "date", "control_type": "DATE" },
1456
+ { "col": "end_date", "datatype": "date", "control_type": "DATE" },
1457
+ { "col": "scheduler_status", "datatype": "varchar(100)", "control_type": "" }
1458
+ ]
1459
+ },
1460
+ {
1461
+ "subject": "view_mock_scheduler",
1462
+ "variant": "",
1463
+ "screentype_context": "popup",
1464
+ "screentype_id": "look_up_popup",
1465
+ "properties": [
1466
+ { "col": "scheduler_id", "datatype": "int", "control_type": "" },
1467
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1468
+ { "col": "start_date", "datatype": "date", "control_type": "DATE" },
1469
+ { "col": "end_date", "datatype": "date", "control_type": "DATE" },
1470
+ { "col": "scheduler_status", "datatype": "varchar(100)", "control_type": "" }
1471
+ ]
1472
+ },
1473
+ {
1474
+ "subject": "view_mock_scheduler",
1475
+ "variant": "",
1476
+ "screentype_context": "zoom",
1477
+ "screentype_id": "master_detail_no_filter",
1478
+ "properties": [
1479
+ { "col": "scheduler_id", "datatype": "int", "control_type": "" },
1480
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1481
+ { "col": "start_date", "datatype": "date", "control_type": "DATE" },
1482
+ { "col": "end_date", "datatype": "date", "control_type": "DATE" },
1483
+ { "col": "scheduler_status", "datatype": "varchar(100)", "control_type": "" }
1484
+ ]
1485
+ },
1486
+ {
1487
+ "subject": "view_mock_tree",
1488
+ "variant": "",
1489
+ "screentype_context": "detail",
1490
+ "screentype_id": "master_detail_no_filter",
1491
+ "properties": [
1492
+ { "col": "node_id", "datatype": "int", "control_type": "" },
1493
+ { "col": "parent_id", "datatype": "int", "control_type": "" },
1494
+ { "col": "node_name", "datatype": "varchar(100)", "control_type": "" },
1495
+ { "col": "sort_order", "datatype": "int", "control_type": "" }
1496
+ ]
1497
+ },
1498
+ {
1499
+ "subject": "view_mock_tree",
1500
+ "variant": "",
1501
+ "screentype_context": "main",
1502
+ "screentype_id": "form_with_tree",
1503
+ "properties": [
1504
+ { "col": "node_id", "datatype": "int", "control_type": "" },
1505
+ { "col": "parent_id", "datatype": "int", "control_type": "" },
1506
+ { "col": "node_name", "datatype": "varchar(100)", "control_type": "" },
1507
+ { "col": "sort_order", "datatype": "int", "control_type": "" }
1508
+ ]
1509
+ },
1510
+ {
1511
+ "subject": "view_mock_tree",
1512
+ "variant": "",
1513
+ "screentype_context": "popup",
1514
+ "screentype_id": "look_up_popup",
1515
+ "properties": [
1516
+ { "col": "node_id", "datatype": "int", "control_type": "" },
1517
+ { "col": "parent_id", "datatype": "int", "control_type": "" },
1518
+ { "col": "node_name", "datatype": "varchar(100)", "control_type": "" },
1519
+ { "col": "sort_order", "datatype": "int", "control_type": "" }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "subject": "view_mock_tree",
1524
+ "variant": "",
1525
+ "screentype_context": "zoom",
1526
+ "screentype_id": "master_detail_no_filter",
1527
+ "properties": [
1528
+ { "col": "node_id", "datatype": "int", "control_type": "" },
1529
+ { "col": "parent_id", "datatype": "int", "control_type": "" },
1530
+ { "col": "node_name", "datatype": "varchar(100)", "control_type": "" },
1531
+ { "col": "sort_order", "datatype": "int", "control_type": "" }
1532
+ ]
1533
+ },
1534
+ {
1535
+ "subject": "view_product_preview",
1536
+ "variant": "",
1537
+ "screentype_context": "detail",
1538
+ "screentype_id": "master_detail_no_filter",
1539
+ "properties": [
1540
+ { "col": "product_id", "datatype": "int", "control_type": "" },
1541
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1542
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
1543
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
1544
+ { "col": "url", "datatype": "nvarchar(max)", "control_type": "URL" }
1545
+ ]
1546
+ },
1547
+ {
1548
+ "subject": "view_product_preview",
1549
+ "variant": "",
1550
+ "screentype_context": "main",
1551
+ "screentype_id": "master_detail_with_preview",
1552
+ "properties": [
1553
+ { "col": "product_id", "datatype": "int", "control_type": "" },
1554
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1555
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
1556
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
1557
+ { "col": "url", "datatype": "nvarchar(max)", "control_type": "URL" }
1558
+ ]
1559
+ },
1560
+ {
1561
+ "subject": "view_product_preview",
1562
+ "variant": "",
1563
+ "screentype_context": "popup",
1564
+ "screentype_id": "look_up_popup",
1565
+ "properties": [
1566
+ { "col": "product_id", "datatype": "int", "control_type": "" },
1567
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1568
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
1569
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
1570
+ { "col": "url", "datatype": "nvarchar(max)", "control_type": "URL" }
1571
+ ]
1572
+ },
1573
+ {
1574
+ "subject": "view_product_preview",
1575
+ "variant": "",
1576
+ "screentype_context": "zoom",
1577
+ "screentype_id": "master_detail_no_filter",
1578
+ "properties": [
1579
+ { "col": "product_id", "datatype": "int", "control_type": "" },
1580
+ { "col": "name", "datatype": "varchar(100)", "control_type": "" },
1581
+ { "col": "description", "datatype": "varchar(max)", "control_type": "MULTILINE" },
1582
+ { "col": "price", "datatype": "numeric(10, 2)", "control_type": "" },
1583
+ { "col": "url", "datatype": "nvarchar(max)", "control_type": "URL" }
1584
+ ]
1585
+ }
1586
+ ]