-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.csv
We can't make this file beautiful and searchable because it's too large.
1238 lines (1237 loc) · 872 KB
/
cards.csv
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Card_Id","Assigned_Users","Card_Title","Lane_Id","ExternalSystemName","Lane_Title","Tags","ExternalSystemUrl","Class_Of_Service","Card_Block_State_Change_Date","Card_Size","Card_Is_Blocked","Card_Block_Reason","Index","Card_StartDate","Card_DueDate","Card_Description","Card_Type","Card_Priority","ExternalCardID","ParentCardID","ParentCardIDs","LastMove","LastActivity","Card_DateArchived","ActualStartDate","ActualFinishDate"
"261242200","[email protected]","Create MALT domain model diagramm","251131626","","archive:sprint 3","backend","","","","1","False","","0","","","","Task","Normal","154","","","11/09/2015 09:10:12 AM","11/09/2015 09:10:12 AM","11/09/2015","10/28/2015 01:39:42 PM","10/28/2015 02:25:28 PM"
"261742276","[email protected]","Backend: Setup dev MS SQL environment","251131626","","archive:sprint 3","backend","","","","2","False","","1","","","","Task","Normal","157","","","11/09/2015 09:10:14 AM","11/09/2015 09:10:14 AM","11/09/2015","10/29/2015 03:46:20 PM","10/30/2015 11:25:11 AM"
"262804893","[email protected]","Backend: update domain model with accordance with schemas provided by customer.","251131626","","archive:sprint 3","backend","","","","3","False","","2","","","","Task","Normal","161","","","11/09/2015 09:10:15 AM","11/09/2015 09:10:15 AM","11/09/2015","11/02/2015 11:09:05 AM","11/03/2015 11:37:59 AM"
"263336100","[email protected]","Backend: Setup MALT API backend dev environment","251131626","","archive:sprint 3","backend","","","","2","False","","3","","","","Task","Normal","163","","","11/09/2015 09:10:18 AM","11/09/2015 09:10:18 AM","11/09/2015","11/03/2015 11:38:45 AM","11/03/2015 03:19:19 PM"
"261719341","[email protected]","Backend: Campaign management migration to SQL solution","251131626","","archive:sprint 3","exctension,backend,canceled","","","","5","True","Decision from Ben","4","","","","Task","Normal","156","","","11/09/2015 09:10:20 AM","11/09/2015 09:10:20 AM","11/09/2015","11/06/2015 11:47:34 AM","11/06/2015 11:47:34 AM"
"254672292","","WebUI: Init test environment","251131626","","archive:sprint 3","webui,sprint 2","","","","3","False","","5","10/20/2015","","","Task","Normal","53","","","11/09/2015 10:25:34 AM","11/09/2015 10:25:34 AM","11/09/2015","10/09/2015 04:37:12 PM","10/22/2015 05:39:42 PM"
"256051846","[email protected]","Backend: Push Advertiser changes to Simpli.Fi","251131626","","archive:sprint 3","backend,simpli.fi,advertiser,sprint 3","","","","2","False","","6","","","","Feature","Normal","60","","","12/17/2015 02:55:04 PM","12/17/2015 03:28:39 PM","12/17/2015","12/17/2015 02:55:04 PM","12/17/2015 02:55:04 PM"
"256051853","[email protected]","Backend: Synchronize ad group creation/deletion with simpli.fi","251131626","","archive:sprint 3","backend,simpli.fi,adgroup,sprint 3","","","","3","False","","7","","","","Feature","Normal","63","","","12/17/2015 02:55:47 PM","12/17/2015 03:28:39 PM","12/17/2015","12/17/2015 02:55:47 PM","12/17/2015 02:55:47 PM"
"256069076","[email protected]","Backend: Pull creative statistics from Simpli.Fi","251131626","","archive:sprint 3","backend,simpli.fi,creatives,sprint 3","","","","3","False","","8","","","","Feature","Normal","66","","","12/17/2015 02:55:47 PM","12/17/2015 03:28:40 PM","12/17/2015","12/17/2015 02:55:47 PM","12/17/2015 02:55:47 PM"
"257002662","","WebUI: ""Advertiser Audience"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","2","False","This card has been completed according to current information","9","","","","Feature","Normal","111","","","12/17/2015 02:57:57 PM","12/17/2015 02:57:57 PM","12/17/2015","12/17/2015 02:57:57 PM","12/17/2015 02:57:57 PM"
"257017800","","WebUI: ""Advertiser AdGroups"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","2","False","This card has been completed according to current information","10","","","","Feature","Normal","97","","","12/17/2015 02:57:58 PM","12/17/2015 02:57:58 PM","12/17/2015","12/17/2015 02:57:58 PM","12/17/2015 02:57:58 PM"
"257024039","","WebUI: ""Advertiser Creatives"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","3","False","not applicable","11","","","<p>This one is partially implemented</p>","Feature","Normal","101","274526798","274526798","12/17/2015 02:57:59 PM","12/17/2015 04:24:55 PM","12/17/2015","12/17/2015 02:57:59 PM","12/17/2015 02:57:59 PM"
"257028863","","WebUI: Integration with MV auth service","251131626","","archive:sprint 3","webui,sprint 3","","","","2","False","MV decided to use their internal security service","12","","","<p>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={4E5AEA67-5554-40EC-A1C8-81359C621B7F}&file=MultiView%20Internal%20Security%20Web%20Service.docx&action=default</p>","Feature","Normal","86","","","12/17/2015 03:11:51 PM","12/17/2015 03:27:25 PM","12/17/2015","12/17/2015 02:57:25 PM","12/17/2015 02:57:25 PM"
"257024041","","WebUI: ""Advertiser Segments"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","2","False","This card has been completed according to current information","13","","","","Feature","Normal","106","","","12/17/2015 02:57:59 PM","12/17/2015 02:57:59 PM","12/17/2015","12/17/2015 02:57:59 PM","12/17/2015 02:57:59 PM"
"257026347","","WebUI: ""Advertiser Campaigns"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","2","False","The client gave the answer. The new comment was added to this card.","14","","","","Feature","Normal","93","274526795","274526795","12/17/2015 02:58:00 PM","12/17/2015 02:58:00 PM","12/17/2015","12/17/2015 02:58:00 PM","12/17/2015 02:58:00 PM"
"258634291","","WebUI: ""Advertisers"" page","251131626","","archive:sprint 3","webui,sprint 3","","","","5","False","","15","","","","Feature","Normal","141","","","12/17/2015 02:58:01 PM","12/17/2015 02:58:01 PM","12/17/2015","12/17/2015 02:58:01 PM","12/17/2015 02:58:01 PM"
"256060417","[email protected];[email protected]","Backend: Pull keyword stats from Simpli.Fi","251131626","","archive:sprint 3","simpli.fi,backend,keywords,sprint 3","","","","4","False","","16","","","","Feature","Normal","59","","","12/17/2015 03:02:58 PM","12/17/2015 03:28:39 PM","12/17/2015","12/17/2015 03:02:58 PM","12/17/2015 03:02:58 PM"
"260171779","[email protected]","Backend: synchronize ad group settings update with simpli.fi campaign","251131626","","archive:sprint 3","backend,simpli.fi,adgroup,sprint 3","","","","2","False","","17","","","","Feature","Normal","146","","","12/17/2015 03:03:32 PM","12/17/2015 03:28:40 PM","12/17/2015","12/17/2015 03:03:32 PM","12/17/2015 03:03:32 PM"
"262813497","[email protected];[email protected]","Backend: implement MaltJobs application.","251131626","","archive:sprint 3","backend,budget,sprint 3","","","","3","False","","18","","","","Feature","Normal","162","","","12/17/2015 03:03:57 PM","12/17/2015 03:28:40 PM","12/17/2015","12/17/2015 03:03:57 PM","12/17/2015 03:03:57 PM"
"257578914","[email protected]","Backend: implement common vendor integration mechanism.","251131627","","archive:sprint 2","backend,integration","","","","3","False","","0","","","","Task","Normal","135","","","10/29/2015 12:02:32 PM","10/29/2015 12:02:32 PM","10/29/2015","10/19/2015 08:59:23 AM","10/22/2015 03:47:05 PM"
"257580568","[email protected]","Backend: design pipeline mechanism","251131627","","archive:sprint 2","backend,pipeline","","","","3","False","","1","","","","Task","Normal","136","","","10/29/2015 12:02:34 PM","10/29/2015 12:02:34 PM","10/29/2015","10/19/2015 11:00:59 AM","10/20/2015 11:02:49 AM"
"258619192","[email protected]","Backend: Calculate audience stats","251131627","","archive:sprint 2","backend,audience","","","","2","False","","2","","","","Task","Normal","139","","","10/29/2015 12:02:37 PM","10/29/2015 12:02:37 PM","10/29/2015","10/21/2015 11:10:46 AM","10/22/2015 03:29:44 PM"
"255595079","[email protected]","Implement Simpli.Fi API client","251131627","","archive:sprint 2","backend,simpli.fi","","","","2","False","","3","","","","Task","Normal","57","","","10/29/2015 12:03:14 PM","10/29/2015 12:03:14 PM","10/29/2015","10/13/2015 09:42:46 AM","10/15/2015 11:44:19 AM"
"257026345","","Create MALT WebUI dev environment","251131627","","archive:sprint 2","webui,sprint 2","","","","0","False","","4","","10/23/2015","","Task","Normal","92","","","11/10/2015 11:47:44 AM","11/10/2015 11:47:44 AM","11/10/2015","10/16/2015 10:53:19 AM","11/10/2015 11:47:33 AM"
"256590793","[email protected]","Backend: MV entities should have mapping to external entities","251131627","","archive:sprint 2","backend,advertiser,sprint 2","","","","2","False","","5","","","","Feature","Normal","68","","","12/17/2015 02:56:25 PM","12/17/2015 03:15:49 PM","12/17/2015","12/17/2015 02:56:25 PM","12/17/2015 02:56:25 PM"
"257002632","","WebUI: Login page","251131627","","archive:sprint 2","webui,sprint 2,canceled","","","","0","False","","6","","","","Feature","Normal","69","","","12/17/2015 02:56:35 PM","12/17/2015 02:56:35 PM","12/17/2015","12/17/2015 02:56:35 PM","12/17/2015 02:56:35 PM"
"257002635","","WebUI: Role base access controll","251131627","","archive:sprint 2","webui,sprint 2,canceled","","","","0","False","","7","","","","Feature","Normal","73","","","12/17/2015 02:57:23 PM","12/17/2015 02:57:23 PM","12/17/2015","12/17/2015 02:57:23 PM","12/17/2015 02:57:23 PM"
"257007883","","WebUI: Basic application layout","251131627","","archive:sprint 2","webui,sprint 2","","","","3","False","","8","","","","Feature","Normal","78","","","12/17/2015 02:57:23 PM","12/17/2015 02:57:23 PM","12/17/2015","12/17/2015 02:57:24 PM","12/17/2015 02:57:24 PM"
"257017783","","WebUI: User management page","251131627","","archive:sprint 2","webui,sprint 2,canceled","","","","0","False","MV decided to use their internal security service","9","","","","Feature","Normal","80","","","12/17/2015 02:57:24 PM","12/17/2015 02:57:24 PM","12/17/2015","12/17/2015 02:57:24 PM","12/17/2015 02:57:24 PM"
"254608410","[email protected]","Backend: ad group keywords","251131627","","archive:sprint 2","backend,adgroup,sprint 2","","","","0","False","","10","","","","Feature","Normal","32","","","12/17/2015 03:02:24 PM","12/17/2015 03:15:48 PM","12/17/2015","12/17/2015 03:02:24 PM","12/17/2015 03:02:24 PM"
"254608213","[email protected]","Backend: ad group targeting","251131627","","archive:sprint 2","backend,adgroup,sprint 2","","","","2","False","","11","","","","Feature","Normal","33","","","12/17/2015 03:02:34 PM","12/17/2015 03:15:48 PM","12/17/2015","12/17/2015 03:02:34 PM","12/17/2015 03:02:34 PM"
"254631523","[email protected]","Backend: Daily statistics for advertisers/campaigns/adGroups/creatives ","251131627","","archive:sprint 2","backend,advertiser,sprint 2","","","","0","False","","12","","","","Feature","Normal","39","","","12/17/2015 03:02:47 PM","12/17/2015 03:15:49 PM","12/17/2015","12/17/2015 03:02:47 PM","12/17/2015 03:02:47 PM"
"258609926","[email protected]","Backend: Collect stats for keywords","251131627","","archive:sprint 2","backend,keywords,sprint 2","","","","3","False","","13","","","","Feature","Normal","138","","","12/17/2015 03:03:21 PM","12/17/2015 03:15:50 PM","12/17/2015","12/17/2015 03:03:21 PM","12/17/2015 03:03:21 PM"
"257028866","","WebUI: Allow users to change their setting","251131627","","archive:sprint 2","webui,canceled,sprint 2","","","","0","False","MV decided to use their internal security service","14","","","","Feature","Normal","89","","","12/17/2015 03:18:46 PM","12/17/2015 03:18:46 PM","12/17/2015","12/17/2015 02:58:00 PM","12/17/2015 02:58:00 PM"
"276023008","[email protected]","Backend: setup Jenkins jobs for CI","251131627","","archive:sprint 2","backend","","","","2","False","","15","","","","Task","Low","285","","","12/21/2015 08:20:34 AM","12/21/2015 08:20:34 AM","12/21/2015","12/08/2015 12:54:51 PM","12/15/2015 12:08:03 PM"
"252703140","[email protected]","Create MALT API application skeleton.","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","0","","","","Feature","Normal","","","","12/17/2015 02:52:06 PM","12/17/2015 04:14:42 PM","12/17/2015","12/17/2015 02:52:06 PM","12/17/2015 02:52:06 PM"
"253229606","[email protected]","Implement AdGroup DAO service","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","1","","","","Feature","Normal","","","","12/17/2015 02:54:14 PM","12/17/2015 03:10:04 PM","12/17/2015","12/17/2015 02:54:14 PM","12/17/2015 02:54:14 PM"
"253229607","","Implement Creative DAO Service","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","2","","","","Feature","Normal","","","","12/17/2015 02:54:15 PM","12/17/2015 03:10:04 PM","12/17/2015","12/17/2015 02:54:15 PM","12/17/2015 02:54:15 PM"
"253231721","[email protected]","Implement Campaign DAO service","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","3","","","","Feature","Normal","","","","12/17/2015 02:54:16 PM","12/17/2015 03:10:05 PM","12/17/2015","12/17/2015 02:54:16 PM","12/17/2015 02:54:16 PM"
"253231730","[email protected]","Implement REST endpoint for Campaigns","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","4","","","","Feature","Normal","","","","12/17/2015 02:54:16 PM","12/17/2015 03:10:05 PM","12/17/2015","12/17/2015 02:54:16 PM","12/17/2015 02:54:16 PM"
"253233402","[email protected]","Implement Advertiser DAO Service","251131628","","archive:sprint 1","backend,sprint 1","","","","2","False","","5","","","","Feature","Normal","","","","12/17/2015 02:54:17 PM","12/17/2015 03:10:05 PM","12/17/2015","12/17/2015 02:54:17 PM","12/17/2015 02:54:17 PM"
"253238947","[email protected]","Implement REST endpoint for Advertisers","251131628","","archive:sprint 1","backend,sprint 1","","","","2","False","","6","","","","Feature","Normal","","","","12/17/2015 02:54:17 PM","12/17/2015 03:10:06 PM","12/17/2015","12/17/2015 02:54:17 PM","12/17/2015 02:54:17 PM"
"253238951","[email protected]","Implement REST Endpoint for AdGroups","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","7","","","","Feature","Normal","","","","12/17/2015 02:54:18 PM","12/17/2015 03:10:06 PM","12/17/2015","12/17/2015 02:54:18 PM","12/17/2015 02:54:18 PM"
"253241280","","Implement REST endpoint for Creatives","251131628","","archive:sprint 1","backend,sprint 1","","","","1","False","","8","","","","Feature","Normal","","","","12/17/2015 02:54:18 PM","12/17/2015 03:10:06 PM","12/17/2015","12/17/2015 02:54:18 PM","12/17/2015 02:54:18 PM"
"253307843","[email protected]","Design CampaignManager component","251131628","","archive:sprint 1","backend,sprint 1","","","","2","False","","9","","","","Feature","Normal","","","","12/17/2015 02:54:18 PM","12/17/2015 03:10:06 PM","12/17/2015","12/17/2015 02:54:18 PM","12/17/2015 02:54:18 PM"
"254613433","[email protected]","Backend: advertiser overview","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","10","","","","Feature","Normal","11","","","12/17/2015 03:00:44 PM","12/17/2015 03:10:07 PM","12/17/2015","12/17/2015 03:00:44 PM","12/17/2015 03:00:44 PM"
"254608391","[email protected]","Backend: advertiser campaigns","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","11","","","","Feature","Normal","13","","","12/17/2015 03:00:56 PM","12/17/2015 03:10:07 PM","12/17/2015","12/17/2015 03:00:56 PM","12/17/2015 03:00:56 PM"
"254614034","[email protected]","Backend: advertiser ad groups","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","12","","","","Feature","Normal","14","","","12/17/2015 03:01:13 PM","12/17/2015 03:10:08 PM","12/17/2015","12/17/2015 03:01:13 PM","12/17/2015 03:01:13 PM"
"254613440","[email protected]","Backend: advertiser creatives","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","13","","","","Feature","Normal","15","","","12/17/2015 03:01:27 PM","12/17/2015 03:10:08 PM","12/17/2015","12/17/2015 03:01:27 PM","12/17/2015 03:01:27 PM"
"254614035","[email protected]","Backend: advertiser segments","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","14","","","","Feature","Normal","16","","","12/17/2015 03:01:37 PM","12/17/2015 03:10:09 PM","12/17/2015","12/17/2015 03:01:37 PM","12/17/2015 03:01:37 PM"
"254612832","[email protected]","Backend: advertiser audience","251131628","","archive:sprint 1","backend,advertiser,sprint 1","","","","0","False","","15","","","","Feature","Normal","17","","","12/17/2015 03:01:52 PM","12/17/2015 03:10:07 PM","12/17/2015","12/17/2015 03:01:52 PM","12/17/2015 03:01:52 PM"
"275556249","[email protected];[email protected]","Backend: rename malt-api package/artifact to campaign-management-api.","251131628","","archive:sprint 1","backend","","","","1","False","","16","","","","Task","Normal","259","","","12/21/2015 08:18:53 AM","12/21/2015 08:18:53 AM","12/21/2015","12/07/2015 10:53:37 AM","12/08/2015 10:19:45 AM"
"359258468","[email protected]","Update MALT configuration","251131629","","sprint log","","","","","0","False","","0","","","<p><span style=""color: #339966;"">Set advertiserId=goz1fwq. - 06.07.2016 - OK</span></p><br/><p><span style=""color: #339966;""><span style=""color: #0000ff;"">Set tdAdvertiserId=ckqka2h - 13.07.2016 - OK</span><br /></span></p>","Task","Normal","1732","","","07/13/2016 11:32:06 AM","07/13/2016 12:21:53 PM","","07/06/2016 03:52:40 PM",""
"327762236","","Backend: Get rid of ManyToMany for Location targeting","251131629","","sprint log","backend","","","","3","False","","1","","","","Improvement","Normal","1206","","","04/20/2016 01:07:20 PM","04/20/2016 01:07:20 PM","","04/20/2016 01:07:20 PM",""
"334404821","","Backend: external bindings not deleted with their entities.","251131629","","sprint log","backend","","","","3","False","","2","","","","Defect","Normal","1257","","","05/05/2016 12:49:45 PM","07/04/2016 03:17:51 PM","","05/05/2016 12:49:45 PM",""
"348500853","[email protected]","Backend: AdGroupThirdPartySegmentTag deadlock.","251131629","","sprint log","backend","","","","2","False","","3","","","","Defect","Normal","1429","","","06/08/2016 04:15:39 PM","06/08/2016 04:56:17 PM","","06/08/2016 04:15:39 PM",""
"351930724","[email protected]","Prepare Malt-ui configs for production","251131629","","sprint log","","","","","0","False","","4","","","<p><span>malt-backend-0.mv-prod.lo backend address</span></p><br/><p><span>malt-db-main.mv-prod.lo:1433;databaseName=multi-ui<br />db user malt-ui<br />password please ask directly</span></p>","Task","Normal","1512","","","06/16/2016 04:33:20 PM","06/16/2016 04:35:06 PM","","06/16/2016 04:33:20 PM",""
"353551476","[email protected]","Ad Group Targeting - Locations: Geofencing Issue","251131629","","sprint log","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=350&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","4","False","","5","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=350&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1548","","","06/21/2016 02:41:34 PM","07/06/2016 04:39:23 PM","","06/21/2016 02:41:34 PM",""
"359689695","[email protected]","Ad Group Targeting - Locations Targeting: Radius Tageting Edit - Not all cities saving","251131629","","sprint log","webui,location-targeting,radius-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=438&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","True","different database on UAT and Testing environment","6","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=438&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 438</a></p>","UAT Feedback","Critical","1743","","","07/07/2016 01:04:48 PM","07/20/2016 03:11:23 PM","","07/07/2016 01:04:48 PM",""
"361684031","[email protected]","Segments bug","251131629","","sprint log","webui,segments","","","","0","False","","7","","","","Defect","Normal","1865","","","07/12/2016 07:37:28 PM","07/12/2016 07:37:57 PM","","07/12/2016 07:37:28 PM",""
"361685820","[email protected]","Budget Builder bugs","251131629","","sprint log","webui,budget-builder","","","","0","False","","8","","","","Defect","Normal","1875","","","07/12/2016 07:39:09 PM","07/20/2016 03:50:36 PM","","07/12/2016 07:39:09 PM",""
"363168347","[email protected]","500 error at filtering by a lot of categories","251131629","","sprint log","","","","","0","False","","9","","","","Task","Normal","1907","","","07/15/2016 04:53:22 PM","07/15/2016 04:53:35 PM","","07/15/2016 04:53:22 PM",""
"365824419","[email protected];[email protected]","WebUI: make refactoring for segments","251131629","","sprint log","webui,segments","","","","1","False","","10","","","<p>Make rafacroting related to commetns in this PR https://bitbucket.org/thumbtacktech/multiview-dmp-malt-webui/pull-requests/570/feature-1836-move-rules-to-edit-page/diff</p>","Improvement","Normal","1990","","","07/22/2016 02:11:10 PM","07/22/2016 02:11:10 PM","","07/22/2016 02:11:10 PM",""
"365399875","[email protected]","Return 400 instead of 500 at not existing advertiser/campaign/adgroup in TD","251131629","","sprint log","","","","","0","False","","11","","","","Improvement","Normal","1976","","","07/22/2016 02:24:59 PM","07/22/2016 02:24:59 PM","","07/22/2016 02:24:59 PM",""
"365838607","","Location Targeting: Geofences doesn't push to simplifi correctly","251131629","","sprint log","webui,location-targeting","","","","0","False","","12","","","<p>Simplifi doesn't display pushed coordinates on map and throws an error ""RangeError: lat must be between -90 and 90""<br /><br />As we discovered with Kirill, x and y coordinates are mixed up when pushing to simplifi. We should swap them when passing to simplifi. Need to determine where it will be more appropriate to fix it, be or fe side.</p>","Defect","Critical","1992","","","07/22/2016 02:44:52 PM","07/22/2016 02:44:52 PM","","07/22/2016 02:44:52 PM",""
"365872823","[email protected]","Change logic for read/edit permissions for rules and segments","251131629","","sprint log","webui,segments","","","","0","False","","13","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Set edit rules as false</li><br/><li>Set create rules as true</li><br/><li>Open New rule form</li><br/></ol><br/><p><strong>Actual result:</strong> fields are disabled</p><br/><p><strong>Expected result:</strong> you are able to create a rule</p>","Defect","Critical","1993","","","07/22/2016 04:41:14 PM","07/22/2016 04:41:24 PM","","07/22/2016 04:41:14 PM",""
"365789520","[email protected]","Remove space between Item price label and ","251131629","","sprint log","webui,budget-builder","","","","0","False","","14","","","<p><a href=""http://screencast.com/t/qf6r0LSZa"">http://screencast.com/t/qf6r0LSZa</a> </p><br/><div class=""ExternalClassB1DAEDB2D8D244C9B2B6D875EAD42DB4""><span class=""ms-noWrap""><span class=""ms-noWrap ms-imnSpan""><a class=""ms-subtleLink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/userdisp.aspx?ID=289"">Matt Hunter</a></span></span> (<a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&PageType=4&ID=507&Source=&VersionNo=9728"">7/21/2016 11:51 AM</a>):<br/><p>Yes, until price is shown, it wasn't even clear to me that the ""Unavailable"" was with the ""Item Price:"" label because of messed up spacing. It looks thrown together quickly when it is the only thing on the line that isn't spaced evenly.</p><br/></div><br/><div class=""ExternalClassF061A659F7D7450AA7D21CE32FDE8D13""><span class=""ms-noWrap""><span class=""ms-noWrap""><a class=""ms-subtleLink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/userdisp.aspx?ID=1037"">Anastasiya Pingina</a></span></span> (<a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&PageType=4&ID=507&Source=&VersionNo=8192"">7/21/2016 6:49 AM</a>):<br/><p>Matt, is it reall criticall for you? can we creat separate ticket with lower priority?</p><br/></div><br/><div class=""ExternalClassA3BFDEAC64914696A0BD576F0C57A1DA""><span class=""ms-noWrap""><span class=""ms-noWrap""><a class=""ms-subtleLink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/userdisp.aspx?ID=289"">Matt Hunter</a></span></span> (<a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&PageType=4&ID=507&Source=&VersionNo=6656"">7/21/2016 1:00 AM</a>):<br/><p>Spacing is all messed up. Need to set equal spacing between Impressions and Discount. See example in screenshot.</p><br/></div>","UAT Feedback","Critical","1987","355818546","355818546","07/25/2016 12:02:08 PM","07/25/2016 12:02:08 PM","","07/25/2016 12:02:08 PM",""
"359692293","[email protected]","Confirmation of Association Segment Create Form Fields","251131629","","sprint log","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=527&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","","15","","","<p><span>The create form should collect the segment name as well as association, <strong>site type/product line (optional), and project (optional but only available if site type is selected)</strong></span></p>","UAT Feedback","Critical","1833","","","07/25/2016 12:02:10 PM","07/25/2016 12:02:10 PM","","07/25/2016 12:02:10 PM",""
"359209341","[email protected]","Creative Edit/Details Form: Need Tracking Button Added to Creative Clickthrough URLs","251131629","","sprint log","webui,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=445&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","Will made","16","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=445&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>445</p><br/><p>need to be done after 1685</p>","UAT Feedback","Critical","1731","","","07/25/2016 01:55:14 PM","07/25/2016 01:55:14 PM","","07/25/2016 01:55:14 PM",""
"366424028","[email protected]","Implement TTL coping for rules","251131629","","sprint log","segments,backend","","","","0","False","","17","","","","Improvement","Normal","1999","","","07/25/2016 01:56:13 PM","07/25/2016 01:56:33 PM","","07/25/2016 01:56:13 PM",""
"366434568","[email protected]","Restrict features for Chozle Campaigns & AdGroups","251131629","","sprint log","webui","","","","3","False","","18","","","","Feature","Normal","2000","","","07/25/2016 02:07:34 PM","07/25/2016 02:08:37 PM","","07/25/2016 02:07:35 PM",""
"366402623","[email protected]","Change calculating item price","251131629","","sprint log","segments,webui,blocked","","","","0","False","","19","","","<p>EstimatedMaximumOnTargetCPM -> EstimatedMaximumOnTargetCPMWithoutMVMargin</p>","UAT Feedback","Critical","1997","365287324","365287324","07/25/2016 03:00:13 PM","07/25/2016 03:02:15 PM","","07/23/2016 12:12:54 AM",""
"366402631","[email protected]","Add TD_Shared field on admin bb page","251131629","","sprint log","segments,webui,blocked","","","","0","False","","20","","","","UAT Feedback","Critical","1998","365287324","365287324","07/25/2016 03:00:13 PM","07/25/2016 03:02:24 PM","","07/23/2016 12:12:54 AM",""
"366405944","[email protected]","Change parameters sent to backend to calculate data cost","251131629","","sprint log","segments,webui,blocked","","","","0","False","","21","","","<p><strong>Targeting</strong></p><br/><p>baseBid <span>(required) </span>- Adgroup base Bid (ask Ivan)</p><br/><p>Budget Builder</p><br/><p><span>baseBid </span><span>(required) </span><span>- </span>variable CPM for CBE<br />mvMargin <span>(optional)</span> - current mv margin rate </p>","UAT Feedback","Critical","1996","","","07/25/2016 03:00:14 PM","07/25/2016 03:00:51 PM","","07/23/2016 12:12:54 AM",""
"366470198","","Keyword edit form does not assign correct bid value","251131629","","sprint log","webui,bug","","","","0","False","","22","","","<p>Bid value in edit form is always empty</p>","Defect","Normal","2002","","","07/25/2016 03:30:45 PM","07/25/2016 03:30:45 PM","","07/25/2016 03:30:45 PM",""
"351276281","","Add UI validation for field Logo URL","251153453","","development:in progress","webui","","","","0","True","Need to implement TD AdGroup wizard first.","0","","","<p><a href=""http://screencast.com/t/soREjtUDI"">http://screencast.com/t/soREjtUDI</a> see more</p><br/><p>now this error is shown only after clicking on save button and not visible for user as he is on 2nd step and error is on 1st step</p><br/><p>add ""red step"" dtyle for this wizard as for ad group wizard</p>","Defect","High","1484","","","06/16/2016 02:51:34 PM","07/07/2016 10:59:07 AM","","06/15/2016 06:36:56 PM",""
"359809171","[email protected]","Segment management bugs","251153453","","development:in progress","webui","","","","0","False","","1","","","","Defect","Normal","1753","","","07/10/2016 06:57:34 PM","07/11/2016 02:05:36 PM","","07/07/2016 05:59:45 PM",""
"358796918","[email protected]","AB integration bugs","251153453","","development:in progress","webui","","","","0","False","","2","","","","Defect","Normal","1723","","","07/08/2016 03:39:18 AM","07/10/2016 06:57:36 PM","","07/05/2016 06:32:00 PM",""
"360223539","[email protected]","Admin page bugs","251153453","","development:in progress","webui","","","","0","False","","3","","","","Defect","Normal","1757","","","07/11/2016 11:43:07 AM","07/11/2016 11:43:35 AM","","07/08/2016 10:09:23 AM",""
"361680954","[email protected]","Audience builder bugs","251153453","","development:in progress","webui,audience","","","","0","False","","4","","","","Defect","Normal","1876","","","07/20/2016 02:29:57 PM","07/24/2016 07:09:32 PM","","07/12/2016 07:39:50 PM",""
"355224538","[email protected]","SMUI-Image 1/#3: Add Fields to table list view","251153453","","development:in progress","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=515&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","5","","","<p><span>SMUI-Image 1/#3: Add the following fields: Unique Users, Last Updated, Segment ID, and Ad Groups (should list number of ad groups that currently have this segment in their audience)</span></p>","UAT Feedback","Critical","1819","","","07/25/2016 02:50:18 PM","07/25/2016 02:50:18 PM","","07/25/2016 02:50:18 PM",""
"361022678","[email protected]","In IE preview does not work for video creatives for non mp4 files","251153453","","development:in progress","","","","","0","True","Need to clarify requirenments with I. Zuev","6","","","","Defect","Normal","1782","","","07/15/2016 01:42:49 PM","07/19/2016 07:02:53 PM","","07/11/2016 06:27:12 PM",""
"355230750","[email protected];[email protected]","SMUI-Image 3/#1: Change list of sites to list of URLs","251153453","","development:in progress","webui,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=523&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","","7","","","<p><span>SMUI-Image 3/#1: Site should be URL instead of site and should list out all URL's for all sites that have been set up for the advertiser.</span></p>","UAT Feedback","Critical","1827","","","07/15/2016 04:23:38 PM","07/22/2016 04:17:18 PM","","07/15/2016 04:23:38 PM",""
"355869240","[email protected];[email protected]","Image 3/#2&3: Don't give option for opt-in and opt-out at same time","251153453","","development:in progress","webui,segments,backend,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=524&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","done","8","","","<p><span>SMUI-Image 3/#2&3: From UI perspective, there is no reason to have Opt-In and Opt-Out value on same rule. There should be a field to select Rule Type. Options are Opt-In or Opt-Out. Default is Opt-In. Then one single value field should be displayed. Label of field is ""Path"".</span></p>","UAT Feedback","Critical","1830","","","07/20/2016 03:49:56 PM","07/22/2016 04:14:06 PM","","07/20/2016 03:49:56 PM",""
"356294648","[email protected]","General: Populate Blank Budget and Impression Caps on Quick Views","251153453","","development:in progress","webui,general","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=412&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","True","Waits MV retesting","9","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=412&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Low","1634","","","07/18/2016 06:33:04 PM","07/19/2016 12:54:56 PM","","07/15/2016 05:52:47 PM",""
"359687871","[email protected]","Campaign Create Form: The Trade Desk DSP New Campaign Page Does Not Give Confirmation after Create Button is Clicked - Nothing happened","251153453","","development:in progress","webui,TD-campaign","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=451&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","Campaign wizard have the same ""success"" behaviour as the others, so it is not necessary to make unique adjustment for campaign wizard alone.","10","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=451&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 451</a></p>","UAT Feedback","Low","1738","","","07/18/2016 08:16:56 PM","07/18/2016 08:34:31 PM","","07/18/2016 08:16:52 PM",""
"332593101","[email protected]","Ad Group Targeting: Day Parting Edit - Save/Error Notification","251153453","","development:in progress","webui,dayparting-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=233&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","True","Dayparting have the same ""success"" behaviour as the other forms(most of them), so it is not necessary to make unique adjustment for dayparting.","11","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=233&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 233</a></p>","UAT Feedback","Low","1249","","","07/19/2016 07:40:32 PM","07/20/2016 03:35:52 PM","","07/19/2016 04:50:35 PM",""
"365321378","[email protected]","External CPM property","251153453","","development:in progress","","","","","0","False","","12","","","<p>Change costPerMile / percentOfMediaCost properties to external...</p>","Task","Normal","1968","","","07/21/2016 02:23:30 PM","07/25/2016 12:06:11 PM","","07/21/2016 02:23:30 PM",""
"365337595","[email protected]","WebUI: Keywords: When Date Adjust Filter is one day, then use metric values","251153453","","development:in progress","webui","","","","2","False","","13","","","","Improvement","Normal","1971","","","07/22/2016 11:38:01 AM","07/22/2016 11:38:01 AM","","07/21/2016 03:38:30 PM",""
"365990910","[email protected];[email protected]","Check correct Average CTR calculation","251153453","","development:in progress","","","","","0","False","","14","","","<p>[19:51:29] Anastasiya Pingina: http://malt.dmp.uat.multiview.com/adgroup/1/keywords<br />[19:51:34] Anastasiya Pingina: 13 days ago - Today</p><br/><p>5,72 / 3 = 1,9, а тут 2</p><br/><p><a href=""http://screencast.com/t/0Jn90Lc5dz"">http://screencast.com/t/0Jn90Lc5dz</a> </p>","Defect","Normal","1994","","","07/25/2016 02:37:42 PM","07/25/2016 02:37:42 PM","","07/23/2016 02:15:37 PM",""
"365782120","[email protected]","Backend: ANQ Migration logging","251153453","","development:in progress","backend","","","","2","False","","15","","","","Task","Normal","1984","","","07/22/2016 08:48:50 AM","07/22/2016 08:48:50 AM","","07/22/2016 08:48:50 AM",""
"291108402","[email protected]","WebUI: Reset model to initial values when form has been closed","251153453","","development:in progress","webui","","","","0","False","","16","","","","Improvement","High","513","","","07/22/2016 04:09:59 PM","07/22/2016 04:09:59 PM","","07/22/2016 12:18:51 PM",""
"365794469","[email protected]","Deleting rules","251153453","","development:in progress","webui,segments","","","","0","False","","17","","","","UAT Feedback","Critical","1989","","","07/25/2016 10:14:54 AM","07/25/2016 10:14:54 AM","","07/25/2016 10:14:54 AM",""
"365287324","[email protected]","Change pricing for 1st and 2nd party segments","251153453","","development:in progress","audience,blocked,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=613&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","got answers","18","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass26C2026601484321946BCD1E4C47FC46""><br/><p></p><br/><div>Audience Builder for Budget Builder</div><br/><div>i. The Trade Desk API will not return price estimates for data that is owned by MultiView </div><br/><div>so pricing for these segments must reside locally and be available for integration in the </div><br/><div>Audience Builder.</div><br/><div>ii. Since This instance of Audience Builder is to report prices externally, the Audience Data </div><br/><div>Cost will need to be modified to include the MultiView owned segment prices when </div><br/><div>MultiView owned segments are involved. Segment Requirements should include </div><br/><div>external pricing against different types of segments.</div><br/><div>• If a MultiView owned segment is placed as an “AND” into the audience, the RUMI </div><br/><div>Segment price should be added to the Trade Desk data costs.</div><br/><div>• If a MultiView owned segment is placed as an “or” into the audience, then the costs </div><br/><div>used should be equal to Trade Desk pricing returned + (% of MultiView segment </div><br/><div>users / overall users in forecasted audience * MultiView data costs).</div><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1964","","","07/25/2016 11:27:10 AM","07/25/2016 03:02:24 PM","","07/23/2016 12:12:54 AM",""
"366447183","[email protected]","Missing error handling for Keywords form","251153453","","development:in progress","webui,bug","","","","0","False","","19","","","<p>At least bid/status changing form have no correct error handling.</p>","Defect","Normal","2001","","","07/25/2016 02:56:53 PM","07/25/2016 02:56:53 PM","","07/25/2016 02:56:42 PM",""
"366405942","[email protected]","Change Data cost calculating logic","251153453","","development:in progress","backend,segments,blocked","","","","0","False","","20","","","","UAT Feedback","Critical","1995","365287324","365287324","07/25/2016 02:57:19 PM","07/25/2016 03:01:36 PM","","07/23/2016 12:12:54 AM",""
"356832864","[email protected];[email protected];[email protected]","Ad Group Targeting - Locations: GeoTargeting Testing - Quick Select USA Geo-Regions","251557183","","tt quality assurance:ready for qa","webui,location-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=414&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","0","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=414&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">issue </a> 414</p>","UAT Feedback","Low","1671","","","07/22/2016 07:42:30 AM","07/25/2016 11:53:31 AM","","07/18/2016 08:50:43 PM",""
"365321406","[email protected];[email protected]","Creative Create Wizard: Trade Desk Creative - Third Party Placement Tag Errors","251557183","","tt quality assurance:ready for qa","webui,creatives,TradeDesk","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=575&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","","1","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=575&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 575</a></p>","UAT Feedback","Critical","1969","","","07/22/2016 04:38:25 PM","07/22/2016 04:42:30 PM","","07/21/2016 05:31:44 PM",""
"361614706","[email protected]","Item Price should not be changed by the discount","251557183","","tt quality assurance:ready for qa","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=557&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","","2","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass3E8A4AD441E04FA38F7FBD6618A9FA80""><br/><p>Item Price should not change with Discount...Discount should show change in campaign total.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1855","","","07/25/2016 01:03:06 PM","07/25/2016 03:42:56 PM","","07/14/2016 03:28:10 PM",""
"365411207","[email protected]","Add TTL for segment","251557183","","tt quality assurance:ready for qa","webui,blocked,segments","","","","0","False","","3","","","<p>TTL Configuration in MALT</p><br/><p>A single field should be added to the segment entity record at create and edit titled “Expiration”.</p><br/><p>Expiration Field Details:</p><br/><p> Field should be displayed as “Expiration (in days)”</p><br/><p> Field is Required</p><br/><p> Positive Integer Field (including Zero)</p><br/><p> Field represents number of days</p><br/><p> Place Holder if field is empty should be “Required”</p><br/><p> Default Value = 90</p><br/><p> Max value = 180</p><br/><p> Min value = 0</p>","UAT Feedback","Normal","1980","","","07/25/2016 02:23:05 PM","07/25/2016 03:13:30 PM","","07/21/2016 06:46:22 PM",""
"354087944","[email protected]","Ad Group Targeting - IP Targeting: Edit - Ip target clarification","251557183","","tt quality assurance:ready for qa","webui,ip-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=378&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","4","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=378&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Low","1576","","","07/25/2016 03:25:42 PM","07/25/2016 03:25:42 PM","","07/19/2016 04:33:41 PM",""
"265400883","[email protected]","Backend: upload sql server jdbc driver to nexus.","270818376","","archive:sprint 4","backend","","","","1","False","","0","","","","Task","Normal","179","","","11/23/2015 12:07:42 PM","11/23/2015 12:07:42 PM","11/23/2015","11/09/2015 09:09:58 AM","11/09/2015 09:31:28 AM"
"265410141","[email protected];[email protected]","Backend: remove Optional from domain model classes. Use optionals outside of model in pipeline steps.","270818376","","archive:sprint 4","backend","","","","3","False","","1","","","","Task","Normal","183","","","11/23/2015 12:07:57 PM","11/23/2015 12:07:57 PM","11/23/2015","11/09/2015 10:06:45 AM","11/13/2015 02:07:59 PM"
"267114836","[email protected]","Backend: Unify Malt/DataLake applications healthcheck/version endpoints","270818376","","archive:sprint 4","backend","","","","2","False","","2","","","<p>Add group-id and artifact-id field to version response</p>","Task","Normal","193","","","11/23/2015 12:07:59 PM","11/23/2015 12:07:59 PM","11/23/2015","11/12/2015 08:37:03 PM","11/16/2015 10:33:51 AM"
"267014207","[email protected]","Backend: use logback instead of log4j2 for logging in malt-api and malt-jobs.","270818376","","archive:sprint 4","backend","","","","2","False","","3","","","","Task","Normal","191","","","11/23/2015 12:08:00 PM","11/23/2015 12:08:00 PM","11/23/2015","11/12/2015 04:04:00 PM","11/16/2015 08:27:55 AM"
"266515560","[email protected]","Backend: use create/update form classes instead of entity class for Advertiser creation","270818376","","archive:sprint 4","backend,advertiser","","","","2","False","","4","","","","Task","Normal","189","","","11/23/2015 12:08:02 PM","11/23/2015 12:08:02 PM","11/23/2015","11/11/2015 02:35:54 PM","11/16/2015 12:48:30 PM"
"265402393","[email protected]","Backend: Data model documentation","270818376","","archive:sprint 4","backend","","","","2","False","","5","","","","Task","Normal","181","","","11/23/2015 12:08:05 PM","11/23/2015 12:08:05 PM","11/23/2015","11/09/2015 09:11:38 AM","11/17/2015 11:54:41 AM"
"268642132","[email protected];[email protected]","Backend: Update SQL database schema for Advertiser/Campaign.","270818376","","archive:sprint 4","backend","","","","2","False","","6","","","","Task","Normal","196","","","11/23/2015 12:08:07 PM","11/23/2015 12:08:07 PM","11/23/2015","11/17/2015 04:06:38 PM","11/19/2015 09:30:16 AM"
"268640590","[email protected];[email protected]","Backend: Migrate backend datamodel to JPA/SQL.","270818376","","archive:sprint 4","backend","","","","3","False","","7","","","","Task","Normal","195","","","11/23/2015 12:08:09 PM","11/23/2015 12:08:09 PM","11/23/2015","11/17/2015 04:05:59 PM","11/23/2015 09:37:18 AM"
"261689070","","WebUI: Migrate to MSSQL","270818376","","archive:sprint 4","webui,sprint 3,sprint 4","","","","5","False","Client decided to use MSSQL","8","","","","Task","Normal","155","274526090","274526090","11/24/2015 05:49:51 PM","12/08/2015 11:14:55 AM","11/24/2015","11/17/2015 11:13:39 AM","11/23/2015 04:04:33 PM"
"262166892","","WebUI: ""Create\Edit advertiser"" page","270818376","","archive:sprint 4","webui,sprint 4","","","","5","False","","9","","","<p>Here is description: https://docs.google.com/document/d/1RFrEvYnFwbE1Z5lg0x0UhHdjg7aO0lMWDxTPchBSvqU/edit#heading=h.t7zlxo8ncyt</p>","Feature","Normal","158","274526090","274526090","12/17/2015 02:58:23 PM","12/17/2015 02:58:23 PM","12/17/2015","12/17/2015 02:58:23 PM","12/17/2015 02:58:23 PM"
"264098813","","WebUI: Make all tables sortable","270818376","","archive:sprint 4","webui,sprint 4","","","","2","False","","10","","","","Feature","Normal","171","274526090","274526090","12/17/2015 02:58:24 PM","12/17/2015 02:58:24 PM","12/17/2015","12/17/2015 02:58:24 PM","12/17/2015 02:58:24 PM"
"265395357","[email protected]","Backend: implement separate activate/deactivate API methods for advertisers.","270818376","","archive:sprint 4","backend,advertiser,sprint 4","","","","2","False","","11","","","","Feature","Normal","174","274526090","274526090","12/17/2015 02:58:57 PM","12/24/2015 11:48:16 AM","12/17/2015","12/17/2015 02:58:57 PM","12/17/2015 02:58:57 PM"
"265389711","[email protected]","Backend: implement Employee download job","270818376","","archive:sprint 4","backend,sprint 4","","","","2","False","","12","","","","Feature","Normal","175","","","12/17/2015 02:59:09 PM","12/17/2015 03:26:09 PM","12/17/2015","12/17/2015 02:59:09 PM","12/17/2015 02:59:09 PM"
"265402385","[email protected]","Backend: implement Team upload job","270818376","","archive:sprint 4","backend,sprint 4","","","","2","False","","13","","","","Feature","Normal","176","","","12/17/2015 02:59:20 PM","12/17/2015 03:26:10 PM","12/17/2015","12/17/2015 02:59:20 PM","12/17/2015 02:59:20 PM"
"265402386","[email protected]","Backend: implement Department download job","270818376","","archive:sprint 4","backend,sprint 4","","","","2","False","","14","","","","Feature","Normal","177","","","12/17/2015 02:59:36 PM","12/17/2015 03:26:10 PM","12/17/2015","12/17/2015 02:59:36 PM","12/17/2015 02:59:36 PM"
"265402073","[email protected]","Backend: Update campaign model. Campaign should be vendor specific and contains budget settings.","270818376","","archive:sprint 4","backend,campaign,sprint 4","","","","2","False","","15","","","","Feature","Normal","178","","","12/17/2015 02:59:48 PM","12/17/2015 03:26:10 PM","12/17/2015","12/17/2015 02:59:48 PM","12/17/2015 02:59:48 PM"
"265422727","[email protected]","Backend: design and implement common audition mechanism","270818376","","archive:sprint 4","backend,sprint 4","","","","3","False","","16","","","","Feature","Normal","187","","","12/17/2015 02:59:58 PM","12/17/2015 03:26:11 PM","12/17/2015","12/17/2015 02:59:58 PM","12/17/2015 02:59:58 PM"
"266456822","[email protected];[email protected]","Backend: malt jobs should be able to handle command line parameters as job parameters and provide usage info on parameter types","270818376","","archive:sprint 4","backend,sprint 4","","","","2","False","","17","","","","Feature","Normal","188","","","12/17/2015 03:00:14 PM","12/17/2015 03:26:11 PM","12/17/2015","12/17/2015 03:00:14 PM","12/17/2015 03:00:14 PM"
"268039039","[email protected]","Backend: Add changelog events to campaign createion/alteration.","270818376","","archive:sprint 4","backend,campaign,sprint 4","","","","2","False","","18","","","","Feature","Normal","194","","","12/17/2015 03:03:09 PM","12/17/2015 03:26:11 PM","12/17/2015","12/17/2015 03:03:09 PM","12/17/2015 03:03:09 PM"
"264105696","","WebUI: Filters on ""Advertisers"" page","270818376","","archive:sprint 4","webui,sprint 4","","","","3","False","","19","","","","Feature","Normal","167","274526090","274526090","12/17/2015 03:17:08 PM","12/17/2015 03:17:08 PM","12/17/2015","12/17/2015 02:58:03 PM","12/17/2015 02:58:03 PM"
"264103321","","WebUI: Pagination on ""Advertisers"" page","270818376","","archive:sprint 4","webui,sprint 4","","","","5","False","","20","","","","Feature","Normal","164","274526090","274526090","12/17/2015 03:19:41 PM","12/17/2015 03:19:41 PM","12/17/2015","12/17/2015 02:58:02 PM","12/17/2015 02:58:02 PM"
"267057029","[email protected];[email protected]","Backend: unify app configuration with DataLake","275554217","","archive:sprint 5","backend","","","","3","False","","0","","","<p>The solution is to use typesafe config library with HOCON</p>","Task","Normal","192","","","12/07/2015 11:54:00 AM","12/07/2015 11:54:00 AM","12/07/2015","11/23/2015 09:56:44 AM","12/07/2015 08:15:25 AM"
"270858769","[email protected]","Backend: implement AdGroup creation/update/deletion","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","US","1","","","","Feature","Normal","206","","","12/07/2015 11:54:01 AM","12/17/2015 03:31:45 PM","12/07/2015","11/23/2015 04:01:11 PM","12/04/2015 10:37:44 AM"
"270874565","[email protected]","Backend: Synchronize AdGroup settings with Simpli.Fi","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","US
","2","","","","Feature","Normal","209","","","12/07/2015 11:54:03 AM","12/17/2015 03:31:46 PM","12/07/2015","11/23/2015 04:03:51 PM","12/03/2015 03:26:31 PM"
"270875743","[email protected]","Backend: Implement AdGroup settings","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","US","3","","","","Feature","Normal","207","","","12/07/2015 11:54:04 AM","12/17/2015 03:31:47 PM","12/07/2015","11/23/2015 04:02:36 PM","12/03/2015 10:51:15 AM"
"273503380","[email protected]","Backend: AuditLog REST API","275554217","","archive:sprint 5","backend,sprint 5","","","","3","False","","4","","","","Feature","Normal","221","","","12/07/2015 11:54:06 AM","12/17/2015 03:31:48 PM","12/07/2015","12/01/2015 11:20:34 AM","12/03/2015 10:51:43 AM"
"272536099","[email protected];[email protected]","Backend: fix debug mode on errors within transactional methods.","275554217","","archive:sprint 5","backend","","","","3","False","","5","","","","Defect","Normal","220","","","12/07/2015 11:54:09 AM","12/07/2015 11:54:09 AM","12/07/2015","11/27/2015 11:35:18 AM","11/30/2015 02:39:28 PM"
"270861665","[email protected]","Backend: synchronize AdGroup profile with Simpli.fi","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","US","6","","","","Feature","Normal","208","","","12/07/2015 11:54:14 AM","12/17/2015 03:31:46 PM","12/07/2015","11/23/2015 04:03:53 PM","12/03/2015 10:50:49 AM"
"270796081","[email protected]","Backend: Update database model according feedback from MultiView","275554217","","archive:sprint 5","backend","","","","2","False","","7","","","<p>Glen and Eva reviewed MALT database diagram:</p><br/><ul><br/><li>· CM_OwnerType, CM_State tables don’t have ID field which should be primary key</li><br/><li>· FK should be for id field and common naming convention for FK is “Entity”+ID. Ex: FK in CM_advertiser to CM_OwnerType should be OwnerTypeId, and for CM_State it should be StateId.</li><br/><li>· CreativeManagerId and DataManagerID should be FKs to EMP_Employee.Id</li><br/><li>· ServiceTier should be a lookup table with FK ServiceTierId</li><br/><li>· CM_Advertiser table missing AccountManagerId and TeamId. Both are FKs for corresponding lookup tables.</li><br/><li>· What CM in table names stands for? Should it be MV for MultiView.</li><br/><li>· CM_Campaign: State and Vendor should be FKs to corresponding lookup tables with same naming convention as other FKs.</li><br/><li>· EMP_Employee.TeamId should be FK to Emp_Team.Id</li><br/></ul>","Task","Normal","202","","","12/07/2015 11:54:18 AM","12/07/2015 11:54:18 AM","12/07/2015","11/23/2015 09:56:37 AM","11/23/2015 06:54:59 PM"
"270800617","[email protected]","Backend: Use JPA specification for query methods.","275554217","","archive:sprint 5","backend","","","","2","False","","8","","","","Task","Normal","205","","","12/07/2015 11:54:23 AM","12/07/2015 11:54:23 AM","12/07/2015","11/23/2015 10:19:08 AM","11/23/2015 06:55:01 PM"
"270800608","[email protected];[email protected]","Backend: If Advertiser not exists in simpli.fi at the moment of Campaign creation is should be created.","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","","9","","","","Feature","Normal","203","","","12/07/2015 11:54:28 AM","12/17/2015 03:31:44 PM","12/07/2015","11/23/2015 10:01:55 AM","11/24/2015 02:02:55 PM"
"271348903","[email protected];[email protected]","Backend: Implement Campaign update with accordance to UserStories. Activate/Deactivate actions should be separate endpoints. ","275554217","","archive:sprint 5","backend,sprint 5","","","","2","False","","10","","","","Feature","Normal","211","","","12/07/2015 11:54:32 AM","12/17/2015 03:31:47 PM","12/07/2015","11/24/2015 11:39:58 AM","11/24/2015 02:02:56 PM"
"271357195","[email protected];[email protected]","Backend: implement chain reaction mechanism for deactivation of entities","275554217","","archive:sprint 5","backend,sprint 5","","","","3","False","","11","","","","Feature","Normal","212","","","12/07/2015 11:54:36 AM","12/17/2015 03:31:48 PM","12/07/2015","11/24/2015 01:27:16 PM","11/25/2015 03:38:31 PM"
"270802623","[email protected]","Backend: When user deletes Advertiser from MALT it should be archived in Simpli.fi","275554217","","archive:sprint 5","backend,advertiser,sprint 5","","","","2","False","","12","","","","Feature","Normal","204","","","12/07/2015 11:54:39 AM","12/17/2015 03:31:45 PM","12/07/2015","11/23/2015 10:02:46 AM","11/24/2015 08:26:53 AM"
"271418329","[email protected]","Backend: Chose DB migration mechanism and create DB init scripts.","275554217","","archive:sprint 5","backend","","","","3","False","","13","","","","Task","Normal","213","","","12/07/2015 11:54:41 AM","12/07/2015 11:54:41 AM","12/07/2015","11/24/2015 04:00:39 PM","11/27/2015 11:18:40 AM"
"271804049","[email protected]","Backend: Add detailed logging accross business logic and pipelines.","275554217","","archive:sprint 5","backend","","","","3","False","","14","","","","Task","Normal","216","","","12/07/2015 11:54:44 AM","12/07/2015 11:54:44 AM","12/07/2015","11/25/2015 12:32:11 PM","11/26/2015 03:18:01 PM"
"271834436","[email protected]","The order of parameters should be the same for all size of the window in the header on the ""Advertiser Profile"" page","275554217","","archive:sprint 5","webui,sprint 5","","","","0","False","","15","","","<p>The order of parameters is different:</p><br/><p>1. Normal size - <a href=""http://screencast.com/t/8RDfJWE32VwI"">http://screencast.com/t/8RDfJWE32VwI</a></p><br/><p>2. Middle size - <a href=""http://screencast.com/t/jJJE0z4jXc"">http://screencast.com/t/jJJE0z4jXc</a></p><br/><p>3. Small size - <a href=""http://screencast.com/t/ZOD0r3GW"">http://screencast.com/t/ZOD0r3GW</a></p>","Defect","Normal","219","","","12/07/2015 12:01:39 PM","12/08/2015 11:12:08 AM","12/07/2015","12/01/2015 06:32:44 PM","12/03/2015 04:29:13 PM"
"271828287","","There should be the link ""reset"" on the ""advertisers list"" page.","275554217","","archive:sprint 5","webui,sprint 5","","","","1","False","","16","","","<p>Expected behavior:</p><br/><p><span>1. The “reset” link should be displayed next after search input</span></p><br/><p><span>2. <span>If user clicks on “Reset” link next to a search input, then page will be refreshed with a full list of all advertisers without search terms</span></span></p><br/><p><span><span>3. <span>If there is no search term specified (a full list of advertisers is presented) then “Reset” link is hidden</span></span></span></p>","Defect","Normal","218","","","12/07/2015 12:01:50 PM","12/08/2015 11:12:16 AM","12/07/2015","12/01/2015 06:25:42 PM","12/02/2015 04:53:17 PM"
"271828279","","The button ""New"" is overlaped by the select ""state"" when the size of the window is middle","275554217","","archive:sprint 5","webui,sprint 5","","","","1","False","","17","","","<p>Steps to reproduce:</p><br/><p>1. A user is authorized</p><br/><p>2. Open ""advertisers list"" page</p><br/><p>3. Change the size of the window</p><br/><p>Current result: The button ""New"" is overlaped by the select ""state"" when the size of the window is middle <a href=""http://screencast.com/t/LFXcbnZE"">http://screencast.com/t/LFXcbnZE</a></p><br/><p>Expected result: There is a space between button and селект at any window size</p>","Defect","Normal","217","","","12/07/2015 12:01:59 PM","12/08/2015 11:12:23 AM","12/07/2015","12/01/2015 06:32:28 PM","12/02/2015 11:49:25 AM"
"271450344","","WebUI: Implement ""Timeframe"" filter","275554217","","archive:sprint 5","webui,sprint 5","","","","3","False","","18","","","","Feature","Normal","214","274526795","274526795","12/07/2015 12:02:04 PM","12/07/2015 12:02:04 PM","12/07/2015","11/24/2015 05:51:02 PM","12/07/2015 10:28:13 AM"
"268645669","","WebUI: Allow to create Advertiser using popup dialog","275554217","","archive:sprint 5","webui,sprint 5","","","","3","False","","19","","","","Feature","Normal","197","274526090","274526090","12/07/2015 05:05:56 PM","12/17/2015 03:30:59 PM","12/07/2015","11/17/2015 04:18:42 PM","12/07/2015 03:52:12 PM"
"274549372","","Correct the table on the ""Advertisers list"" page according to the last version of the wireframe","275554217","","archive:sprint 5","webui,sprint 5","https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%201/3.(Final)%20Advertiser/(Final)%20List%20View/Wireframe%20-%20Advertiser%20List%20View.pdf","","","0","False","","20","","","<p>Add column ""Owner"" before column ""Creatives"".</p><br/><p>Remove column ""Conversions"".</p>","Defect","Normal","245","","","12/07/2015 05:06:00 PM","12/08/2015 11:12:33 AM","12/07/2015","12/03/2015 03:10:47 PM","12/07/2015 03:41:03 PM"
"275669929","[email protected];[email protected]","Backend: introduce registries for enum-like tables.","279503361","","archive:sprint 6","backend","","","","2","False","","0","","","","Task","Normal","260","","","12/21/2015 08:19:01 AM","12/21/2015 08:19:01 AM","12/21/2015","12/07/2015 07:35:01 PM","12/08/2015 12:52:48 PM"
"275672441","[email protected]","Backend: increase test coverage by unit tests","279503361","","archive:sprint 6","backend","","","","4","False","","1","","","","Task","Normal","261","","","12/21/2015 08:19:17 AM","12/21/2015 08:19:17 AM","12/21/2015","12/07/2015 07:36:00 PM","12/11/2015 01:48:52 PM"
"275552665","[email protected];[email protected]","Backend: Implement Domain Lists. Multiview Level","279503361","","archive:sprint 6","backend","","","","2","False","US are ready","2","","","","Feature","Normal","252","274526796","274526796","12/21/2015 08:19:23 AM","12/24/2015 11:46:25 AM","12/21/2015","12/07/2015 08:42:47 AM","12/12/2015 02:08:08 PM"
"270876660","[email protected];[email protected]","Backend: Implement Domain Lists. Advertiser Level.","279503361","","archive:sprint 6","backend","","","","3","False","US are ready","3","","","","Feature","Normal","210","274526796","274526796","12/21/2015 08:19:32 AM","12/24/2015 11:46:16 AM","12/21/2015","11/23/2015 04:07:18 PM","12/12/2015 02:08:11 PM"
"265400885","[email protected]","Backend: Developer's guide: MALT Backend","279503361","","archive:sprint 6","backend","","","","3","False","","4","","","","Task","Normal","180","","","12/21/2015 08:20:02 AM","12/21/2015 08:20:02 AM","12/21/2015","12/09/2015 11:08:19 AM","12/14/2015 02:18:09 PM"
"275552667","[email protected];[email protected]","Backend: Domain Lists Details & Edit","279503361","","archive:sprint 6","backend","","","","3","False","US are ready","5","","","","Feature","Normal","253","274526796","274526796","12/21/2015 08:20:09 AM","12/24/2015 11:46:09 AM","12/21/2015","12/07/2015 08:49:02 AM","12/14/2015 11:51:30 AM"
"278024946","[email protected]","Backend: Add /end action for AdGroups","279503361","","archive:sprint 6","backend","","","","1","False","","6","","","","Feature","Normal","316","274523485","274523485","12/21/2015 08:20:19 AM","12/24/2015 11:46:01 AM","12/21/2015","12/14/2015 03:00:25 PM","12/15/2015 11:13:30 AM"
"276499924","[email protected]","Backend: Draw diagrams fro pipeline-commons module","279503361","","archive:sprint 6","backend","","","","2","False","","7","","","","Task","Normal","289","","","12/21/2015 08:19:08 AM","12/21/2015 08:19:08 AM","12/21/2015","12/09/2015 11:08:51 AM","12/11/2015 11:42:04 AM"
"278007812","[email protected]","Backend: Validation exception aggregation","279503361","","archive:sprint 6","backend","","","","3","False","","8","","","","Task","Low","315","","","12/21/2015 08:20:56 AM","12/21/2015 08:20:56 AM","12/21/2015","12/14/2015 02:17:19 PM","12/16/2015 01:58:36 PM"
"275549864","[email protected]","Backend: AdGroup. Targeting: operating systems, dayparting","279503361","","archive:sprint 6","backend","","","","3","False","US","9","","","","Feature","Normal","256","279516998","279516998","12/21/2015 08:21:02 AM","12/24/2015 11:45:53 AM","12/21/2015","12/07/2015 08:49:13 AM","12/17/2015 07:14:03 PM"
"278983503","[email protected]","Backend: introduce validation steps that is able to aggregate as much of input errors as they can.","279503361","","archive:sprint 6","backend","","","","3","False","","10","","","","Task","Normal","338","","","12/21/2015 08:21:09 AM","12/21/2015 08:21:09 AM","12/21/2015","12/16/2015 01:59:54 PM","12/18/2015 11:28:52 AM"
"275553558","[email protected];[email protected]","Backend: AdGroup. Targeting: browsers, device types.","279503361","","archive:sprint 6","backend","","","","3","False","US ","11","","","","Feature","Normal","255","279516998","279516998","12/21/2015 08:21:17 AM","12/24/2015 11:45:45 AM","12/21/2015","12/07/2015 08:49:10 AM","12/15/2015 02:37:01 PM"
"264111406","[email protected]","WebUI: Implement authorization system","279503361","","archive:sprint 6","webui,sprint 4,sprint 5,sprint 6","","","","5","False","","12","","","<p>Based on multiview security system.</p><br/><p>Only a MALT user with advertiser_read permission, he should not be able to see “Advertisers” link in page’s header</p><br/><p>Only a MALT user with advertiser_read permission should be able to open a page, otherwise it will be redirected to “Access Denied” page</p><br/><p>Only a MALT user with advertiser_create permission should be able to create a new advertiser, otherwise, a “New” button will not be shown.</p><br/><p>If the user without advertiser_create permission tries to to create a new advertiser, it should be redirected to “Access Denied” page</p><br/><p> </p><br/><p>Only MALT user with advertiser_edit permission role should be able to edit Settings or change state.</p>","Feature","Normal","172","","","12/21/2015 01:35:24 PM","12/21/2015 01:35:24 PM","12/21/2015","11/09/2015 10:21:53 AM","12/17/2015 03:52:53 PM"
"264112378","[email protected]","WebUI: ""Create Campaign"" form","279503361","","archive:sprint 6","webui,sprint 4,sprint 5,sprint 6","","","","5","False","Advertiser create\edit form has been implemented. So we can start work with this feature.","13","","","<p>All details can be found in User Stories: https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={F6588573-6FC7-4AF3-A0FD-5B82FEC1F29F}&file=MALT%20User%20Stories%20-%20Campaign%20Create.docx&action=default</p>","Feature","Normal","173","274526795","274526795","12/21/2015 01:35:24 PM","12/21/2015 01:35:24 PM","12/21/2015","11/09/2015 11:45:45 AM","12/18/2015 03:28:46 PM"
"274077278","[email protected]","WebUI: Campaigns list","279503361","","archive:sprint 6","webui,sprint 5,sprint 6","","","","3","False","","14","","","<p>All details can be found in User Stories: https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={94CCD011-E4A9-49B0-B266-6C8D073D89C4}&file=MALT%20User%20Stories%20-%20Campaign%20List.docx&action=default</p>","Feature","Normal","226","274526795","274526795","12/21/2015 01:35:25 PM","12/21/2015 01:35:25 PM","12/21/2015","12/02/2015 02:20:59 PM","12/10/2015 10:26:18 AM"
"274077285","[email protected]","WebUI: Campaigns Profile","279503361","","archive:sprint 6","webui,sprint 5,sprint 6","","","","3","False","","15","","","<p><span>All details can be found in User Stories: https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={AA00B692-E64C-4001-9EF1-99FDEF798067}&file=MALT%20User%20Stories%20-%20Campaign%20Profile%20Page.docx&action=default</span></p>","Feature","Normal","231","274526795","274526795","12/21/2015 01:35:25 PM","12/21/2015 01:35:25 PM","12/21/2015","12/04/2015 11:55:08 AM","12/18/2015 03:28:53 PM"
"274563718","","Implement CPM\Media Cost\Imps(total) stats all grids where it is presented","279503361","","archive:sprint 6","webui,sprint 6","","","","2","False","","16","","","<ul><br/><li><span style=""color: #1f497d;"">Impressions Total: This will be the sum of impressions for all ad groups. If the sum of the impressions caps for ad groups under a campaign is greater than their campaign’s impressions cap, use that campaign’s impression cap instead of the sum of the ad groups. If any ad group and it’s campaign under the advertiser both have unlimited impression caps, the Impressions Total for the Advertiser should read as “Unlimited”.</span></li><br/><li><span style=""color: #1f497d;"">Media Cost: This display name needs to be changed to “Budget Spent”. It should be a sum of the cost from all DSP costs for each ad groups. This should be included in Simpli.fi reporting.</span></li><br/><li><span style=""color: #1f497d;"">CPM: This is is a calculation of “Budget Spent / Impressions * 1000""</span></li><br/></ul>","Task","Normal","246","274526795","274526795","12/21/2015 01:35:25 PM","12/21/2015 01:35:25 PM","12/21/2015","12/09/2015 04:02:08 PM","12/15/2015 02:09:03 PM"
"275998283","[email protected];[email protected]","WebUI: Grid sorting produces 3 ajax queries. 2 expected.","279503361","","archive:sprint 6","webui,sprint 6","","","","0","False","","17","","","","Defect","Normal","262","274526795","274526795","12/21/2015 01:35:26 PM","12/21/2015 01:35:26 PM","12/21/2015","12/08/2015 10:18:12 AM","12/14/2015 03:02:32 PM"
"276938153","[email protected]","WebUI: apply authorization rules for Campaigns.","279503361","","archive:sprint 6","webui,sprint 6","","","","1","False","","18","","","<p>According to ruels described in User Stories.</p><br/><p><img src=""webkit-fake-url://1a9b00ae-15aa-4394-acda-1ec37fbb5c84/image.tiff"" alt="""" /></p>","Improvement","High","292","274526795","274526795","12/21/2015 01:35:26 PM","12/21/2015 01:35:26 PM","12/21/2015","12/10/2015 12:30:23 PM","12/17/2015 03:57:21 PM"
"276975945","","Change the title of the column on the ""Advertiser_Campaign"" subpage ","279503361","","archive:sprint 6","webui","","","","0","False","","19","","","<p>steps to reproduce:<br />1. A user is authorized<br />2. Open ""Advertiser Campaign"" subpage<br />Current result: there is column ""Status""<br />expected result: there is column ""State""</p>","Defect","Low","297","","","12/21/2015 01:35:27 PM","12/21/2015 01:35:27 PM","12/21/2015","12/18/2015 03:13:27 PM","12/18/2015 03:32:41 PM"
"282444011","[email protected]","Backend: Improve code coverage with tests for ad group","286518865","","archive:sprint 7","backend","","","","2","False","","0","","","","Task","Normal","382","","","01/12/2016 03:52:45 PM","01/12/2016 03:52:45 PM","01/12/2016","12/29/2015 10:42:31 AM","12/30/2015 10:36:36 AM"
"282429076","[email protected]","Backend: improve code coverage for common modules","286518865","","archive:sprint 7","backend","","","","2","False","","1","","","","Task","Normal","381","","","01/12/2016 03:52:47 PM","01/12/2016 03:52:47 PM","01/12/2016","12/29/2015 10:42:01 AM","12/30/2015 10:36:34 AM"
"280370995","[email protected];[email protected]","Backend: finalize ad group targeting simpli.fi integration","286518865","","archive:sprint 7","backend","","","","3","False","","2","","","","Feature","Normal","351","279516998","279516998","01/12/2016 03:52:48 PM","01/12/2016 03:52:48 PM","01/12/2016","12/21/2015 08:26:56 AM","12/29/2015 10:40:36 AM"
"280370992","[email protected];[email protected]","Backend: Implement ad group targeting and domain lists integration - simpli.fi","286518865","","archive:sprint 7","backend","","","","3","False","","3","","","","Feature","Normal","350","279516998","279516998","01/12/2016 03:52:50 PM","01/12/2016 03:52:50 PM","01/12/2016","12/21/2015 08:18:22 AM","12/25/2015 12:01:07 PM"
"281760236","[email protected];[email protected]","Backend: setup code coverage with Jacoco on Jenkins","286518865","","archive:sprint 7","backend","","","","2","False","","4","","","","Task","Normal","374","","","01/12/2016 03:52:51 PM","01/12/2016 03:52:51 PM","01/12/2016","12/25/2015 08:18:32 AM","12/25/2015 03:22:26 PM"
"280377192","[email protected];[email protected]","Backend: Implement AdGroup targeting according to approved solution","286518865","","archive:sprint 7","backend","","","","3","False","","5","","","","Feature","Normal","349","279516998","279516998","01/12/2016 03:52:53 PM","01/12/2016 03:52:53 PM","01/12/2016","12/21/2015 08:16:39 AM","12/25/2015 08:17:44 AM"
"281187906","[email protected]","Backend: API should be able to distinguish absent/null properties in request's body","286518865","","archive:sprint 7","backend","","","","3","False","","6","","","","Defect","Normal","369","","","01/12/2016 03:52:54 PM","01/12/2016 03:52:54 PM","01/12/2016","12/23/2015 09:17:54 AM","12/24/2015 12:00:08 PM"
"280370991","[email protected];[email protected]","Bakcend: Implement domain lists according to approved solution.","286518865","","archive:sprint 7","backend","","","","3","False","","7","","","","Feature","Normal","348","274526796","274526796","01/12/2016 03:52:57 PM","01/12/2016 03:52:57 PM","01/12/2016","12/21/2015 08:16:06 AM","12/22/2015 03:59:08 PM"
"275549865","[email protected];[email protected]","Backend: AdGroup. Targeting: domain, locations, site contextual","286518865","","archive:sprint 7","backend","","","","4","False","US","8","","","","Feature","Normal","257","274526796","274526796","01/12/2016 03:52:59 PM","01/12/2016 03:52:59 PM","01/12/2016","12/07/2015 08:49:14 AM","12/22/2015 11:48:01 AM"
"274088349","","WebUI: AdGroups list","286518865","","archive:sprint 7","webui,sprint 6","","","","5","False","","9","","","<p>All details can be found in User Stories: https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={F441E565-8589-4A27-A320-14ADB17FD019}&file=MALT%20User%20Stories%20-%20Ad%20Group%20List%20Views.docx&action=default</p>","Feature","Normal","234","274523485","274523485","01/12/2016 05:25:29 PM","01/12/2016 05:25:29 PM","01/12/2016","12/07/2015 09:32:55 AM","12/21/2015 03:59:58 PM"
"276090125","[email protected]","WebUI: Refactor MatlAPI component","286518865","","archive:sprint 7","webui,sprint 6","","","","3","False","All needed changes have been merged to develop. So we can start working with this branch.","10","","","","Improvement","Normal","287","","","01/12/2016 05:25:29 PM","01/12/2016 05:25:29 PM","01/12/2016","12/08/2015 04:38:05 PM","12/23/2015 04:36:23 PM"
"276121122","","WebUI: AdGroup Profile Page","286518865","","archive:sprint 7","webui,sprint 6,sprint 7","","","","3","False","","11","","","","Feature","Normal","288","274523485","274523485","01/12/2016 05:25:30 PM","01/12/2016 05:25:30 PM","01/12/2016","12/08/2015 06:32:29 PM","12/24/2015 11:01:46 AM"
"277016167","","WebUI: Improve change state modal window ","286518865","","archive:sprint 7","webui","","","","0","False","","12","","","","Defect","Normal","298","","","01/12/2016 05:25:30 PM","01/12/2016 05:25:30 PM","01/12/2016","12/14/2015 09:23:51 AM","12/28/2015 03:10:47 PM"
"277415146","","WebUI: Improve parameter ""Run date"" on Advertiser Profile page","286518865","","archive:sprint 7","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B69F72EFC-D564-4B8B-839F-D092D2E8E751%7D&file=MALT%20User%20Stories%20-%20Advertiser%20Profile%20Page.docx&action=default","","","0","False","","13","","","<p>Steps to reproduce:</p><br/><p>1. A user is authorized</p><br/><p>2. Open profile page of ""DOLOREM EA"" advertiser</p><br/><p>3. Open Campaings subpage</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/65/campaigns"">http://malt-web.dev.multiview.com/advertiser/65/campaigns</a></p><br/><p>There are two problems:</p><br/><p>1. Current result: The title of parameter in the header ""Run date""</p><br/><p>Expected result: <span data-mce-mark=""1"">The title of parameter in the header ""Run Dates""</span></p><br/><p><span data-mce-mark=""1"">2. Current result: The value of this parametr is ""<span data-mce-mark=""1"">8/24/70 - 10/1/76"".</span></span></p><br/><p><span><span>Expected result: <span>The value of this parametr should be ""</span><span>8/24/70 - 5/29/18"".</span></span></span></p><br/><p><span><span><span>According to the US: <span>""<start date> - <end date>” <start date> is a start date of of an earlies campaign <end date> is an end date a latest campaign (even if it ends in future). </span></span></span></span></p><br/><p><span><span><span><span>http://screencast.com/t/7IX6s6N2</span></span></span></span></p>","Defect","High","304","","","01/12/2016 05:25:31 PM","01/12/2016 05:25:31 PM","01/12/2016","12/18/2015 02:50:26 PM","12/22/2015 11:07:41 AM"
"279436717","","WebUI: Make focus is always located on the modal window if it is opened","286518865","","archive:sprint 7","webui","","","","0","False","","14","","","<p>steps to reproduce:</p><br/><p>1. Open modal window</p><br/><p>2. Use key tab several times</p><br/><p>Current result: When focus is on button ""save"" pressing on the key ""tab"" change focus from modal window to main page. Modal window is still opened.</p><br/><p>Expected result: When focus is on button ""save"" pressing on the key ""tab"" should transfer focus to the first field or element of the modal window.</p>","Defect","High","339","","","01/12/2016 05:25:31 PM","01/12/2016 05:25:31 PM","01/12/2016","12/18/2015 03:27:51 PM","12/28/2015 03:06:26 PM"
"280463229","[email protected]","WebUI: Change titles of parameters in the header on Advertiser Profile page","286518865","","archive:sprint 7","webui","","","","0","False","","15","","","<p>1. Open Advertiser profile page</p><br/><p>http://malt-web.dev.multiview.com/advertiser/178/overview</p><br/><p>2. Look at the header</p><br/><p>Current result. There are titles - Impressions served, Programmatic spend, Run dates, Service tier.<br />Expected result: There should be titles :Impressions Served, Programmatic Spend, Run Dates, Service Tier. If title consists of several words then first letter of every of words should be written as capital.</p><br/><p> </p>","Defect","Low","352","","","01/12/2016 05:25:32 PM","01/12/2016 05:25:32 PM","01/12/2016","12/22/2015 05:24:51 PM","12/23/2015 11:50:32 AM"
"280463322","[email protected]","WebUI: ""Save"" buttons don't work on all modal window","286518865","","archive:sprint 7","webui","","","","0","False","","16","","","<p>1. Try to create a new advertiser. Button save is clickable but nothing happens and there is error in console</p><br/><p>2. Try to create a new campaing. Button save is clickable but nothing happens and there is error in console<br />3. Try to change state. Button save is clickable but nothing happens and there is error in console<br />4. Try to edit settings of campaing or advertiser. Button save is clickable but nothing happens and there is error in console<br />http://screencast.com/t/vUj5jFjsp8<br />Sub modal window is closed by pressing on button yes - but then nothing happens and there is error in console</p><br/><p> </p>","Defect","Critical","353","","","01/12/2016 05:25:32 PM","01/12/2016 05:25:32 PM","01/12/2016","12/21/2015 04:55:28 PM","12/23/2015 04:36:24 PM"
"280910956","[email protected]","WebUI: Move validation rules for Advertiser from client to server","286518865","","archive:sprint 7","webui","","","","1","False","","17","","","","Improvement","Normal","368","","","01/12/2016 05:25:33 PM","01/12/2016 05:25:33 PM","01/12/2016","12/22/2015 05:35:32 PM","12/24/2015 12:18:24 PM"
"274077319","[email protected];[email protected]","WebUI: AdGroup Create Wizard","291676894","","archive:sprint 8","webui,sprint 6,sprint 7,sprint 8","","","","5","False","","0","","","","Feature","Normal","239","274523485","274523485","01/25/2016 11:44:16 AM","01/25/2016 11:44:16 AM","01/25/2016","12/07/2015 09:32:57 AM","01/19/2016 03:02:16 PM"
"278597834","[email protected];[email protected]","WebUI: Create Domain List - Advertiser Level","291676894","","archive:sprint 8","webui,sprint 7,sprint 8","","","","5","False","","1","","","","Feature","Normal","324","274526796","274526796","01/25/2016 11:44:17 AM","01/25/2016 11:44:17 AM","01/25/2016","12/21/2015 12:00:13 PM","01/19/2016 05:50:53 PM"
"278598636","[email protected]","WebUI: Create Domain List - Multiview Level","291676894","","archive:sprint 8","webui,sprint 7,sprint 8","","","","3","False","","2","","","","Feature","Normal","323","274526796","274526796","01/25/2016 11:44:17 AM","01/25/2016 11:44:17 AM","01/25/2016","12/21/2015 12:00:11 PM","01/14/2016 04:14:01 PM"
"278600134","","WebUI: Domain List Details & Edit","291676894","","archive:sprint 8","webui,sprint 7,sprint 8","","","","5","False","","3","","","","Feature","Normal","322","274526796","274526796","01/25/2016 11:44:17 AM","01/25/2016 11:44:17 AM","01/25/2016","01/11/2016 09:03:35 AM","01/20/2016 05:38:33 PM"
"278600579","[email protected];[email protected]","WebUI: AdGroup Settings form","291676894","","archive:sprint 8","webui,sprint 6,sprint 7,sprint 8","","","","3","False","The problem was resolved","4","","","","Feature","Normal","325","274523485","274523485","01/25/2016 11:44:18 AM","01/25/2016 11:44:18 AM","01/25/2016","12/15/2015 06:22:13 PM","01/18/2016 03:08:35 PM"
"280491418","[email protected]","WebUI: Domain List List - MultiVIew level","291676894","","archive:sprint 8","webui,sprint 7,sprint 8","","","","3","False","","5","","","","Feature","Normal","357","274526796","274526796","01/25/2016 11:44:18 AM","01/25/2016 11:44:18 AM","01/25/2016","12/21/2015 06:04:02 PM","01/19/2016 03:08:56 PM"
"280493323","[email protected]","WebUI: Domain List List - Advertiser Level","291676894","","archive:sprint 8","webui,sprint 7,sprint 8","","","","5","False","","6","","","","Feature","Normal","356","274526796","274526796","01/25/2016 11:44:19 AM","01/25/2016 11:44:19 AM","01/25/2016","12/21/2015 06:03:44 PM","01/14/2016 02:58:06 PM"
"281197485","[email protected]","WebUI: Show modal with 'Server error' message if backend API returned error","291676894","","archive:sprint 8","webui","","","","1","False","","7","","","<p>When backbone model sends AJAX request to server, it handles only 200 and 422 erros now. We should handle all other errors and show dialog with 'Unexpected server error message'.</p>","Improvement","Normal","370","","","01/25/2016 11:44:19 AM","01/25/2016 11:44:19 AM","01/25/2016","12/23/2015 03:39:00 PM","01/19/2016 04:39:40 PM"
"281596252","[email protected]","WebUI: Make modal window be pre filled always","291676894","","archive:sprint 8","webui","","","","3","False","","8","","","<p>Steps to reproduce:</p><br/><p>1. Open Advertiser settings page <a href=""http://malt-web.dev.multiview.com/advertiser/188/settings"">http://malt-web.dev.multiview.com/advertiser/188/settings</a></p><br/><p>2. Open edit modal window</p><br/><p>3. Delate data from all fields</p><br/><p>4. Press save button</p><br/><p>5. Close window</p><br/><p>6. Open edit modal window one more time</p><br/><p><a href=""http://screencast.com/t/vsaDluqd"">http://screencast.com/t/vsaDluqd</a></p><br/><p>Current result: All fields are empty</p><br/><p>Expected result: All fields are pre filled with correct information</p><br/><p>The same situation is with campaign modal window</p><br/><p>The same situation is with change state modal window - if we change status, press save, than don't save changes on sub modal window, close modal window with cancel or close button. Than open modal window one more time. There is not current status.</p>","Defect","Normal","372","","","01/25/2016 11:44:19 AM","01/25/2016 11:44:19 AM","01/25/2016","01/13/2016 02:11:25 PM","01/19/2016 04:09:02 PM"
"281783146","[email protected]","WEbUI: Add name of entity in the link before header on profile page","291676894","","archive:sprint 8","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7BAA00B692-E64C-4001-9EF1-99FDEF798067%7D&file=MALT%20User%20Stories%20-%20Campaign%20Profile%20Page.docx&action=default","","","1","False","","9","","","<p>Steps to reproduce:</p><br/><p>1. Open Campaign or Ad group profile page</p><br/><p><a href=""http://malt-web.dev.multiview.com/campaign/71/overview"">http://malt-web.dev.multiview.com/campaign/71/overview</a></p><br/><p><a href=""http://malt-web.dev.multiview.com/adgroup/345/overview"">http://malt-web.dev.multiview.com/adgroup/345/overview</a></p><br/><p>2. Look at links before header</p><br/><p> <a href=""http://screencast.com/t/DI6XUiCuAiE"">http://screencast.com/t/DI6XUiCuAiE</a></p><br/><p>Current result: There aren't name of advertiser and/or campaign in the links</p><br/><p>Expected result: There should be name of advertiser and/or campaign in the links according to the US. There shouldn't be words ""Advertiser"" and ""Campaing"" but there should be icons ""A"" and ""C"" in a circle.</p><br/><p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%201/4.(Final)%20Ad%20Group/(Final)%20Profile%20Page/(Final)%20General/Wireframe%20-%20Ad%20Group%20Profile.pdf"">https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%201/4.(Final)%20Ad%20Group/(Final)%20Profile%20Page/(Final)%20General/Wireframe%20-%20Ad%20Group%20Profile.pdf</a></p><br/><p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={32F4259D-709D-4A23-AF91-FEAF000D2871}&file=MALT%20User%20Stories%20-%20Ad%20Group%20Profile%20Page.docx&action=default"">https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={32F4259D-709D-4A23-AF91-FEAF000D2871}&file=MALT%20User%20Stories%20-%20Ad%20Group%20Profile%20Page.docx&action=default</a></p><br/><p> </p>","Defect","Normal","376","","","01/25/2016 11:44:20 AM","01/25/2016 11:44:20 AM","01/25/2016","01/11/2016 03:23:23 PM","01/19/2016 05:06:19 PM"
"282476960","[email protected]","WebUI: The link ""Campaign"" on the Ad Group Profile page doesn't work correct","291676894","","archive:sprint 8","webui","","","","1","False","","10","","","<p>Steps to reproduce:</p><br/><p>1. Open advertiser profile page</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/186/overview"">http://malt-web.dev.multiview.com/advertiser/186/overview</a></p><br/><p>2. This advertiser has 3 campaign - one of them has ID 499</p><br/><p>3. Open ad Group lists sub page</p><br/><p>4. Open ad group profile page</p><br/><p><a href=""http://malt-web.dev.multiview.com/adgroup/360/overview"">http://malt-web.dev.multiview.com/adgroup/360/overview</a></p><br/><p>5. There is a link <a href=""http://malt-web.dev.multiview.com/campaign/186/overview"">Campaign (ID: 499 )</a>/ Click on the link</p><br/><p>6. Campaign profile page is opened</p><br/><p>Current result: It is a Campaign profile page of campaign with ID 186. (ID 186 - it is a ID ofcorrect advertiser) </p><br/><p>Expected result: <span> It is a Campaign profile page of campaign with ID 499</span></p><br/><p><a href=""http://screencast.com/t/BCVXZEW1YBY"">http://screencast.com/t/BCVXZEW1YBY</a></p>","Defect","High","384","","","01/25/2016 11:44:20 AM","01/25/2016 11:44:20 AM","01/25/2016","01/11/2016 03:23:07 PM","01/13/2016 02:53:11 PM"
"282686841","[email protected]","WebUI: Correct Campaign Modal window","291676894","","archive:sprint 8","webui","","","","2","False","","11","","","<p>Steps to reproduce</p><br/><p>1. Opem Campaign New Modal window</p><br/><p>2. Press button ""save""</p>","Defect","Normal","386","","","01/25/2016 11:44:21 AM","01/25/2016 11:44:21 AM","01/25/2016","01/13/2016 02:10:14 PM","01/14/2016 03:04:16 PM"
"287064971","[email protected]","WebUI: Pass validation errors from backend to Yii model","291676894","","archive:sprint 8","webui","","","","2","False","","12","","","","Improvement","High","419","","","01/25/2016 11:44:21 AM","01/25/2016 11:44:21 AM","01/25/2016","01/13/2016 10:05:36 AM","01/19/2016 12:03:51 PM"
"288245467","[email protected]","WebUI: Move to Fluid layout","291676894","","archive:sprint 8","webui","","","","2","False","","13","","","","Task","Normal","444","","","01/25/2016 11:44:21 AM","01/25/2016 11:44:21 AM","01/25/2016","01/15/2016 03:36:26 PM","01/21/2016 11:18:11 AM"
"288835220","[email protected]","WebUI: Specify correct Owner form Domains\Domain lists","291676894","","archive:sprint 8","webui","","","","1","False","","14","","","","Improvement","High","451","","","01/25/2016 11:44:22 AM","01/25/2016 11:44:22 AM","01/25/2016","01/19/2016 06:29:07 PM","01/20/2016 02:41:03 PM"
"289351911","[email protected]","WebUI: Instead of disdabling non-implemented pages, show phrase “This Page is Currently Undefined”","291676894","","archive:sprint 8","webui","","","","2","False","","15","","","","Defect","Normal","463","","","01/25/2016 11:44:22 AM","01/25/2016 11:44:22 AM","01/25/2016","01/19/2016 12:02:20 PM","01/21/2016 10:45:21 AM"
"290457068","[email protected]","WebUI: Add version number indicator","291676894","","archive:sprint 8","webui","","","","1","False","","16","","","","Improvement","Normal","482","","","01/25/2016 11:44:22 AM","01/25/2016 11:44:22 AM","01/25/2016","01/22/2016 02:01:23 PM","01/22/2016 04:53:31 PM"
"285945443","[email protected]","Backend: automate migrations using flyway","291676894","","archive:sprint 8","backend","","","","3","False","","17","","","","Task","Normal","390","","","01/26/2016 11:25:07 AM","01/26/2016 11:25:07 AM","01/26/2016","01/11/2016 08:32:05 AM","01/12/2016 03:53:02 PM"
"275552668","[email protected];[email protected]","Backend: AdGroup Targeting. Keyword Management","291676894","","archive:sprint 8","backend","","","","3","False","","18","","","","Feature","Normal","254","279516998","279516998","01/26/2016 11:25:10 AM","01/26/2016 11:25:10 AM","01/26/2016","12/29/2015 10:41:20 AM","01/14/2016 01:38:39 PM"
"287651547","[email protected]","Backend: move Simpli.Fi CampaignType-s to SimpliFiDictionary","291676894","","archive:sprint 8","backend","","","","1","False","","19","","","","Task","Normal","437","","","01/26/2016 11:25:14 AM","01/26/2016 11:25:14 AM","01/26/2016","01/14/2016 01:39:25 PM","01/15/2016 02:04:56 PM"
"285923717","[email protected];[email protected]","Backend: implement keyword synchronization with Simpli.Fi","291676894","","archive:sprint 8","backend","","","","3","False","","20","","","","Feature","Normal","391","","","01/26/2016 11:25:18 AM","01/26/2016 11:25:18 AM","01/26/2016","01/11/2016 08:32:55 AM","01/15/2016 01:58:30 PM"
"290442325","[email protected]","Backend: obtain detailed errors from simpli.fi and provide it through common errors mechanism","291676894","","archive:sprint 8","backend","","","","2","False","","21","","","","Task","Normal","478","","","01/26/2016 11:25:27 AM","01/26/2016 11:25:27 AM","01/26/2016","01/21/2016 10:32:08 AM","01/22/2016 02:29:17 PM"
"289334254","[email protected]","Backend: integration tests for keywords","291676894","","archive:sprint 8","backend","","","","2","False","","22","","","","Task","Normal","461","","","01/26/2016 11:25:40 AM","01/26/2016 11:25:40 AM","01/26/2016","01/19/2016 10:23:54 AM","01/19/2016 10:26:46 AM"
"290453037","[email protected]","Backend: all Simpli.Fi pipelines should be synchronous","291676894","","archive:sprint 8","backend","","","","2","False","","23","","","","Task","Normal","479","","","01/26/2016 11:25:46 AM","01/26/2016 11:25:46 AM","01/26/2016","01/21/2016 10:32:34 AM","01/22/2016 03:02:49 PM"
"290457029","[email protected]","Backend: error endpoint should return correct http statuses for diffrent exception types","291676894","","archive:sprint 8","backend","","","","2","False","","24","","","","Task","Normal","477","","","01/26/2016 11:25:52 AM","01/26/2016 11:25:52 AM","01/26/2016","01/21/2016 10:31:02 AM","01/22/2016 10:45:34 AM"
"354065227","","Add 600x315, 1200x627, 1200x626 dimensions to Simpli.fi Facebook Creative. ","293447297","","backlog:phase 2&3","backend,webui","","","","3","False","","0","","","","Task","Normal","1567","","","06/22/2016 11:36:55 AM","06/22/2016 11:36:55 AM","","",""
"334960466","[email protected];[email protected];[email protected]","Keywords Change Log Reporting (no UI)","293447297","","backlog:phase 2&3","backend","","","","0","False","","1","","","<p>Part of ""<span>Administrative Features"" DL bundle recently acknowledged as part of MALT team responsibility</span></p>","Feature","Normal","1597","","","06/22/2016 07:20:08 PM","07/12/2016 02:30:05 AM","","",""
"311035976","","WebUI: Change confirmation message for function ""change state of advertiser""","293447298","","backlog:phase 1","webui,advertiser","","","","0","False","","0","","","<p>Steps to reproduce:</p><br/><p>1. Open advertiser settings page <a href=""http://malt-web.dev.multiview.com/advertiser/2237/settings"">http://malt-web.dev.multiview.com/advertiser/2237/settings</a></p><br/><p>2. Try to change state of this advertiser on inactive</p><br/><p>Current result: The is confirmation message ""<strong>Continuing with this action will move all child ad groups to an ended status. Would you like to proceed?"" <a href=""http://screencast.com/t/HseLglbNX"">http://screencast.com/t/HseLglbNX</a> </strong></p><br/><p>Expected result: There should be confirmation message: ""<strong>Continuing with this action will move all <strong>child </strong>campaigns to an inactive state and all child ad groups to an ended status. Would you like to proceed?"" </strong></p>","Defect","Normal","886","","","03/10/2016 10:57:31 AM","05/30/2016 04:24:30 PM","","",""
"302532483","","Correct validation for field ""name"" for all entities","293447298","","backlog:phase 1","webui,general","","","","0","False","","1","","","<p>The problem is that validation for leght of name is only on backend so it works only after clicking on save buttons</p><br/><p><a href=""http://screencast.com/t/6r8O1pam1r2R"">http://screencast.com/t/6r8O1pam1r2R</a> </p>","Improvement","Normal","678","","","02/19/2016 11:26:04 AM","06/10/2016 01:09:50 PM","","",""
"306345350","","WebUI: Increase width of left navigation bar on profile page","293447298","","backlog:phase 1","webui,left-navigation","","","","0","False","","2","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/advertiser/2237/dmp"">http://malt-web.dev.multiview.com/advertiser/2237/dmp</a></p><br/><p>2. Look at Navigation bar</p><br/><p><strong>Current result:</strong> The width is not enought for showing the title of parameter ""3rd Party Tags"" and count</p><br/><p><a href=""http://screencast.com/t/7Zuhr5idn7"">http://screencast.com/t/7Zuhr5idn7</a> , <a href=""http://screencast.com/t/5XgfTkdn5K"">http://screencast.com/t/5XgfTkdn5K</a> </p><br/><p><strong>Expected result:</strong> The width is enought for showing the title of parameter and count in inactive and active status</p>","Defect","Normal","780","","","02/29/2016 06:19:08 PM","05/30/2016 04:30:04 PM","","",""
"300936963","","Correct displaying of entities with long name","293447298","","backlog:phase 1","webui,general","","","","0","False","","3","","","","Defect","High","645","","","02/16/2016 04:28:14 PM","06/09/2016 10:53:49 PM","","",""
"296304951","","WebUI: Delete space before advertiser name after creation and edition","293447298","","backlog:phase 1","webui,advertiser","","","","0","False","","4","","","<p>Steps to reproduce:</p><br/><p>1. Open create advertiser popup</p><br/><p>2. Fill all bessesary fields and input in the name "" ghbb"" and save</p><br/><p>Current result: the name of advertiser is "" ghbb""</p><br/><p>Expected result: the name of advertiser is ""ghbb"" without any space before name</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/2144/overview"">http://malt-web.dev.multiview.com/advertiser/2144/overview</a> profile page of such advertisers. There is a problem with sorting of the table by name befire this.</p>","Defect","Normal","548","","","02/04/2016 10:34:15 AM","05/30/2016 04:31:09 PM","","",""
"282154570","","Correct behavior of ""Enter"" inside ""Datepicker"" editor.","293447298","","backlog:phase 1","webui,campaign-popup","","","","0","False","","5","","","<p>Make a pressing on key ""enter"" to be equal with clicking on button save if user has filled field ""end date"" on modal window for creating of new campaign</p>","Improvement","Normal","380","","","01/28/2016 06:49:41 PM","06/09/2016 10:57:58 PM","","",""
"286634657","","WebUI: backbone-forms: numeric field doesn't trigger 'change' when its value < 0","293447298","","backlog:phase 1","webui","","","","0","False","","6","","","","Defect","Normal","418","","","01/28/2016 06:49:43 PM","01/28/2016 06:49:43 PM","","",""
"288266283","","Backbone Model: make save() only when something was actually changed.","293447298","","backlog:phase 1","webui","","","","0","False","","7","","","","Improvement","Normal","445","","","01/28/2016 06:49:46 PM","06/09/2016 10:59:08 PM","","01/15/2016 04:40:07 PM",""
"288237192","","WebUI: Ad Group Wizard","293447298","","backlog:phase 1","webui,adgroup-wizard","","","","0","False","","8","","","","Defect","High","443","","","01/28/2016 06:49:45 PM","06/24/2016 02:41:01 PM","","",""
"300946487","","Webui: Change approach getAdditionalFields to getAdditionalQueries for all models","293447298","","backlog:phase 1","webui","","","","3","False","","9","","","<p>Write getAdditionalQueries method for all models, which have getAdditionalFields method now.</p><br/><p>This approach has already applied for Keyword model</p>","Improvement","Normal","646","","","02/16/2016 02:17:06 PM","02/16/2016 02:17:06 PM","","",""
"310496767","","WebUI: Change work with datetime in UI","293447298","","backlog:phase 1","webui","","","","0","False","","10","","","<p>Everywhere we should work with date in ISO format (with timezone).</p><br/><p>In current implementation backbone sends ""dd/mm/yyyy"" date without timezone.</p><br/><p>Need to:</p><br/><ul><br/><li>work with momentjs in backbone to work with dates. Use formatting only in backbone, or php templates</li><br/><li>backbone should send dates in ISO format (use momentjs)</li><br/><li>Yii should accept ISO date format</li><br/><li>remove fixed Dallas timezone from yii settings in web.php</li><br/></ul>","Improvement","Normal","883","","","03/09/2016 01:30:49 PM","03/15/2016 11:59:31 AM","","",""
"311640071","","WebUI: refactoring styles and make it the same for all pages","293447298","","backlog:phase 1","webui","","","","0","False","","11","","","<p>Now different developers implement features with the same UI. As result we get different styles for the same UI elements. We should refactor these styles and reuse it in feature.</p><br/><p>Examples:</p><br/><ol><br/><li>Count: <a href=""http://screencast.com/t/sdrTrxeNAJW"">http://screencast.com/t/sdrTrxeNAJW</a>, <a href=""http://screencast.com/t/5MIKEzgjK"">http://screencast.com/t/5MIKEzgjK</a></li><br/><li>Space between two blocks in a column: <a href=""http://screencast.com/t/tZkF0tcY"">http://screencast.com/t/tZkF0tcY</a> (no space), <a href=""http://screencast.com/t/KPAbYy9e"">http://screencast.com/t/KPAbYy9e</a> (there is space)</li><br/></ol>","Improvement","Normal","902","","","03/11/2016 03:22:58 PM","03/14/2016 04:33:08 PM","","",""
"312910975","","WebUI: Problem with border inside table on DayParting popup","293447298","","backlog:phase 1","webui,dayparting-targeting","","","","0","False","","12","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/adgroup/4081/targeting"">http://malt-web.dev.multiview.com/adgroup/4081/targeting</a> </p><br/><p>2. Open Sheduling (DayParting) popup</p><br/><p>3. Make action as <a href=""http://screencast.com/t/oReywC4BL39M"">http://screencast.com/t/oReywC4BL39M</a> </p><br/><p><strong>Current result:</strong> there is problem with borders inside table</p><br/><p><strong>Expected result:</strong> Border of table and inside table are stable in any cases</p>","Defect","Low","933","","","03/15/2016 02:46:25 PM","05/30/2016 04:58:22 PM","","",""
"314484482","","WebUI: IE Cursor is out of search field","293447298","","backlog:phase 1","webui,IE","","","","0","False","","13","","","<p><strong>see more: </strong>I cannot type any letters after changing of the size of the window, only after clicking on search field <a href=""http://screencast.com/t/VSCsZu7nvMEl"">http://screencast.com/t/VSCsZu7nvMEl</a> </p><br/><p><strong>steps to reproduce: WIN7 IE11</strong></p><br/><ul><br/><li>Open list page</li><br/><li>change size</li><br/><li>look at search field</li><br/></ul><br/><p><strong>Current result:</strong> The cursor is out of search field, search field in in focus, user cannot type words<br /><strong>Expected result:</strong> The cursor is in the beginning of search field, search field is in focus, user can make a search just start typing</p>","Defect","High","944","","","03/18/2016 02:30:00 PM","06/22/2016 03:20:10 PM","","",""
"321028318","","Quick view is broken on page with big width and small high","293447298","","backlog:phase 1","webui,quick-view","","","","0","False","","14","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/GdfEEKPZ"">http://screencast.com/t/GdfEEKPZ</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Use screen or change size of your browser</li><br/><li>Go to any profile page (advirticer, adgroup)</li><br/><li>Look at quick view</li><br/></ol><br/><p><strong>Actual resiult:</strong> ID or Account is displayed in a new line in the middle od quick view header</p><br/><p><strong>Expected result:</strong> <span>ID or Account is displayed in the top right corner</span></p>","Defect","Low","1088","","","04/05/2016 12:59:22 PM","04/18/2016 12:42:34 PM","","",""
"322242236","","Cursor is displayed over header at scrolling","293447298","","backlog:phase 1","webui,quick-view","","","","0","False","","15","","","<p><a href=""http://screencast.com/t/243YDJlD7S"">http://screencast.com/t/243YDJlD7S</a> </p>","Defect","Low","1125","","","04/07/2016 05:31:25 PM","05/20/2016 04:10:37 PM","","",""
"322341465","","User need to scroll to see 3rd party tags if on last page is less then 10 tags","293447298","","backlog:phase 1","webui,3rdpartytag-targeting","","","","0","False","","16","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to Adgroup page with more then 25 and less then 30 3rd party tags</li><br/><li>Click 3rd party tags sub page</li><br/><li>Scroll down</li><br/><li>Click 2 in pagination</li><br/></ol><br/><p><strong>Actual result: </strong>empty space without data (you need to scroll up to see it) and pagination in the bottom of the page</p><br/><p><strong>Expected result:</strong> no scroll, pagination is sticked to the table, content is visible immediately as you click pagingation item </p>","Defect","Normal","1127","","","04/07/2016 07:47:06 PM","05/30/2016 05:03:15 PM","","",""
"323365523","","Grey ""Select"" text on grey background in Multiview and DSP classification select lists","293447298","","backlog:phase 1","webui,adgroup-wizard","","","","0","False","","17","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/vxKTOwO3O1lq"">http://screencast.com/t/vxKTOwO3O1lq</a> </p><br/><p> </p><br/><p> </p>","Defect","Low","1140","","","04/11/2016 01:36:24 PM","05/30/2016 05:03:39 PM","","",""
"323375899","","Fix Data Management list view in header","293447298","","backlog:phase 1","webui,navbar","","","","0","False","","18","","","<p><strong>Actual result:</strong> <a href=""http://screencast.com/t/ks0Fg9dXQd2"">http://screencast.com/t/ks0Fg9dXQd2</a> </p><br/><p><strong>Expected result:</strong> <a href=""http://screencast.com/t/aoJUhDbI"">http://screencast.com/t/aoJUhDbI</a> </p>","Improvement","Low","1141","","","04/11/2016 01:54:18 PM","05/30/2016 05:03:53 PM","","",""
"324621938","","Correct layuot for ""IP Targeting"" popup","293447298","","backlog:phase 1","webui,ip-targeting","","","","0","False","","19","","","<p><strong>steps to reproduce: </strong></p><br/><ul><br/><li>open page <a href=""http://develop.tt.dev.multiview.com/adgroup/4132/targeting"">http://develop.tt.dev.multiview.com/adgroup/4132/targeting</a> </li><br/><li>open popup ""IP Targeting""</li><br/><li>change size</li><br/></ul><br/><p><strong>Current result:</strong> There is a problem with upper border of table <a href=""http://screencast.com/t/hLGSpIUaGa"">http://screencast.com/t/hLGSpIUaGa</a> </p><br/><p><strong>Expected result: </strong>The upper border of table is stable for any size of window</p>","Defect","Low","1159","","","04/13/2016 11:39:33 AM","04/15/2016 09:45:20 AM","","",""
"313533273","","WebUI: need to always have previous page number in pagination","293447298","","backlog:phase 1","webui,pagination","","","","0","False","","20","","","<p><a href=""http://screencast.com/t/mPlZwtACd"">http://screencast.com/t/mPlZwtACd</a> </p><br/><p><strong>URL:</strong> http://malt-qa.uat.multiview.com/advertiser/list</p>","Defect","Low","940","","","03/16/2016 06:30:13 PM","07/15/2016 05:30:01 PM","","",""
"324689709","","GeoTargeting for Ad Group","293447298","","backlog:phase 1","webui,location-targeting","","","","0","False","","21","","","","Defect","High","1163","","","04/13/2016 03:13:52 PM","06/30/2016 03:11:08 PM","","",""
"312936900","","WebUI: Different columns size on IE11","293447298","","backlog:phase 1","webui,IE","","","","0","False","","22","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/c2vQVItb"">http://screencast.com/t/c2vQVItb</a> </p>","Defect","Low","935","","","06/14/2016 12:12:27 PM","06/14/2016 12:12:27 PM","","06/14/2016 12:12:21 PM",""
"325764343","","Headers of tables in targeting windows are jumping at empty result of searching","293447298","","backlog:phase 1","webui,browser-targeting,os-targeing,domain-targeting,contextual-tergeting","","","","0","False","","23","","","<p><strong>see more:</strong> <a href=""http://screencast.com/t/RnoBFi8EG"">http://screencast.com/t/RnoBFi8EG</a> </p>","Defect","Normal","1178","","","04/15/2016 09:44:41 AM","05/30/2016 05:06:22 PM","","",""
"325821100","","Different height of sections New keywords and Filters on Keyword subpage on narrow screen","293447298","","backlog:phase 1","webui,keywords-targeting","","","","0","False","","24","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/bpaU2R6K"">http://screencast.com/t/bpaU2R6K</a> </p>","Defect","Low","1182","","","04/15/2016 02:37:42 PM","05/30/2016 05:06:44 PM","","",""
"330184533","","Targeting sub page: Correct layout of elements on page","293447298","","backlog:phase 1","webui,targeting_page","","","","0","False","","25","","","<p><strong>steps to reproduce: </strong></p><br/><ul><br/><li>open page with url adgroup/6132/overview</li><br/><li>look at page</li><br/></ul><br/><p><strong>Current result:</strong> The ""Site contextual"" isn't on the same line as ""Scheduling"" and ""IP Targeting"" <a href=""http://screencast.com/t/2VpKwfYBM"">http://screencast.com/t/2VpKwfYBM</a> </p><br/><p><strong>Expected result:</strong> All elements should have the same alignment in one column</p>","Defect","Low","1216","","","04/26/2016 10:41:25 AM","04/26/2016 10:41:26 AM","","",""
"330831312","[email protected]","Introduce nginx cahce","293447298","","backlog:phase 1","webui","","","","5","False","","26","","","","Improvement","Normal","1218","","","04/27/2016 10:48:04 AM","04/27/2016 11:10:07 AM","","",""
"330835653","[email protected]","Introduce test framework for client code","293447298","","backlog:phase 1","webui","","","","8","False","","27","","","","Improvement","Normal","1222","","","04/27/2016 10:50:59 AM","04/27/2016 10:52:49 AM","","",""
"330839468","[email protected]","Introduce Babel","293447298","","backlog:phase 1","webui","","","","5","False","","28","","","","Improvement","Normal","1226","","","04/27/2016 10:53:42 AM","04/27/2016 10:54:36 AM","","",""
"336153126","","Add client validation for pasting of keywords","293447298","","backlog:phase 1","webui,keywords-targeting","","","","0","False","","29","","","<p><strong>steps to reproduce: <span id=""docs-internal-guid-347fdf0b-9a16-e9cf-3b49-546c00bf9f18""><a href=""http://screencast.com/t/Jv9eYAZ3vL""><span>http://screencast.com/t/Jv9eYAZ3vL</span></a><span> </span></span></strong></p><br/><ul><br/><li>open keywords sub page of ad group (DSP Classification - Search)</li><br/><li>go out of field for pasting</li><br/></ul><br/><p><strong>Current result: </strong>There isn't client validation for field. Error message appears only after clicking on add button</p><br/><p><strong>Expected result:</strong> The error message should appears just after changing of focus.</p>","Improvement","Normal","1283","","","05/10/2016 03:54:28 PM","05/30/2016 05:10:10 PM","","",""
"321662138","","Site Contextual Targeting: make expand/collapse behaviour the same as for Operating System Targeting","293447298","","backlog:phase 1","webui,contextual-tergeting","","","","3","False","","30","","","<p>Requirenments for Operating System was: https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=161&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE</p>","Improvement","Normal","1105","","","05/13/2016 12:31:28 PM","05/30/2016 05:10:24 PM","","04/06/2016 05:24:25 PM",""
"298216968","","WebUI: Apply getDirtyAttributes approach to BaseActiveRecord class","293447298","","backlog:phase 1","webui","","","","0","False","","31","","","","Improvement","Normal","625","","","02/15/2016 10:48:22 AM","07/21/2016 10:40:51 AM","","02/09/2016 06:37:13 PM",""
"324151653","","Cursor should change to hand at moving it over number of OSs","293447298","","backlog:phase 1","webui,os-targeing","","","","2","False","","32","","","<p><strong>Actual behavior:</strong> <a href=""http://screencast.com/t/wmOACOLY"">http://screencast.com/t/wmOACOLY</a> </p><br/><p><strong>Expected behavior:</strong> should works like for Site Contextual tergeting</p><br/><p>Should be checked for all targeting options as well.</p>","Improvement","Normal","1152","","","05/13/2016 12:31:28 PM","05/13/2016 12:31:28 PM","","04/18/2016 12:26:36 PM",""
"324170157","","Cursor shouldn't be moved to the end of a digit fields when user clicks in them","293447298","","backlog:phase 1","webui,general","","","","2","False","","33","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/c8lgLR8hE"">http://screencast.com/t/c8lgLR8hE</a> </p><br/><p>Applicable for currency fields only</p>","Defect","Normal","1153","","","05/13/2016 12:31:28 PM","05/30/2016 05:10:57 PM","","04/18/2016 12:26:54 PM",""
"324617275","","Remove Responsiveness from ""Site Contextual"" popup","293447298","","backlog:phase 1","webui,contextual-tergeting","","","","2","False","","34","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>open page <a href=""http://develop.tt.dev.multiview.com/adgroup/4132/targeting"">http://develop.tt.dev.multiview.com/adgroup/4132/targeting</a> </li><br/><li>open popup ""Site Contextual"" </li><br/><li>change size of window</li><br/></ul><br/><p><strong>Current result: </strong>There is Responsiveness for popup <a href=""http://screencast.com/t/HyUkIh27LGg6"">http://screencast.com/t/HyUkIh27LGg6</a></p><br/><p><strong>Expected result:</strong> There shouldn't be Responsiveness for popup </p>","Defect","Normal","1158","","","05/13/2016 12:31:28 PM","05/30/2016 05:11:06 PM","","04/18/2016 12:23:15 PM",""
"338577266","","Keywords Filters:Error message appears only after click ""Save"" on keyword filter page","293447298","","backlog:phase 1","webui,keywords-targeting","","","","0","False","","35","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Navigate to keyword filter pop-up</li><br/><li>Enter 1.5 as CTR upper boundary value</li><br/></ol><br/><p><strong>Expected result:</strong> Error message should appear</p><br/><p><strong>Actual result:</strong> Nothing happens until save button isn't pressed</p>","Defect","Normal","1303","","","05/16/2016 03:59:52 PM","05/30/2016 05:11:26 PM","","",""
"340919015","","Footer isn't in correct place of the page","293447298","","backlog:phase 1","webui,footer","","","","0","False","","36","","","<p><strong>steps to reproduce: <a href=""http://screencast.com/t/IhDxNBBO"">http://screencast.com/t/IhDxNBBO</a> </strong></p><br/><ul><br/><li>open Dashboard page, or page with small quantity of elements in the table global-domain-list/5200/settings </li><br/><li>change size of the page</li><br/></ul><br/><p><strong>Current result:</strong> footer is in the middle part of page<br /><strong>Expected result:</strong> Footer shoul be in the end of page always</p>","Defect","Normal","1324","","","05/20/2016 02:46:11 PM","05/20/2016 02:46:11 PM","","",""
"346598392","","Creative edit: Change name on ""Creative Details"" and add oportunity to user with creative_read permission to open it","293447298","","backlog:phase 1","webui,creative-edit","","","","0","False","","37","","","<p>Because the creative view is on the edit/details screen, we have to allow someone with the ability to read creative records to at least access and see the popup in read only format. Because of this, we can call this popup ""Creative Details"" instead of ""Creative Edit"" to cover both the needs of someone coming to edit and just view details.</p>","Improvement","High","1389","","","06/03/2016 01:57:41 PM","06/03/2016 01:57:41 PM","","",""
"347855260","","Wizard navigation","293447298","","backlog:phase 1","webui","","","","0","False","","38","","","<p>steps to reproduce:</p><br/><ol><br/><li>open wizard for creative</li><br/><li>fill all nessesary fields and go to 3rd step</li><br/><li>returm to 2rd step</li><br/><li>delete pacing </li><br/><li>got to 1st step</li><br/><li>go to 3rd step</li><br/></ol><br/><p>Current result: User is on 3rd step and make got to 4th and click button save. But creative would be created</p><br/><p>Expected result: Maybe we shoul add one more style for steps with error - to shown they in red color and don't sllow to clisk save. May be add additional popup - that after clicking on save there would be error message with name of parameter and error.</p>","Improvement","High","1406","","","06/07/2016 01:35:01 PM","06/07/2016 01:35:01 PM","","",""
"347925746","","Wizard Campaign: confirmation popup for changing ad server","293447298","","backlog:phase 1","campaign-popup,webui","","","","0","False","","39","","","<table dir=""ltr"" border=""1"" cellspacing=""0"" cellpadding=""0""><colgroup><col width=""221"" /><col width=""261"" /></colgroup><br/><tbody><br/><tr><br/><td data-sheets-value=""{"1":2,"2":"\"Change Add Server\""}"" data-sheets-formula=""=HYPERLINK("http://screencast.com/t/CCMDRhaJ","""Change Add Server""")""><a class=""in-cell-link"" href=""http://screencast.com/t/CCMDRhaJ"" target=""_blank"">""Change Add Server""</a></td><br/><td data-sheets-value=""{"1":2,"2":"title, left align"}"">title, left align</td><br/></tr><br/><tr><br/><td data-sheets-value=""{"1":2,"2":"X, close button, right align"}"">X, close button, right align</td><br/><td data-sheets-value=""{"1":2,"2":"close sub-popup without changing of ad server, return user to Add Creative popup"}"">close sub-popup without changing of ad server, return user to Add Creative popup</td><br/></tr><br/><tr><br/><td data-sheets-value=""{"1":2,"2":"message"}"">message</td><br/><td data-sheets-value=""{"1":2,"2":"\u201cAre you sure you want to change the Ad Server? Any information you have input so far will be lost.\u201d"}"">“Are you sure you want to change the Ad Server? Any information you have input so far will be lost.”</td><br/></tr><br/><tr><br/><td data-sheets-value=""{"1":2,"2":"cancel, button in the bottom"}"">cancel, button in the bottom</td><br/><td data-sheets-value=""{"1":2,"2":"close sub-popup without changing of ad server, return user to Add Creative popup"}"">close sub-popup without changing of ad server, return user to Add Creative popup</td><br/></tr><br/><tr><br/><td data-sheets-value=""{"1":2,"2":"save, blue color in the bottom"}"">save, blue color in the bottom</td><br/><td data-sheets-value=""{"1":2,"2":"close sub-popup with changing of ad server, return user to Add Creative popup with clearing all selections/inputtings"}"">close sub-popup with changing of ad server, return user to Add Creative popup with clearing all selections/inputtings</td><br/></tr><br/></tbody><br/></table>","Improvement","Normal","1420","","","06/07/2016 03:53:01 PM","06/07/2016 03:53:01 PM","","",""
"349561732","","Advertiser Create/Edit: Error isn't displayed if value with decimpal places is pasted to Account # field","293447298","","backlog:phase 1","webui","","","","0","False","","40","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Paste a ""340.05"" or ""340.00"" to Account # field</li><br/><li>Unfocus the field</li><br/></ol><br/><p><strong>Expected result: </strong>Error message should be displayed.</p><br/><p><strong>Actual result: </strong>Nothing is happened. For ""340.05"" error message is diplaying only if user clicks ""create"" button. For ""340.00"" error message isn't displayed.</p>","Defect","Low","1440","","","06/10/2016 01:37:34 PM","06/10/2016 01:37:52 PM","","",""
"350838245","","No error about necessary ad at least one URL for site edit page","293447298","","backlog:phase 1","webui","","","","0","False","","41","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to site page</li><br/><li>Remove all URLs</li><br/><li>Click save</li><br/></ol><br/><p><strong>Actual result:</strong> </p><br/><p><strong>Expected result:</strong> </p>","Defect","Normal","1475","","","06/14/2016 05:31:18 PM","06/14/2016 05:31:18 PM","","",""
"351263354","","Flash file is displayed over black background at saving creative","293447298","","backlog:phase 1","webui,creatives","","","","0","False","","42","","","<p>See more: <a href=""http://screencast.com/t/XLwfyJlQnC"">http://screencast.com/t/XLwfyJlQnC</a> </p>","Defect","Normal","1479","","","06/15/2016 11:08:46 AM","06/15/2016 11:08:46 AM","","",""
"351315404","","Column name in Domain targeting popup is moving from down when other popup parts open from up","293447298","","backlog:phase 1","webui,domain-targeting","","","","0","False","","43","","","<p>See more: <a href=""http://screencast.com/t/3cyFJpLI3s"">http://screencast.com/t/3cyFJpLI3s</a> </p>","Defect","Low","1487","","","06/15/2016 02:19:04 PM","06/15/2016 02:19:04 PM","","",""
"351827169","","Should be opportunity to reset Product line and Project on site edit page multiview level ","293447298","","backlog:phase 1","webui,sites","","","","0","False","","44","","","<p>User should hav an opportunity to reset Product and Project line because the're not required fields</p>","Defect","Normal","1501","","","06/16/2016 10:38:38 AM","06/16/2016 10:38:38 AM","","",""
"347398673","","TD Campaign improvements","293447298","","backlog:phase 1","webui","","","","5","False","","45","","","<p><a href=""https://bitbucket.org/thumbtacktech/multiview-dmp-malt-webui/pull-requests/399"">https://bitbucket.org/thumbtacktech/multiview-dmp-malt-webui/pull-requests/399</a> </p>","Improvement","Normal","1398","","","06/17/2016 11:35:16 AM","06/17/2016 11:35:16 AM","","06/14/2016 10:58:59 AM",""
"352358394","","Header is broken","293447298","","backlog:phase 1","webui,general","","","","0","False","","46","","","<p><strong>steps:</strong></p><br/><ul><br/><li>open page advertiser lis, domain list global level</li><br/><li>make a serch withut results or with small quantity of results (less than 1 page)</li><br/></ul><br/><p><strong>result: </strong><a href=""http://screencast.com/t/Kat0omGFCS"">http://screencast.com/t/Kat0omGFCS</a>. It is floating bug.</p>","Defect","Normal","1517","","","06/17/2016 12:24:13 PM","06/17/2016 12:24:13 PM","","",""
"352937347","","Still have negative cost in invoices","293447298","","backlog:phase 1","webui,invoices","","","","0","True","Need Cyndi answer","47","","","","Defect","Normal","1524","","","06/20/2016 10:36:27 AM","06/20/2016 01:47:25 PM","","",""
"354725040","","Align of header for tables is broken","293447298","","backlog:phase 1","webui,general","","","","0","False","","48","","","<p><strong>on list pages for advertiser, campaign, ad group</strong></p><br/><p><span>-Run Dates (Right Align): format should be MM/DD/YY - MM/DD/YY </span></p><br/><p><strong>on list pages for advertise </strong></p><br/><p>10. Spend [Right Align]: The sum of all spend for all ad groups child to all campaigns that are child to that advertiser.</p><br/><p><span> </span></p>","Defect","Normal","1599","","","06/23/2016 05:59:47 PM","06/24/2016 04:27:48 PM","","",""
"354746158","","Ip Targeting: Make header of the table to be not scrollable","293447298","","backlog:phase 1","webui,ip-targeting","","","","0","False","","49","","","<p><a href=""http://malt-qa.uat.multiview.com/adgroup/2010/targeting"">http://malt-qa.uat.multiview.com/adgroup/2010/targeting</a></p><br/><ul><br/><li>open page</li><br/><li>open ip-targeting popup</li><br/><li>scroll list</li><br/></ul><br/><p>Current result: The header of table is scrollable</p><br/><p>Expected result: the header of table isn't scrollable</p>","Defect","Normal","1600","","","06/23/2016 06:41:10 PM","06/24/2016 02:48:22 PM","","",""
"355170533","","Keywords: Add checking of validation of file for uploading","293447298","","backlog:phase 1","webui,keywords-targeting","","","","0","False","","50","","","<p>Use message ""File is not in CSV format, please correct and reattempt upload.""</p><br/><p>we have such validation for ip-targetinh function <a href=""http://develop.tt.dev.multiview.com/adgroup/4090/targeting"">http://develop.tt.dev.multiview.com/adgroup/4090/targeting</a> </p>","Defect","High","1606","","","06/24/2016 02:23:00 PM","06/24/2016 02:36:51 PM","","",""
"355610149","[email protected]","Get rid of CampaignWizard","293447298","","backlog:phase 1","webui","","","","0","False","","51","","","<p>The CampaignWizard is based on CBaseWizard.<br />Rewrite code, to based on BaseWizard</p>","Improvement","High","1611","","","06/26/2016 08:53:54 PM","06/26/2016 08:54:11 PM","","",""
"352449501","","List editor improvements","293447298","","backlog:phase 1","webui","","","","0","False","","52","","","<p>From <a href=""https://bitbucket.org/thumbtacktech/multiview-dmp-malt-webui/pull-requests/432/feature-1381-campaign-actions-assignment/diff"">https://bitbucket.org/thumbtacktech/multiview-dmp-malt-webui/pull-requests/432/feature-1381-campaign-actions-assignment/diff</a> :<br /><br />VG: <span>I think functionality of current ListEditor.js could be inserted in ListTextEditor.js. The result should be flexible enough. The only problem I see: several usages in different parts of UI so it should be checked carefully. Please let me know if such refactoring should be done in case of this PR.</span><br /><br />IZ: </p><br/><div class=""wiki-content comment-content""><br/><p>I don't think such refactoring should be done in this task. Please create improvement Task in LeanKit and place it to Backlog.</p><br/></div>","Improvement","Normal","1518","","","06/30/2016 05:05:19 PM","06/30/2016 05:05:19 PM","","06/17/2016 05:38:33 PM",""
"357836172","","Correct validatio on integer numbers","293447298","","backlog:phase 1","webui","","","","0","False","","53","","","<p>There is different validation on Integer numvers in UI and Backend <span id=""docs-internal-guid-f32b26ff-a506-f53b-bdd2-f365cc5f1582""><span>Imp </span><a href=""http://screencast.com/t/UxjFNWQdS""><span>http://screencast.com/t/UxjFNWQdS</span></a><span> </span></span></p>","Defect","High","1697","","","07/01/2016 11:56:19 AM","07/01/2016 11:56:19 AM","","",""
"358664462","","Ad Group SF: Keywords Metrics","293447298","","backlog:phase 1","webui,keywords-targeting","","","","0","False","","54","","","<p><a href=""http://screencast.com/t/007NzJbyFmr"">http://screencast.com/t/007NzJbyFmr</a></p><br/><ol><br/><li>open keywords page for Search Ad Group</li><br/><li>add one keyword and deactivate it</li><br/><li>reload page</li><br/><li>look at Average CTR</li><br/></ol><br/><p>Current result: there is value NaNundefined</p><br/><p>Expected result: There is 0.0000% value</p>","Defect","Normal","1715","","","07/05/2016 11:14:58 AM","07/05/2016 07:11:37 PM","","",""
"358826218","","Web UI: Simpli.fi Browser Targeting - Count Badge Layout Issue","293447298","","backlog:phase 1","webui,targeting_page","","","","0","False","","55","","","<p>Steps to reproduce:</p><br/><ol><br/><li>Open Browser Targeting</li><br/></ol><br/><p>Expected result: Count badge sticks to the bottom of popup</p><br/><p>Actual result: http://prnt.sc/bp2l7h</p>","Defect","Normal","1727","","","07/05/2016 07:15:54 PM","07/05/2016 07:15:58 PM","","",""
"358825502","","Web UI: Action Type options are blended with placeholders","293447298","","backlog:phase 1","webui,actions","","","","0","False","","56","","","<p>Steps to reproduce:</p><br/><ol><br/><li>Open create action popup</li><br/><li>Click on Action Type dropdown</li><br/></ol><br/><p>Expected result: We don't expect placeholders with list of options.</p><br/><p>Actual result: <a href=""http://prnt.sc/bp2l7h"">http://prnt.sc/bp2l7h</a>. All ""-- Select --"" should be removed from the list.</p>","Defect","Normal","1728","","","07/05/2016 07:18:39 PM","07/05/2016 07:18:39 PM","","",""
"353447708","","Actions/Conversions bugs","293447298","","backlog:phase 1","webui","","","","0","False","","57","","","","Defect","Normal","1529","","","07/06/2016 03:55:22 PM","07/20/2016 08:12:50 PM","","06/21/2016 03:12:14 AM",""
"359788348","","TD Ad Group: Domain targeting counting","293447298","","backlog:phase 1","webui,backend","","","","0","False","","58","","","<p>problem with counting for blacklist because of auto set blacklist which don't exists in TD</p>","Defect","High","1749","","","07/14/2016 11:28:17 AM","07/14/2016 11:28:17 AM","","07/07/2016 05:09:43 PM",""
"363690884","","Filtering categories","293447298","","backlog:phase 1","","","","","0","False","","59","","","","Improvement","Normal","1911","","","07/18/2016 02:25:59 PM","07/18/2016 02:25:59 PM","","",""
"364325912","","Location Targeting: When navigating from CRC to DMA it always offers to save CRC and doesn't pass to DMA after saving.","293447298","","backlog:phase 1","webui,location-targeting","","","","0","False","","60","","","<p><strong>Steps To Reproduce:</strong></p><br/><ol><br/><li>Navigate to location targeting on Simpli.fi ad group</li><br/><li>Have at least one location selected (Bolivia, for example)</li><br/><li>Click DMA tab</li><br/><li>Click Yes on ""Save Changes"" popup</li><br/></ol><br/><p><strong>Expected Result:</strong> We expect we will on DMA tab after saving.</p><br/><p><strong>Actual Result:</strong> We actually stay on CRC tab.</p>","Defect","High","1949","","","07/19/2016 06:46:34 PM","07/19/2016 06:46:34 PM","","",""
"292252253","","WebUI: Make key Esc to work always for popups","294550141","","archive:out of scope","webui","","","","0","False","","0","","","<p>Steps to reproduce:<br />1. Open one popup (for example - new advertiser)<br />2. Press on key Tab several times<br />3. Press on key ""Esc""<br />Current result: The pressing on key Esc doesn't close the popup<br />Expected result: The pressing on key Esc closes the popup. It should close popup even if we have inputted some information.<br />But when we open the popup (without any additional action) - the pressing on key Esc closes popup. </p><br/><p> </p>","Defect","Normal","518","","","02/02/2016 01:54:52 PM","02/02/2016 01:54:52 PM","02/02/2016","02/02/2016 01:54:52 PM","02/02/2016 01:54:52 PM"
"292229476","","WebUI: Default sorting of the table on the advertisers list page doesn't work correct","294550141","","archive:out of scope","webui","","","","0","False","","1","","","<p>Steps to reproduce:</p><br/><p>1. Open advertisers list page </p><br/><p>2.. Look at table</p><br/><p>Current result: There is incorrect default sortingd by advertiser name asceding</p><br/><p><a href=""http://screencast.com/t/M6U6HNqpFV"">http://screencast.com/t/M6U6HNqpFV</a></p><br/><p>Expected result: <span data-mce-mark=""1"">There is correct default sortingd by advertiser name asceding</span></p><br/><p>The sorting table by clicking on the title of column ""name"" also doesn't work correct</p>","Defect","Normal","516","","","02/04/2016 10:26:38 AM","02/04/2016 10:27:17 AM","02/04/2016","02/04/2016 10:26:38 AM","02/04/2016 10:26:38 AM"
"289451689","","WebUI: Make ID numbers to have left align in the tables","294550141","","archive:out of scope","webui","","","","0","False","","2","","","<p>Steps to reproduce:</p><br/><p>1. Open any page with table</p><br/><p>2. Look at the column with ID/Account numbers</p><br/><p>Current resul: The ID numbers have right align in the tables</p><br/><p>Expected result: ID numbers have left align in the tables</p>","Defect","Low","467","","","02/04/2016 10:37:25 AM","02/04/2016 10:37:25 AM","02/04/2016","02/04/2016 10:37:25 AM","02/04/2016 10:37:25 AM"
"289949078","","WebUI: Add a delimiter order "","" for parameters budget, Imps(Total),Imps (Served), Clicks, Serve Cost in all tables","294550141","","archive:out of scope","webui","","","","0","False","","3","","","<p>for campaigns list page - <a href=""http://malt-web.dev.multiview.com/advertiser/2/campaigns"">http://malt-web.dev.multiview.com/advertiser/2/campaigns</a></p><br/><p>for advertisers list page <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p>for ad groups list page </p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/6/adgroups"">http://malt-web.dev.multiview.com/advertiser/6/adgroups</a>, <a href=""http://malt-web.dev.multiview.com/campaign/8/adgroups"">http://malt-web.dev.multiview.com/campaign/8/adgroups</a></p>","Defect","Low","476","","","02/04/2016 10:38:18 AM","02/04/2016 10:38:18 AM","02/04/2016","02/04/2016 10:38:18 AM","02/04/2016 10:38:18 AM"
"322679787","","Add Group Create Wizard: Add Validation between total, monthly and daily parameters","294550141","","archive:out of scope","webui","","","","0","False","","4","","","<p>Monthly parameter shouldn't be more than Total, Daily parameter shouldn't de more than total and daily parameters</p><br/><ul><br/><li><strong>Case 1.</strong> Daily more than total - highlighting fields total and daily, error messages for both fields. </li><br/><li><strong>Case 2.</strong> Daily more than monthly - highlighting fields monthly and daily, error messages for both fields. </li><br/><li><strong>Case3. </strong>Monthly more than total - highlighting fields monthly and total, error messages for both fields. </li><br/></ul><br/><p><strong>Error messaged for Budget fields: </strong></p><br/><ul><br/><li>""Budget must be greater than or equal to Daily Budget.""</li><br/><li>""Budget must be greater than or equal to Monthly Budget.""</li><br/><li>""Monthly Budget must be greater than or equal to Daily Budget.""</li><br/><li>""Daily Budget must be no greater than or equal to Budget.""</li><br/><li>""Daily Budget must be no greater than or equal to Monthly Budget.""</li><br/></ul><br/><p><strong>Error messaged for Impression Cap fields: </strong></p><br/><ul><br/><li>""Impression Cap must be greater than or equal to Daily Impression Cap.""</li><br/><li>""Impression Cap must be greater than or equal to Monthly Impression Cap.""</li><br/><li>""Monthly Impression Cap must be greater than or equal to Daily Impression Cap.""</li><br/><li>""Daily Impression Cap must be no greater than or equal to Impression Cap.""</li><br/><li>""Daily Impression Cap must be no greater than or equal to Monthly Impression Cap.""</li><br/></ul>","Improvement","High","1131","","","04/27/2016 05:09:57 PM","04/27/2016 05:09:57 PM","04/27/2016","04/27/2016 05:09:57 PM","04/27/2016 05:09:57 PM"
"281776599","","WebUI: Change a title of parameter ""Run Date"" to ""Run Dates"" in the headers on profile pages ","294550141","","archive:out of scope","webui","","","","0","False","","5","","","<p>steps to reproduce:</p><br/><p>1. Open Campaign or Ad group profile page</p><br/><p>2. Look at header</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/42/campaigns"">http://malt-web.dev.multiview.com/advertiser/42/campaigns</a></p><br/><p><a href=""http://malt-web.dev.multiview.com/adgroup/345/overview"">http://malt-web.dev.multiview.com/adgroup/345/overview</a></p><br/><p>Current result: There is a parameter ""Run Date""</p><br/><p>Expected result: There is parameter ""Run Dates"" </p>","Improvement","Low","378","","","02/05/2016 03:19:41 PM","02/05/2016 03:20:21 PM","02/05/2016","02/05/2016 03:19:41 PM","02/05/2016 03:19:41 PM"
"364310757","[email protected];[email protected]","Ad Group Create Wizard - Budget: Ad Group Creation Daily Budget Autocomplete Error","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=456&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","dublicate","6","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=456&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>456</p>","UAT Feedback","Critical","1943","","","07/22/2016 03:49:25 PM","07/22/2016 03:49:26 PM","07/22/2016","07/22/2016 10:28:28 AM","07/22/2016 03:49:25 PM"
"282158748","","WebUI: Remove delimiter of order from ID of all entities","294550141","","archive:out of scope","webui","","","","0","False","","7","","","<p>If ID more than 999 than there ia a delimiter of order "","". </p><br/><p><a href=""http://screencast.com/t/kJrQwI9HR08"">http://screencast.com/t/kJrQwI9HR08</a></p><br/><p>Expected result: The ID number consists only form digits without any delimiter of order</p>","Improvement","Low","379","","","02/05/2016 03:20:53 PM","02/05/2016 03:21:15 PM","02/05/2016","02/05/2016 03:20:53 PM","02/05/2016 03:20:53 PM"
"287643195","","Rename title of field Name for all forms","294550141","","archive:out of scope","webui","","","","0","False","","8","","","<p>For each create/edit entity forms set [Entity]Name field title to Name</p>","Improvement","Normal","436","","","02/05/2016 03:29:07 PM","02/05/2016 03:29:43 PM","02/05/2016","02/05/2016 03:29:07 PM","02/05/2016 03:29:07 PM"
"298234079","","WebUI:Make the search bar also takes into consideration what OS Family filter is in place.","294550141","","archive:out of scope","webui","","","","0","False","","9","","","<p>Steps to reproduce:</p><br/><p>1. Open Edit OS Targeting of Ad Group popup</p><br/><p>2. Click on "">"" for iOS</p><br/><p>3. Look at the search field</p><br/><p>Current result. There is usual place holder</p><br/><p>Expected result: There is ""iOS"" in the search field according to US</p><br/><p>The same suriation is for ""Windows""</p>","Defect","Normal","627","279516998","279516998","02/10/2016 01:16:16 PM","02/10/2016 01:18:56 PM","02/10/2016","01/12/2016 02:00:20 PM","02/10/2016 01:16:16 PM"
"298768133","","WebUI: Allow user to choose different range for different days.","294550141","","archive:out of scope","webui","","","","0","False","","10","","","<p>Steps to reproduce:</p><br/><p>1. Open edit dayparting of ad group popup</p><br/><p>2. Choose for monday 9am-6pm and for friday 3pm-5pm</p><br/><p>Current result: User cannot choose different range for different days.</p><br/><p>Expected result: User can choose different range for different days.</p>","Defect","High","633","279516998","279516998","02/10/2016 06:39:04 PM","02/10/2016 06:39:04 PM","02/10/2016","01/12/2016 02:01:18 PM","02/10/2016 06:39:04 PM"
"295146828","","Logout button - ReturnURL","294550141","","archive:out of scope","webui","","","","1","False","Ralph gave the answer","11","","","<p>Logout button should link to logout page that when logging back in, sends user back to MALT, not the sales control center</p>","UAT Feedback","Low","535","","","02/18/2016 08:48:37 AM","02/18/2016 08:48:37 AM","02/18/2016","02/18/2016 08:48:37 AM","02/18/2016 08:48:37 AM"
"298104292","[email protected]","WebUi: Remove unuseable models AdGroupToEntity","294550141","","archive:out of scope","webui","","","","1","False","","12","","","<p>if adgroup model can use relations using viaTable instead of just via and models such as AdGroupToEntity use no more, then remove all this models</p>","Improvement","Normal","622","","","03/09/2016 09:07:58 PM","03/09/2016 09:07:58 PM","03/09/2016","02/24/2016 04:46:49 PM","02/25/2016 09:54:05 AM"
"301572570","","WebUI: Make clicking on button ""no"" on sub popup to return previous value on the tab","294550141","","archive:out of scope","webui","","","","0","False","","13","","","<p>Steps to reproduce:</p><br/><p>1. Open CRCs Tab on ""Location targeting"" popup</p><br/><p>2. Make some changes</p><br/><p>3. Go to another tab</p><br/><p>4. Click on button ""no"" on sub popup</p><br/><p>5. Return on previous tab</p><br/><p>Current result: There is value with changes which have been made but saved</p><br/><p>Expected result: There is previous value for tab </p><br/><p>http://screencast.com/t/mbsC6cl5</p>","Defect","Normal","662","","","02/18/2016 02:59:17 PM","02/18/2016 03:00:47 PM","02/18/2016","01/18/2016 01:11:39 PM","02/18/2016 02:59:17 PM"
"302953941","","Add asterisks to required fields","294550141","","archive:out of scope","webui,bug","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=20&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","14","","","","UAT Feedback","High","701","","","02/24/2016 10:10:34 AM","03/09/2016 02:56:35 PM","02/24/2016","02/24/2016 10:10:34 AM","02/24/2016 10:10:34 AM"
"302955386","","Advertiser list page: Table - Change Columns Names","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=80&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","15","","","","UAT Feedback","High","705","","","02/24/2016 10:19:32 AM","03/09/2016 03:14:39 PM","02/24/2016","02/24/2016 10:19:32 AM","02/24/2016 10:19:32 AM"
"291023445","[email protected]","General: If a parent record’s “state” is inactive, the child records of that parent should be read-only","294550141","","archive:out of scope","webui,change-us","","","","3","False","Ralph gave the answer","16","","","<ul><br/><li><br/><p>If a parent record’s “state” is inactive, the child records of that parent should be read-only. Example, if an advertiser is “Inactive”, all of it’s campaigns and ad groups should be read only for all users until the advertiser has been activated again. Everything on parent record that is inactive should also be read-only except for the ability to change the state.</p><br/></li><br/></ul>","UAT Feedback","Normal","495","","","02/25/2016 12:25:23 PM","03/09/2016 03:25:09 PM","02/25/2016","02/08/2016 12:26:59 PM","02/25/2016 12:25:23 PM"
"313396619","","Use ""SaveAs"" js plugin in order to restrict file extension as it is done for geo fencing.","294550141","","archive:out of scope","webui","","","","2","False","","17","","","","Subtask","Normal","937","","","03/21/2016 10:45:12 AM","03/21/2016 10:45:12 AM","03/21/2016","03/16/2016 09:37:40 AM","03/21/2016 10:45:12 AM"
"291016527","","Advertiser Profile Page: change to the Sub-Pages","294550141","","archive:out of scope","webui","","","","3","False","There is a separated card for Delete permission ","18","","","<p>Advertiser Profile page</p><br/><ul><br/><li><br/><p>The Sub-Pages:</p><br/><ul><br/><li><br/><p>Overview, 3<sup>rd</sup> Party Tags, Invoices, and Reporting should all lead to subpages with “This Page is Currently Undefined” in the middle of the main workspace. Must have advertiser level read permissions to access like the rest of the subpages.</p><br/></li><br/><li><br/><p>Settings Subpage:</p><br/><ul><br/><li><br/><p>Edit Form</p><br/><ul><br/><li><br/><p>Change “Service Tier” to be “Service Level”.</p><br/></li><br/><li><br/><p>Change “CRM,ID#” to be “Account #”.</p><br/></li><br/><li><br/><p>Change Owner Type value “Person” to be “Individuals”.</p><br/></li><br/><li><br/><p>For the Owner fields, only show “Team” drop down when Owner Type= “Team”. Only show “Account Manager”, “Data Manager”, and “Creative Manager” when Owner Type= “Individuals”.</p><br/></li><br/></ul><br/></li><br/><li><br/><p>The ability to change the state of any record should only be allowed to those users with permissions to delete that entity. In this case, the ability to change a state only comes with those with the permissions level of advertiser_delete. - it is separated card , don't implement this in the card</p><br/></li><br/><li><br/><p>Center Edit button and add a little bit more padding under rows of data.</p><br/></li><br/><li><br/><p>Change “Service Tier” to be “Service Level”</p><br/></li><br/><li><br/><p>Change “CRM,ID#” to be “Account #”</p><br/></li><br/><li><br/><p>Rearrange rows of data</p><br/><ul><br/><li><br/><p>If Owned by team:</p><br/><ul><br/><li><br/><p>Left Row:</p><br/><ul><br/><li><br/><p>Name</p><br/></li><br/><li><br/><p>Account #</p><br/></li><br/><li><br/><p>Service Level</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Right Row:</p><br/><ul><br/><li><br/><p>Owner</p><br/></li><br/><li><br/><p>Start Date</p><br/></li><br/><li><br/><p>End Date</p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/><li><br/><p>If Owned by Individuals:</p><br/><ul><br/><li><br/><p>Left Row:</p><br/><ul><br/><li><br/><p>Name</p><br/></li><br/><li><br/><p>Account #</p><br/></li><br/><li><br/><p>Service Level</p><br/></li><br/><li><br/><p>Data Manager</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Right Row:</p><br/><ul><br/><li><br/><p>Owner</p><br/></li><br/><li><br/><p>Start Date</p><br/></li><br/><li><br/><p>End Date</p><br/></li><br/><li><br/><p>Creative Manager</p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/><li><br/><p>Campaigns Subpage</p><br/><ul><br/><li><br/><p>Move state filter and search filter over next to “New” button</p><br/></li><br/><li><br/><p>Make search filter 1.5 times wider</p><br/></li><br/><li><br/><p><span style=""background-color: #888888;""><span style=""background-color: #ffff00;"">Remove State field and highlight table cells to signify inactive campaigns.◄ This should be deleted from the requirement</span></span></p><br/></li><br/><li><br/><p>Fields in table should be in the format of [Field Title (title alignment, field alignment):</p><br/><ul><br/><li><br/><p>ID (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Name (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Vendor (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Ad Groups (Center Align, Center Align)</p><br/></li><br/><li><br/><p>Imps (Served) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Clicks (Right Align, Right Align)</p><br/></li><br/><li><br/><p>CTR (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Spend (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Imps (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Budget (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Run Dates (Right Align, Right Align)</p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/><ul><br/><ul><br/><ul><br/><ul><br/><ul><br/><li><br/><p>Change format of run dates to “MM/DD/YY – MM/DD/YY”</p><br/></li><br/></ul><br/></ul><br/></ul><br/></ul><br/></ul>","UAT Feedback","High","507","","","02/25/2016 12:35:17 PM","03/09/2016 03:15:07 PM","02/25/2016","02/08/2016 12:27:45 PM","02/25/2016 12:35:17 PM"
"291017985","","1 General Feedback URL/PageWidth/ Extend to bottem of page ","294550141","","archive:out of scope","webui,bug","","","","3","True","Watin for an asnwer regarding Return URL after logout.","19","","","<p><strong><span style=""text-decoration: underline;"" data-mce-mark=""1""><span style=""color: #000000; font-family: Calibri; font-size: medium;"" data-mce-mark=""1"">General</span></span></strong></p><br/><ul><br/><li><br/><p>The URLs should be malt.dev.multiview.com (DEV), malt.uat.multiview.com (UAT), malt.multiview.com (PROD)</p><br/></li><br/><li><br/><p>Use the full width and height of the page on all devices</p><br/></li><br/><li><br/><p>When present, the left navigation should extend to the bottom every page</p><br/></li><br/><li><br/><p>The space inside the Main Workspace (except for the workspace header) should be scrollable without changing the surrounding elements. i.e., the main nav, left nav, and where applicable, the entity quick view should all stay in place when scrolling on workspace. </p><br/></li><br/></ul>","UAT Feedback","Normal","484","","","02/25/2016 12:59:36 PM","06/23/2016 04:55:08 AM","02/25/2016","02/25/2016 12:59:36 PM","02/25/2016 12:59:36 PM"
"306983086","","Advertiser Profile Page: Settings - Rearrange Rows of Data","294550141","","archive:out of scope","webui,advertiser","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=55&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","20","","","<p>Issue 55 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=55&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Settings - Rearrange Rows of Data</a></p>","UAT Feedback","Normal","797","","","06/14/2016 02:38:51 PM","06/14/2016 03:30:33 PM","06/14/2016","06/14/2016 02:38:51 PM","06/14/2016 02:38:51 PM"
"304967038","","Left Navigation - Extend panel to bottom ","294550141","","archive:out of scope","webui,bug","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=40&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","21","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=40&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Left Navigation - Extend panel to bottom</a> Issue 40</p>","UAT Feedback","Normal","754","","","02/25/2016 01:01:46 PM","03/09/2016 03:09:42 PM","02/25/2016","02/25/2016 01:01:46 PM","02/25/2016 01:01:46 PM"
"291023456","","Advertiser Profile Page: Changes to Ad Groups Subpage","294550141","","archive:out of scope","webui,change","","","","2","False","This card may be implemented. About format of Run Dates we have card 502.","22","","","<ul><br/><ul><br/><li><br/><p>Ad Groups Subpage</p><br/><ul><br/><li><br/><p>Change status filter to be symbol of status instead of text and include to the left of the ID# in the same column as ID. Hovering over symbol should bring up text of symbol. Symbols are:</p><br/><ul><br/><li><br/><p>Draft:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAZCAYAAADAHFVeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJ8SURBVEhLvZbbbhJRFIb/OTEDDKUH01qT2sZqQuy1d0ZNvDJemviSvoAm3vkC1RsTY2+MRpoUFCiHDnPwXzNs68CAG4z8BOa0Zn/rsNfeGAmFNcmcHNeitcIWpnEYxlglxyXTgM3vtAphrVGE04shvg9ChHGC2dcyJelH0pNZZOfApmvhZNvDcb2U3leagbUJevOlhx9BRO9oMAclGBlYnkZTViGHtHh8uF/FfUKVcjUT6ofWMAW5lgHLMCDZKPomhonGjSqe3vTg8Vpo6pmkMeat960RuhxLKQeL6dH5MEwjWiSxS+jIru/iqO4gn6xMDoEdgjqBYDPlI2NoUS6peQlEaigpiHi8orFcp8MVvJeayqATzcQgGSmSDO44Dh4f1PHy3iZeHPrYLxmsz8SgQNNj/SVhmcQ7y7bx6MBHwzfQ7AboRQZ2XNZGweZ5+Ye0YOL9TtnBHc/E2Xkfb79d4vXXS3wexHBk2okWRKikBROpyS09aFkmX0zAU5gaECVtmEqTXzIRRBKRiZqdTXFdacHEqD8OWSegsVfFk1s+nrF+R2XxgL3IX50AtWAWe6Y3CvCuOUA7YjNvu3DjEJ9+BmgOIq4gRGpMkNxyJT3z6qyD3ph1KXg7oqltmqjSxT57bEx7g3ZcbAoV0Ob5YQ23a1nba0WmJA7EBHQ4PaVWsrLL8qSrpWAiCVgiUYwlWHmYyZE2ONt+N+o/SJa9MhfZinONmIIBJ1sebEKlHqsypbZjtsdd7mdb3NuUCjfPj+0rnHKrkVVbPNRNlQwkthX23/GGiwe7FXg8V5r7t6DLreFiFKZeLiNZaWpM3V7Fnty51lzY/9DSs3F1Ab8A5G3+baaUq4MAAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Active:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAYAAABvCO8sAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALBSURBVEhLxVVdaxNBFD272WRDqk2raYRok7YaS5EQIgXzJgimij74UESw+GIF9Qf4pKiIIH30RV/8HUqVIopVUfCDQgkBPxKq2BitNYnd7Cbr3M0Gs7tpMlCNB4b9uHfOmXvnzh1BZ0AXIZrPrqHrgm1TqtZU1M1C/UdH6BAEAW7RbX470VIwX85jNnMfmUIGalVlJHyJ0PUa3C43ooEoUrsOYsA3YFr+wCG4XFrGree3kf2Rq6+UguMtK9OXMhP2D+LcvrMI9gTrNhOWpZM2RZZdycHn9hmrJVHjyTNMX5pLHMRlT6BFcK26hnQhbUzaKIiDuIizGY4IFa1ibLwTArOrKKslFCtFY5Q1Zd1sEwdxtY2QIKxTkTUm5vLsxNGxkzgzPo3Te09hIhRjRVBlNtPJhlZcfOXHoLFC2L5lHBPDSYz0RRDfsR/HE1NIbvajomumV2dwC0qijPz3edx8fAMXZq/gztsnbKP8iPhDLMKa6dUZ3II1ljo6Z/GhY5g5dB1TozH2twrVtkedwCVIxaILAUwmzuNwJIyF9w/wdGmRWUToNY0thl+UU1CDLIfYYe6HUsziWfYVCtjELAJ8Hi+8osSqlU+US1AUPCj9+oA3n95B7k/g4pEZnAgPQ1GB5NgkYv4gO298hWNpbWW1jKtz17CqrLIikcy/BIGlTYHkDmBPII5tYhULK2n0yCMY8kl4nX+BL0oFUlPP1Viqe+VeXD5wyeg8DXAWjW5EqVa+4eXSHO7mHuLjz89Y/DqPe9lHyNvE2sHh1W4vXCxq2SVBYm1LdnngMd4ltpjWYq24LJ7UjmTJ42hHVlD/aHSQ5ncriIO47G3SIuh1eTG6dbdxB24UxEFcxNkMR4SpaArhvkGjgGgS3W3Gk2eYvjSXOIjLHuH/v/GbQWK8B7oB2tN292lbwX8Bvlz9RXRZEPgNEXNTs2nIl58AAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Paused:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAcCAYAAACdz7SqAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJnSURBVEhL7VbLahRBFD1VXTMxM4kRFR00cS2J6MKViAt/Iu5EEBd+gh/i2o2IW5eCoKg7xUjEBwqCoCsHzUySefR0VXuqqqOTsWumOyRx42luF32r6p6+j7rdIiWwz5DZuK/4J6STw2v6vGmKcI+FIQ/wlr8nTKrXodvPkHbewZguVxYnFYggphYQHbzM8WSm/YN8UtND0rwH03nDFRUqbBZK1ls6gIgOQx2/BlGdz5QeuTk1G69guu85O+1JRURR5YR7U/0Deu0xX8Bklj3ySXufs4Ul8zgKUUXa/0KDTM8QAtU7oOzO8U2RUAp4GvaQL5L2KLEfTcfl3+mD+NtWgDQP1nCF1bgEWV3geA5y9gJkbZF660nxyJQgTSh1RHNXoI7doFyFOrLM8TrU3EVyFk9JCVIPd8Ckgfl5F/HX2zBxlx5fglSznNyeuxBKkwohmc4V9o6XQPwJemOVVg6xUBsktZ1rMkqTOqQ21HbrVpFY962uGHZEKlSDwsah5hFNL7GOmmzR3+xEtmI8dpBTFkz1NCqNW6icuMnGMwPTesrI8hgx9EVQmtTltL+KpPWc7fI19Pc7SNovOGF7dDEESEOlzxwKhjVdh2k/hG49gN58m3k4pqGMIJdUyLq9+4ffsEsHbEAf2EqbfKx6MjlFfZhQyBqjsz3XuaSyftYbc1W6BX5psEkP7/O42HBaQ7nbM/DMmpgd6wyXMTpDCH7E9dojfsSfcCP761CIfPMW7grDpkGRaxHq6DJJa5neY+zviul+dH8OqSUuWJkupFDszacgZ8478lFM/kfaAxR9/V3Ff9I9BPALRDHXxtW/TNsAAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Ended:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAYCAYAAAALQIb7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJlSURBVEhLvZbLaxNRGMXPvTOTZ5MKxmpLcFV0IaXqxuDCiBDdFHShKxetWPD/EdwIbiz4AHcuxK12oRt148IWFISCtjWamprX5F7PHSfKTBK9rZoDIcw3k/ub7x2hKYxIMvweiYZ6pms1dD98hPY7vBI/jBYSQkDsGYczNRVafmkgrPPyFVpPnkKtb0B3fVpsYTyKMJnLwZudRfLMaYh0Orw3AOavrOLb3XvQrTZEwgt+vGP5PlSng1T5FFJnK4DjBOZozshtP3tOUAsimdgdyMh1IT0viJCJTk9RWLcLtbn5803+So4LVa9DbW2FhhjMRNQEdZf+RGUOiZVDf+n/jqRVEGLdbEI3+GFediL7PlNd1pqAV64gu7iI7NV5JGemgTaBffU8WHYw45GSSJTnkD53ksgmkJtE6uIFeNMT7EXTHn+WHYyHicIkvNJxiOp7NB89Rmv5BbSTh3ekCCGVlXf2YXSZTJPPfBHphWvIzJV4QQI5tiVlD+OjwuXxtTU07t/B9u0lbN+8hcbyCm/xhgXPDsa+09VP8N+tQ+wtwj1YoEcKIssZmMvwAbsKsYNJB6JVQ/vhA7RXN5CsnGdFXkHm8iUkZjhwOQxseJHZaPqmfv0G9JfPwcjpk9kAbgZy/wGIcQ+a00bVvhI2mGT6MbswD/fwoeA64lmwHhj7oS/pcjCrJtTaW/iv33DuVbkiggrplzkkNlujYWRuZIH5MGEZJobUQAUHbeC9HFIZXE1ybAwynw8NcRjfJFE6wYmfDFZMfLZZK1wx3rGjkBP7QmMsZz2NbHn2NLK/Bf9Ldn32TwR8B63m/sPKobBkAAAAAElFTkSuQmCC"" alt="""" /></p><br/></li><br/></ul><br/></li><br/><li><br/><p>Fields in table should be in the format of [Field Title (title alignment, field alignment):</p><br/><ul><br/><li><br/><p>ID (Left Align, Left Align) w/ status symbol</p><br/></li><br/><li><br/><p>Name (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Vendor (Left Align, Left Align)</p><br/></li><br/><li><br/><p>MV Classification (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Vendor Classification (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Imps (Served) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Clicks (Right Align, Right Align)</p><br/></li><br/><li><br/><p>CTR (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Spend (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Imps (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Budget (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Run Dates (Right Align, Right Align)</p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></ul><br/><ul><br/><ul><br/><ul><br/><ul><br/><ul><br/><li><br/><p>Change format of run dates to “MM/DD/YY – MM/DD/YY”</p><br/></li><br/></ul><br/><li><br/><p>Campaign (Right Align, Right Align)</p><br/></li><br/></ul><br/></ul><br/></ul><br/></ul><br/><ul><br/><ul><br/><ul><br/><li><br/><p>DMP</p><br/><ul><br/><li><br/><p>Come up with better icon for Domain Lists. It should be Bigger and take up half the width of the workspace. See Mockups in requirements documentation.</p><br/></li><br/></ul><br/></li><br/></ul><br/></ul><br/></ul>","UAT Feedback","High","508","","","02/25/2016 01:29:10 PM","03/09/2016 03:10:08 PM","02/25/2016","02/25/2016 01:29:10 PM","02/25/2016 01:29:10 PM"
"291016534","[email protected]","Campaign Profile Page: Corrections to Breadcrumbs, Left Nav., Quick view and Sub pages","294550141","","archive:out of scope","webui,change","","","","3","False","This is the document with all necessary information in the comments","23","","","<p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-family: Calibri; font-size: medium;"">Campaign Profile Page</span></span></strong></p><br/><ul><br/><li><br/><p>Breadcrumbs</p><br/><ul><br/><li><br/><p>Advertiser Breadcrumb reads “[Icon] [Advertiser Name] (ID: [ID #])”. It should be changed to read “[Icon] [Advertiser Name] ([Account #])”</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Left Navigation</p><br/><ul><br/><li><br/><p>“Ad Groups” should read as “Ad Groups ([# of ad groups in campaign])”</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Quick View</p><br/><ul><br/><li><br/><p>Change “Budget Total” to read “Budget Cap (Lifetime)” <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/></li><br/></ul><br/></li><br/></ul><br/><ul><br/><ul><br/><li><br/><p>Change value of budget cap and budget spent to currency format ($X.XX)</p><br/></li><br/></ul><br/></ul><br/><ul><br/><ul><br/><li><br/><p>Change “Impression Cap” to read “Impression Cap (Lifetime)” <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/></li><br/><li><br/><p>Remove “State” field</p><br/></li><br/></ul><br/></ul><br/><ul><br/><ul><br/><li><br/><p>Change “Run Date” to read as “Run Dates”</p><br/></li><br/><li><br/><p>Change CTR value to include 4 places after the decimal (X.XXXX%)</p><br/></li><br/></ul><br/></ul><br/><ul><br/><ul><br/><li><br/><p>Anything over two lines should have a button that will expand the Quick View vertically (making height of left nav and workspace smaller) to make it show more. Default should be Advertiser name and two lines of reporting metrics though. Opening up the quick view in accordion manner will shrink the height of the left navigation and main workspace.</p><br/></li><br/><li><br/><p><span style=""background-color: #888888;""><span style=""background-color: #ffff00;"">Order of fields from top to bottom and left to right are: ◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span> </span></p><br/><ul><br/><li><br/><p><span style=""background-color: #ffff00;"">Vendor</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Run Dates</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Clicks</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">CTR</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Impression Cap (Lifetime)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Impressions Served</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Budget Cap (Lifetime)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Budget Spent</span></p><br/></li><br/></ul><br/></li><br/></ul><br/><li><br/><p>The Sub-Pages</p><br/><ul><br/><li><br/><p>Settings Sub-page</p><br/><ul><br/><li><br/><p>Center Edit button and add a little bit more padding under rows of data.</p><br/></li><br/><li><br/><p>The ability to change the state of any record should only be allowed to those users with permissions to delete that entity. In this case, the ability to change a state only comes with those with the permissions level of campaign_delete. - it is separated card , don't implement this in the card</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Ad Groups Sub-page</p><br/><ul><br/><li><br/><p>Move state filter and search filter over next to “New” button</p><br/></li><br/><li><br/><p>Change status filter to be symbol of status instead of text and include to the left of the ID# in the same column as ID. Hovering over symbol should bring up text of symbol. Symbols are:</p><br/><ul><br/><li><br/><p>Draft:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAZCAYAAADAHFVeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJ8SURBVEhLvZbbbhJRFIb/OTEDDKUH01qT2sZqQuy1d0ZNvDJemviSvoAm3vkC1RsTY2+MRpoUFCiHDnPwXzNs68CAG4z8BOa0Zn/rsNfeGAmFNcmcHNeitcIWpnEYxlglxyXTgM3vtAphrVGE04shvg9ChHGC2dcyJelH0pNZZOfApmvhZNvDcb2U3leagbUJevOlhx9BRO9oMAclGBlYnkZTViGHtHh8uF/FfUKVcjUT6ofWMAW5lgHLMCDZKPomhonGjSqe3vTg8Vpo6pmkMeat960RuhxLKQeL6dH5MEwjWiSxS+jIru/iqO4gn6xMDoEdgjqBYDPlI2NoUS6peQlEaigpiHi8orFcp8MVvJeayqATzcQgGSmSDO44Dh4f1PHy3iZeHPrYLxmsz8SgQNNj/SVhmcQ7y7bx6MBHwzfQ7AboRQZ2XNZGweZ5+Ye0YOL9TtnBHc/E2Xkfb79d4vXXS3wexHBk2okWRKikBROpyS09aFkmX0zAU5gaECVtmEqTXzIRRBKRiZqdTXFdacHEqD8OWSegsVfFk1s+nrF+R2XxgL3IX50AtWAWe6Y3CvCuOUA7YjNvu3DjEJ9+BmgOIq4gRGpMkNxyJT3z6qyD3ph1KXg7oqltmqjSxT57bEx7g3ZcbAoV0Ob5YQ23a1nba0WmJA7EBHQ4PaVWsrLL8qSrpWAiCVgiUYwlWHmYyZE2ONt+N+o/SJa9MhfZinONmIIBJ1sebEKlHqsypbZjtsdd7mdb3NuUCjfPj+0rnHKrkVVbPNRNlQwkthX23/GGiwe7FXg8V5r7t6DLreFiFKZeLiNZaWpM3V7Fnty51lzY/9DSs3F1Ab8A5G3+baaUq4MAAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Active:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAYAAABvCO8sAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALBSURBVEhLxVVdaxNBFD272WRDqk2raYRok7YaS5EQIgXzJgimij74UESw+GIF9Qf4pKiIIH30RV/8HUqVIopVUfCDQgkBPxKq2BitNYnd7Cbr3M0Gs7tpMlCNB4b9uHfOmXvnzh1BZ0AXIZrPrqHrgm1TqtZU1M1C/UdH6BAEAW7RbX470VIwX85jNnMfmUIGalVlJHyJ0PUa3C43ooEoUrsOYsA3YFr+wCG4XFrGree3kf2Rq6+UguMtK9OXMhP2D+LcvrMI9gTrNhOWpZM2RZZdycHn9hmrJVHjyTNMX5pLHMRlT6BFcK26hnQhbUzaKIiDuIizGY4IFa1ibLwTArOrKKslFCtFY5Q1Zd1sEwdxtY2QIKxTkTUm5vLsxNGxkzgzPo3Te09hIhRjRVBlNtPJhlZcfOXHoLFC2L5lHBPDSYz0RRDfsR/HE1NIbvajomumV2dwC0qijPz3edx8fAMXZq/gztsnbKP8iPhDLMKa6dUZ3II1ljo6Z/GhY5g5dB1TozH2twrVtkedwCVIxaILAUwmzuNwJIyF9w/wdGmRWUToNY0thl+UU1CDLIfYYe6HUsziWfYVCtjELAJ8Hi+8osSqlU+US1AUPCj9+oA3n95B7k/g4pEZnAgPQ1GB5NgkYv4gO298hWNpbWW1jKtz17CqrLIikcy/BIGlTYHkDmBPII5tYhULK2n0yCMY8kl4nX+BL0oFUlPP1Viqe+VeXD5wyeg8DXAWjW5EqVa+4eXSHO7mHuLjz89Y/DqPe9lHyNvE2sHh1W4vXCxq2SVBYm1LdnngMd4ltpjWYq24LJ7UjmTJ42hHVlD/aHSQ5ncriIO47G3SIuh1eTG6dbdxB24UxEFcxNkMR4SpaArhvkGjgGgS3W3Gk2eYvjSXOIjLHuH/v/GbQWK8B7oB2tN292lbwX8Bvlz9RXRZEPgNEXNTs2nIl58AAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Paused:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAcCAYAAACdz7SqAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJnSURBVEhL7VbLahRBFD1VXTMxM4kRFR00cS2J6MKViAt/Iu5EEBd+gh/i2o2IW5eCoKg7xUjEBwqCoCsHzUySefR0VXuqqqOTsWumOyRx42luF32r6p6+j7rdIiWwz5DZuK/4J6STw2v6vGmKcI+FIQ/wlr8nTKrXodvPkHbewZguVxYnFYggphYQHbzM8WSm/YN8UtND0rwH03nDFRUqbBZK1ls6gIgOQx2/BlGdz5QeuTk1G69guu85O+1JRURR5YR7U/0Deu0xX8Bklj3ySXufs4Ul8zgKUUXa/0KDTM8QAtU7oOzO8U2RUAp4GvaQL5L2KLEfTcfl3+mD+NtWgDQP1nCF1bgEWV3geA5y9gJkbZF660nxyJQgTSh1RHNXoI7doFyFOrLM8TrU3EVyFk9JCVIPd8Ckgfl5F/HX2zBxlx5fglSznNyeuxBKkwohmc4V9o6XQPwJemOVVg6xUBsktZ1rMkqTOqQ21HbrVpFY962uGHZEKlSDwsah5hFNL7GOmmzR3+xEtmI8dpBTFkz1NCqNW6icuMnGMwPTesrI8hgx9EVQmtTltL+KpPWc7fI19Pc7SNovOGF7dDEESEOlzxwKhjVdh2k/hG49gN58m3k4pqGMIJdUyLq9+4ffsEsHbEAf2EqbfKx6MjlFfZhQyBqjsz3XuaSyftYbc1W6BX5psEkP7/O42HBaQ7nbM/DMmpgd6wyXMTpDCH7E9dojfsSfcCP761CIfPMW7grDpkGRaxHq6DJJa5neY+zviul+dH8OqSUuWJkupFDszacgZ8478lFM/kfaAxR9/V3Ff9I9BPALRDHXxtW/TNsAAAAASUVORK5CYII="" alt="""" /></p><br/></li><br/><li><br/><p>Ended:<img src=""data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAYCAYAAAALQIb7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJlSURBVEhLvZbLaxNRGMXPvTOTZ5MKxmpLcFV0IaXqxuDCiBDdFHShKxetWPD/EdwIbiz4AHcuxK12oRt148IWFISCtjWamprX5F7PHSfKTBK9rZoDIcw3k/ub7x2hKYxIMvweiYZ6pms1dD98hPY7vBI/jBYSQkDsGYczNRVafmkgrPPyFVpPnkKtb0B3fVpsYTyKMJnLwZudRfLMaYh0Orw3AOavrOLb3XvQrTZEwgt+vGP5PlSng1T5FFJnK4DjBOZozshtP3tOUAsimdgdyMh1IT0viJCJTk9RWLcLtbn5803+So4LVa9DbW2FhhjMRNQEdZf+RGUOiZVDf+n/jqRVEGLdbEI3+GFediL7PlNd1pqAV64gu7iI7NV5JGemgTaBffU8WHYw45GSSJTnkD53ksgmkJtE6uIFeNMT7EXTHn+WHYyHicIkvNJxiOp7NB89Rmv5BbSTh3ekCCGVlXf2YXSZTJPPfBHphWvIzJV4QQI5tiVlD+OjwuXxtTU07t/B9u0lbN+8hcbyCm/xhgXPDsa+09VP8N+tQ+wtwj1YoEcKIssZmMvwAbsKsYNJB6JVQ/vhA7RXN5CsnGdFXkHm8iUkZjhwOQxseJHZaPqmfv0G9JfPwcjpk9kAbgZy/wGIcQ+a00bVvhI2mGT6MbswD/fwoeA64lmwHhj7oS/pcjCrJtTaW/iv33DuVbkiggrplzkkNlujYWRuZIH5MGEZJobUQAUHbeC9HFIZXE1ybAwynw8NcRjfJFE6wYmfDFZMfLZZK1wx3rGjkBP7QmMsZz2NbHn2NLK/Bf9Ldn32TwR8B63m/sPKobBkAAAAAElFTkSuQmCC"" alt="""" /></p><br/></li><br/></ul><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Fields in table should be in the format of [Field Title (title alignment, field alignment): <span style=""background-color: #ff9900;"">◄ Disregard this section it has been changed based on the Quick View spreadsheet examplesee notes in light blue they supersede the yellow notes. see below yellow</span></span></p><br/><ul><br/><li><br/><p><span style=""background-color: #ffff00;"">ID (Left Align, Left Align) w/ status symbol</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Name (Left Align, Left Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Vendor (Left Align, Left Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">MV Classification (Left Align, Left Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Vendor Classification (Left Align, Left Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Imps (Served) (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Clicks (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">CTR (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Spend (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Imps (Lifetime) (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Budget (Lifetime) (Right Align, Right Align)</span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Run Dates (Right Align, Right Align)</span></p><br/><ul><br/><li><br/><p><span style=""background-color: #ffff00;"">Change format of run dates to “MM/DD/YY – MM/DD/YY”</span></p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/><ul><br/><li><span style=""background-color: #ccffff;"">The Fields in the table should be as follows:</span></li><br/><ul><br/><li><span style=""background-color: #ccffff;"">ID w/ status symbol (Left Align)</span></li><br/><li><span style=""background-color: #ccffff;"">Name (Left Align)</span></li><br/><li><span style=""background-color: #ccffff;"">DSP (Left Align) - Was “Vendor”</span></li><br/><li><span style=""background-color: #ccffff;"">MV Classification (Left Align)</span></li><br/><li><span style=""background-color: #ccffff;"">DSP Classification (Left Align)- Was ""Vendor Classification""</span></li><br/><li><span style=""background-color: #ccffff;"">Impressions (Right Align) - Was “Imps (Served)”</span></li><br/><li><span style=""background-color: #ccffff;"">Clicks (Right Align)</span></li><br/><li><span style=""background-color: #ccffff;"">CTR (Right Align)</span></li><br/><li><span style=""background-color: #ccffff;"">Spend (Right Align)</span></li><br/><li><span style=""background-color: #ccffff;"">Imps Cap (Right Align)- Was “Imps (Lifetime)”</span></li><br/><li><span style=""background-color: #ccffff;"">Budget (Right Align)- Was “Budget (Lifetime)”</span></li><br/><li><span style=""background-color: #ccffff;"">Run Dates (Right Align)</span></li><br/></ul><br/></ul>","UAT Feedback","High","510","","","02/25/2016 02:25:09 PM","03/09/2016 03:11:00 PM","02/25/2016","02/25/2016 02:25:09 PM","02/25/2016 02:25:09 PM"
"291029692","","Advertiser Create Form: changes to fields","294550141","","archive:out of scope","webui,change","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=31&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","24","","","<p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-family: Calibri; font-size: medium;"">Advertiser Create Form</span></span></strong></p><br/><ul><br/><li><br/><p>Change “Service Tier” to be “Service Level”.</p><br/></li><br/><li><br/><p>Change “Name” to be “Advertiser Name”.</p><br/></li><br/><li><br/><p>Change “CRM,ID#” to be “Account #”.</p><br/></li><br/><li><br/><p>Change Owner Type value “Person” to be “Individuals”.</p><br/></li><br/><li><br/><p>For the Owner fields, only show “Team” drop down when Owner Type= “Team”. Only show “Account Manager”, “Data Manager”, and “Creative Manager” when Owner Type= “Individuals”.</p><br/></li><br/></ul>","UAT Feedback","High","505","","","02/25/2016 02:45:02 PM","03/09/2016 03:11:18 PM","02/25/2016","02/25/2016 02:45:02 PM","02/25/2016 02:45:02 PM"
"291019726","[email protected];[email protected]","Advertiser Profile Page: Changes to Left Nav., Quick View","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=43&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE, https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=45&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","The link is in comments on the document with all necessary information","25","","","<p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-family: Calibri; font-size: medium;"">Advertiser Profile Page</span></span></strong></p><br/><ul><br/><li><br/><p>Left Navigation</p><br/><ul><br/><li><br/><p>Remove from navigation “Creatives”, “Segments”</p><br/></li><br/><li><br/><p>Add “3<sup>rd</sup> Party Tags” above Invoices</p><br/></li><br/><li><br/><p>Activate “Invoices” and “Reporting” options.</p><br/></li><br/><li><br/><p>Navigation should extend to the bottom of the screen.</p><br/></li><br/><li><br/><p>“Ad Groups” should read as “Ad Groups ([# of ad groups in advertiser that are in an active campaign])”</p><br/></li><br/></ul><br/></li><br/></ul><br/><ul><br/><ul><br/><li><br/><p>“Campaigns” should read as “Campaigns ([# of active campaigns under advertiser])”</p><br/></li><br/></ul><br/></ul><br/><ul><br/><li><br/><p>Quick View</p><br/><ul><br/><li><br/><p><span style=""background-color: #ffff00;"">Change “Impressions” field to be “Impressions (Lifetime)” ◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Change “Impressions Served” to be “Impressions (Served)” </span> <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Change “Programmatic Spend” to be “Revenue (Programmatic)”</span> <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/><ul><br/><li><br/><p>Change value to currency format ($X.XX)</p><br/></li><br/></ul><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Change “Total Spend” to be “Revenue (Total)”. </span> <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/><ul><br/><li><br/><p>Change value to currency format ($X.XX)</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Change CTR value to include 4 places after the decimal (X.XXXX%)</p><br/></li><br/><li><br/><p>Change “Service Tier” to be “Service Level”.</p><br/></li><br/><li><br/><p><span style=""background-color: #ffff00;"">Change “Serving Cost” to “Spend”. </span> <span style=""background-color: #ffff00;"">◄ This requirment should be removed in order to be consistent with the Quick View spreadsheet example </span></p><br/><ul><br/><li><br/><p>Change value to currency format ($X.XX)</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Change “ID” to be “Account #”.</p><br/></li><br/><li><br/><p>Change “Account Manager” to be “Owner”</p><br/></li><br/><li><br/><p>Change font-weight of Advertiser Name to “normal”.</p><br/></li><br/><li><br/><p>Change font-weight of “Advertiser” label to “lighter”.</p><br/></li><br/><li><br/><p>Change font of Advertiser Name to 26px and keep the “Advertiser” label at 75% of that.</p><br/></li><br/><li><br/><p>Anything over two lines should have a button that will expand the Quick View vertically (making height of left nav and workspace smaller) to make it show more. Default should be Advertiser name and two lines of reporting metrics though. Opening up the quick view in accordion manner will shrink the height of the left navigation and main workspace.</p><br/></li><br/><li><br/><p>If owned by team, show “Owner” field and team name. If owned by individuals, show owner, data manager, and creative manager fields.</p><br/></li><br/></ul><br/></li><br/></ul>","UAT Feedback","High","506","","","02/25/2016 03:04:22 PM","02/25/2016 03:09:46 PM","02/25/2016","02/25/2016 03:04:22 PM","02/25/2016 03:04:22 PM"
"302960756","","Backend: Solve concurrency problem with EntityBinder","294550141","","archive:out of scope","backend","","","","0","False","","26","","","","Defect","Normal","707","","","02/29/2016 10:33:18 AM","02/29/2016 10:33:18 AM","02/29/2016","02/29/2016 10:33:18 AM","02/29/2016 10:33:18 AM"
"306330657","","WebUI: Add tooltips for button ""copy to clipboard""","294550141","","archive:out of scope","webui","","","","0","False","","27","","","<p>Steps to reproduce:</p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/advertiser/3257/third-party-tags"">http://malt-web.dev.multiview.com/advertiser/3257/third-party-tags#</a></p><br/><p>2. Open ""3rd Party Segment Tags"" popup </p><br/><p>3. Move mouse to the button</p><br/><p>Current result: there isn't any tooltip</p><br/><p>Expected result: there is tooltip ""Copy To Clipboard""</p>","Defect","Normal","779","279516998","279516998","03/01/2016 05:41:51 PM","03/01/2016 05:42:13 PM","03/01/2016","02/08/2016 12:24:06 PM","03/01/2016 05:41:51 PM"
"306976983","","Highlight field red where validation fails","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=21&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","28","","","<p>21 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=21&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Highlight field red where validation fails</a></p><br/><p><span>Any field on edit or create form that has validation against it should highlight red to show error when user gets out of field and validation not accepted.</span></p>","UAT Feedback","Normal","794","","","03/01/2016 10:28:22 PM","03/01/2016 10:28:22 PM","03/01/2016","03/01/2016 10:28:22 PM","03/01/2016 10:28:22 PM"
"307438714","","Ad Group Targeting Subpage - Display: Device Types - Clean Up Display","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=160&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","29","","","<p>Issue 160 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=160&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Device Types - Clean Up Display</a></p>","UAT Feedback","Normal","862","","","03/02/2016 12:01:21 PM","03/02/2016 12:01:21 PM","03/02/2016","03/02/2016 12:01:21 PM","03/02/2016 12:01:21 PM"
"304945009","","Advertiser Profile Page: Advertiser Settings Subpage Read only User has Edit capability","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=104&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","It isn't still actual for UAT","30","","","<p>Issue 104 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=104&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Advertiser Settings Subpage Read only User has Edit capablity</a></p>","UAT Feedback","High","735","","","03/02/2016 09:09:27 PM","03/02/2016 09:09:27 PM","03/02/2016","03/02/2016 09:09:27 PM","03/02/2016 09:09:27 PM"
"304945006","","Advertiser List View: Read only Permission - MALTTeastRead user able to Create an Advertiser","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=101&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","It isn't still actual","31","","","<p>Issue 101 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=101&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Read only Permission - MALTTeastRead user able to Create an Advertiser</a></p>","UAT Feedback","High","734","","","03/02/2016 09:10:01 PM","03/02/2016 09:10:01 PM","03/02/2016","03/02/2016 09:10:01 PM","03/02/2016 09:10:01 PM"
"295646092","","Delete Permission capability","294550141","","archive:out of scope","webui","","","","0","False","It isn't actually","32","","","<p>Certain roles will require the permission to change the ""State"" of an <span style=""color: #393b34; line-height: 107%; font-family: 'Helvetica',sans-serif; font-size: 10pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"">Entity </span>for the purpose of restricting all users to a ""Read Only"" <span style=""color: #393b34; line-height: 107%; font-family: 'Helvetica',sans-serif; font-size: 10pt; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"">capability</span>. This permission when performed will disallow all Edit Capability for all users at the Advertiser, Campaign, and Ad Group levels until such time as the permission is changed back to the Active state. </p><br/><p>At this time (1/2/16) the following permissions Change States have been identified.</p><br/><ul><br/><li>Advertiser_ChangeState</li><br/><li>Campaign_ChangeState</li><br/><li>AdGroup_ChangeState</li><br/><li>Etc…</li><br/></ul><br/><p>This permission should be given to every entity where the state is allowed to be changed. Additional point of clarity: the ad group status is not the same as the ad group’s state. We currently do not give access to any user to view or change the ad group’s state, only the status which just needs the adgroup_edit permission to be changed.</p><br/><p>Possible user would be Ad Ops Director.</p>","UAT Feedback","Normal","539","","","03/03/2016 11:50:12 AM","03/03/2016 11:50:12 AM","03/03/2016","03/03/2016 11:50:12 AM","03/03/2016 11:50:12 AM"
"304965404","","Change URL","294550141","","archive:out of scope","webui","","","","0","False","It isn't actually","33","","","<ul><br/><li><br/><p>The URLs should be malt.dev.multiview.com (DEV), malt.dmp.uat.multiview.com (UAT), malt.multiview.com (PROD)</p><br/></li><br/></ul>","UAT Feedback","Normal","752","","","03/03/2016 11:50:30 AM","03/03/2016 11:50:30 AM","03/03/2016","03/03/2016 11:50:30 AM","03/03/2016 11:50:30 AM"
"308128041","","WebUI: Change title for conformation message","294550141","","archive:out of scope","webui","","","","0","False","","34","","","<p>Steps to reproduce:</p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/adgroup/2037/third-party-tags"">http://malt-web.dev.multiview.com/adgroup/2037/third-party-tags</a></p><br/><p>2. Open popup ""</p><br/><h4>Add A Shared 3rd Party Segment Tag</h4>","Defect","Normal","878","279516998","279516998","03/03/2016 06:59:47 PM","03/03/2016 06:59:47 PM","03/03/2016","02/08/2016 12:45:23 PM","03/03/2016 06:59:47 PM"
"306965543","","Show undefined End Date instead of blank","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=22&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","35","","","<p>22 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=22&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Show undefined End Date instead of blank</a></p>","UAT Feedback","Normal","795","","","03/09/2016 05:18:30 PM","03/09/2016 05:18:30 PM","03/09/2016","03/01/2016 06:47:07 PM","03/01/2016 06:47:07 PM"
"307436321","","Ad Group Profile Page - Settings: Edit Budget Form - Remove column titles","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=142&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","36","","","<p>Issue 142 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=142&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Remove column titles</a></p>","UAT Feedback","Normal","850","","","03/10/2016 01:06:37 PM","03/10/2016 01:07:01 PM","03/10/2016","03/10/2016 01:06:06 PM","03/10/2016 01:06:37 PM"
"306986319","","Advertiser Profile Page: Campaigns Subpage - Move state and search filters to left","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=56&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","37","","","<p>Issue 56 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=56&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Campaigns Subpage - Move state and search filters to left</a></p>","UAT Feedback","Normal","798","","","03/10/2016 05:40:32 PM","03/10/2016 05:40:32 PM","03/10/2016","03/10/2016 05:40:32 PM","03/10/2016 05:40:32 PM"
"291019717","","General: Search boxes: use of the asterick “*” ","294550141","","archive:out of scope","webui","","","","0","False","Mett answered on the question ""I talked with my team and we have decided that we are comfortable with the search functionality in that case. No changes necessary at this time in terms of functionality there.""","38","","","<ul><br/><li><br/><p>In all search boxes: If user specified an asterick “*” at the beginning of a term, then search should find all records that have text before specified term (e.g. “lect” should find “electronic”).</p><br/></li><br/><li><br/><p>Is there anyone on the UX side that can do some styling and try to provide mockups of how we might be able to make this a little prettier for the users? Potentially also adding clearer distinctions between the Advertiser profile page, the Campaign profile page, and the Ad Group profile page?</p><br/></li><br/></ul>","UAT Feedback","High","498","","","03/10/2016 07:31:00 PM","03/10/2016 07:31:00 PM","03/10/2016","03/10/2016 07:31:00 PM","03/10/2016 07:31:00 PM"
"307435259","[email protected]","Ad Group Targeting Subpage - Device Types Edit Form: Style Clean Up Issues","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=159&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","I have closed this issue as we have discussed this on Demo (03/10/16). This bug cannot be reproduced by anyone.","39","","","<p>Issue 159: <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=159&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Style Clean Up Issues</a></p>","UAT Feedback","Normal","861","","","03/11/2016 10:30:05 AM","03/11/2016 10:30:05 AM","03/11/2016","03/03/2016 12:09:19 PM","03/11/2016 10:30:05 AM"
"307480229","","WebUI: Correct parameter ""bid"" for new keyword","294550141","","archive:out of scope","webui","","","","0","False","","40","","","<div dir=""ltr""><br/><ul><br/><li><span><span>When user create a new keyword which already exists but is “inactive” status it will be changed to an “active” status. But what should happen with Bid parameter of keyword in such case?</span></span></li><br/></ul><br/></div><br/><div><span style=""color: #007f00;"">Bid parameter should be reset. If the user entered a new bid amount when trying to create it again, the value should be equal to their entry. Otherwise, it would be reset back to default.</span></div>","UAT Feedback","Normal","870","","","03/11/2016 04:06:16 PM","03/11/2016 04:06:16 PM","03/11/2016","03/11/2016 04:06:16 PM","03/11/2016 04:06:16 PM"
"311642888","","WebUI: Keywords page","294550141","","archive:out of scope","webui","","","","0","False","","41","","","","Defect","Normal","903","","","03/11/2016 04:07:19 PM","03/11/2016 04:07:19 PM","03/11/2016","03/11/2016 04:07:19 PM","03/11/2016 04:07:19 PM"
"296794604","","General: Drop Downs Corrected to Fill Containers","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=18&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","42","","","<p>Issue 18 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=18&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Drop Downs Corrected to Fill Containers</a></p><br/><p>Safari</p><br/><p>Comparing Safari and Chrom versions, the active drop down control on the Safari screen (shown on the left in the screen shot) does not appear to have entry focus, the color appears to be the same on all of the controls. In the Chrome screen (shown on the right side of the attached screen shot) the active control appears dramatically lighter then the other controls.</p><br/><p>see attachment. </p>","UAT Feedback","Low","597","","","03/13/2016 11:01:02 AM","03/13/2016 11:01:02 AM","03/13/2016","03/13/2016 11:01:02 AM","03/13/2016 11:01:02 AM"
"302047503","","WebUI: Make rows don't be longer than popup","294550141","","archive:out of scope","webui","","","","0","False","","43","","","<p>Steps to reproduce:</p><br/><p>1. Open Domein Targeting popup <a href=""http://malt-web.dev.multiview.com/adgroup/2033/targeting"">http://malt-web.dev.multiview.com/adgroup/2033/targeting</a></p><br/><p>2. Chose Whitelist Multiview level</p><br/><p>3. Look at the popup</p><br/><p>Current result: If there is domain with long name than rows are longer than popup <a href=""http://screencast.com/t/gGcnz8fll"">http://screencast.com/t/gGcnz8fll</a></p><br/><p>Expected result: The name of domain is wrapping or not showing all http://screencast.com/t/s1RjkpgC</p>","Defect","High","670","","","03/15/2016 10:04:37 AM","03/15/2016 10:04:37 AM","03/15/2016","03/15/2016 10:04:37 AM","03/15/2016 10:04:37 AM"
"288919304","","WebUI: Correct sorting of ad groups on list page ","294550141","","archive:out of scope","webui","","","","0","False","","44","","","","Defect","High","453","","","03/15/2016 02:47:28 PM","03/15/2016 02:47:28 PM","03/15/2016","03/15/2016 02:47:28 PM","03/15/2016 02:47:28 PM"
"364310786","","Ad Group Settings - Buying Strategy: CTR goal should not be an integer","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=453&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","closed by client","45","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=453&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 453</a></p>","UAT Feedback","Critical","1944","","","07/21/2016 10:35:21 AM","07/21/2016 10:35:24 AM","07/21/2016","07/21/2016 10:35:21 AM","07/21/2016 10:35:21 AM"
"308585532","","WebUI: Added counts ","294550141","","archive:out of scope","webui","","Defect","","0","False","","46","","","<p>Added counts should only have been added to the left navigation. They should not have been included in top navigation's Data Management>>Domain Lists</p>","Defect","Normal","880","","","03/16/2016 12:32:51 PM","03/16/2016 12:33:22 PM","03/16/2016","02/02/2016 03:21:28 PM","03/16/2016 12:32:51 PM"
"311085025","[email protected]","WebUI: IE - Advertiser New popup: The cursor is out of field by default","294550141","","archive:out of scope","webui","","","","2","True","Can't reproduce it on my laptop.","47","","","<p><strong>Steps to reproduce: IE 11 Win 7</strong></p><br/><p>1. open create new advertiser popup <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p><strong>Current result: </strong>The cursor is out of field ""name"" by default <a href=""http://screencast.com/t/8kDYTGtQz"">http://screencast.com/t/8kDYTGtQz</a> </p><br/><p><strong>Expected result:</strong> The cursor is in field ""name"" by default</p>","Defect","High","890","","","03/17/2016 10:34:29 AM","03/17/2016 10:34:29 AM","03/17/2016","03/15/2016 04:02:58 PM","03/17/2016 10:34:29 AM"
"315087764","","WebUI: Change name in the header(quick view) part","294550141","","archive:out of scope","webui","","","","0","False","","48","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>Open ad group profile page</li><br/><li>Look at header</li><br/></ul><br/><p><strong>Current result:</strong> there is parameter ""Bidding"" <a href=""http://screencast.com/t/pK47wyhQIh"">http://screencast.com/t/pK47wyhQIh</a> </p><br/><p><strong>Expected result:</strong> there is parameter ""Bid""</p><br/><p> </p>","UAT Feedback","Normal","950","","","03/21/2016 02:55:39 PM","03/21/2016 02:55:39 PM","03/21/2016","03/16/2016 02:14:22 PM","03/21/2016 02:55:39 PM"
"296929197","","WebUI: Make spend parameter cut to 2 digits after point on summery page","294550141","","archive:out of scope","webui","","","","0","False","","49","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open create ad group wizard</p><br/><p>2. Fill all besessary fields - input in spend fields - 1452.0235, 14587.0254, 2145.0254</p><br/><p>3. Go to summery step</p><br/><p><strong>Current result:</strong> There are values <span data-mce-mark=""1"">452.0235, 14587.0254, 2145.0254</span></p><br/><p><strong>Expected result:</strong> There should be values 452.02, 14587.03, 2145.03</p><br/><p><a href=""http://screencast.com/t/yQTXTTZjW"">http://screencast.com/t/yQTXTTZjW</a> </p><br/><p>Add "":"" after title ""Daily"" for Spend</p>","Defect","Normal","602","","","03/24/2016 12:23:42 PM","03/24/2016 12:23:42 PM","03/24/2016","03/24/2016 12:23:42 PM","03/24/2016 12:23:42 PM"
"298081397","","WebUI: Change value of parameter value in the header on the Profile Page after creation","294550141","","archive:out of scope","webui","","","","0","False","","50","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Create new ad group</p><br/><p>2. Look at the header after creation</p><br/><p><strong>Current result:</strong> There is a value of parameter Vendor as we have chosen for parameter Vendor classification</p><br/><p><strong>Expected result:</strong> <span>Only vendor available for phase 1 is Simpli.fi. There should be name of Vendor of the ad group's Campaign</span></p>","Defect","High","621","","","03/24/2016 12:25:57 PM","03/24/2016 12:25:57 PM","03/24/2016","03/24/2016 12:25:57 PM","03/24/2016 12:25:57 PM"
"289385890","","WebUI: Add delimiter order for Budget part","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/Lightbox.aspx?url=https%3A%2F%2Fmultiview.sharepoint.com%2FPrdDev%2Fdmp%2FShared%2520Documents%2FMALT%2FMALT%2520User%2520Stories%2520-%2520Phase%25201%2F4.(Final)%2520Ad%2520Group%2F(Final)%2520Create%2520Form%2FWireframe%2520-%2520Wizard%2520-%2520Page%25204.JPG","","","0","False","","51","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open Create Ad Group Wizard</p><br/><p>2. Fill all nessesary fields and all fields for Budget part</p><br/><p><strong>Current result:</strong> There isn't a delimeter order "","" for parameters of Impressions, and Frequency (impressions) on summary step <a href=""http://screencast.com/t/ACg62CLpezi"">http://screencast.com/t/ACg62CLpezi</a> </p><br/><p><span data-mce-mark=""1""><strong>Expected result:</strong> <span data-mce-mark=""1"">There is a delimeter order for parameters of Impressions, and </span><span data-mce-mark=""1"">Frequency (impressions) on summary step and settings page according to US </span></span></p>","Defect","Normal","465","","","03/24/2016 12:41:30 PM","03/24/2016 12:41:30 PM","03/24/2016","03/24/2016 12:41:30 PM","03/24/2016 12:41:30 PM"
"316233836","","IE 11 - Function ""past"" doesn't work ","294550141","","archive:out of scope","","","","","0","False","","52","","","<p><strong>steps to reproduce: <a href=""http://screencast.com/t/9suef93Y9"">http://screencast.com/t/9suef93Y9</a> </strong></p><br/><ul><br/><li>open ""past keywords"" popup</li><br/><li>input some keywords</li><br/><li>click ""add""</li><br/></ul><br/><p><strong>Current result:</strong> There is error in console and keywords haven't been added</p><br/><p><strong>Expected result:</strong> Function works</p>","Defect","Normal","1032","","","03/24/2016 01:18:35 PM","03/24/2016 01:18:57 PM","03/24/2016","03/16/2016 09:37:40 AM","03/24/2016 01:18:35 PM"
"315619608","","Safari - Date in incorrect format","294550141","","archive:out of scope","safari","","","","0","False","","53","","","<p>See formatting instructions in description for Run Dates Field. Month, day, year should not be in text format. it should be numeric.</p>","Other Work","Normal","970","","","03/25/2016 11:37:02 AM","03/25/2016 11:37:02 AM","03/25/2016","02/29/2016 10:14:05 AM","03/25/2016 11:37:02 AM"
"316771123","","Safari - Date in incorrect format","294550141","","archive:out of scope","","","","","0","False","","54","","","","Defect","Normal","1044","302963431","302963431","03/25/2016 01:49:31 PM","03/25/2016 01:49:31 PM","03/25/2016","03/24/2016 07:40:34 PM","03/25/2016 01:49:31 PM"
"317575740","","Bloker for demo","294550141","","archive:out of scope","","","","","0","False","","55","","","","Defect","Normal","1055","","","03/28/2016 11:38:11 AM","03/28/2016 11:38:11 AM","03/28/2016","03/28/2016 11:35:24 AM","03/28/2016 11:38:11 AM"
"302645886","","Backend: Change state of keyword often produce exception","294550141","","archive:out of scope","backend","","","","0","False","","56","","","<p>Exception Details:<br />status = 500,<br />Exception: org.springframework.transaction.CannotCreateTransactionException<br />Message: Could not open JPA EntityManager for transaction; nested exception is javax.persistence.PersistenceException: org.hibernate.TransactionException: JDBC begin transaction failed:<br />Path: /malt/v1/adgroups/keywords/52</p>","Defect","Normal","699","","","03/31/2016 10:29:22 AM","03/31/2016 10:29:22 AM","03/31/2016","03/31/2016 10:29:22 AM","03/31/2016 10:29:22 AM"
"306249473","[email protected]","Backend: rename Advertiser CrmId field to AccountNumber","294550141","","archive:out of scope","backend","","","","1","False","","57","","","","Feature","Normal","770","","","03/31/2016 10:29:30 AM","03/31/2016 10:29:30 AM","03/31/2016","03/31/2016 10:29:30 AM","03/31/2016 10:29:30 AM"
"301457002","","Backend: remove all magic numbers from tests","294550141","","archive:out of scope","backend","","","","0","False","","58","","","","Improvement","Normal","649","","","03/31/2016 10:29:36 AM","03/31/2016 10:29:36 AM","03/31/2016","03/31/2016 10:29:36 AM","03/31/2016 10:29:36 AM"
"322119507","","Domain List Details/Edit: Add Domain - adding blank row","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=187&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","59","","","<p>Issue 187 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=187&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Add Domain - adding blank row</a></p>","UAT Feedback","High","1120","","","04/07/2016 11:06:28 AM","04/07/2016 11:06:28 AM","04/07/2016","04/07/2016 11:06:28 AM","04/07/2016 11:06:28 AM"
"321034583","","Correct layout for pages","294550141","","archive:out of scope","webui","","","","0","False","","60","","","<p><strong>Steps to reproduce:</strong></p><br/><p>•open page <a href=""http://malt-dev.tt.dev.multiview.com/advertiser-domain-list/2238/settings"">http://malt-dev.tt.dev.multiview.com/advertiser-domain-list/2238/settings</a> (tab domains/tab ad groups) <a href=""http://malt-dev.tt.dev.multiview.com/adgroup/4105/third-party-tags"">http://malt-dev.tt.dev.multiview.com/adgroup/4105/third-party-tags</a> <br />• look at page</p><br/><p><strong>Current result:</strong> There is to many free space beetwen elements <a href=""http://screencast.com/t/AgZOO3poPCL"">http://screencast.com/t/AgZOO3poPCL</a><br /><strong>Expected result:</strong> The elements are located as on <a href=""http://malt-dev.tt.dev.multiview.com/global-domain-list/2061/settings"">http://malt-dev.tt.dev.multiview.com/global-domain-list/2061/settings</a> (tab domains/tab ad groups) and as <a href=""http://malt-dev.tt.dev.multiview.com/advertiser/3256/third-party-tags"">http://malt-dev.tt.dev.multiview.com/advertiser/3256/third-party-tags</a></p>","Defect","Normal","1089","","","04/08/2016 01:23:03 PM","04/08/2016 01:23:03 PM","04/08/2016","04/08/2016 01:23:03 PM","04/08/2016 01:23:03 PM"
"324096578","","WebUI: Do not redirect to API URLs after relogin","294550141","","archive:out of scope","","","","","0","False","","61","","","","Other Work","Normal","1148","","","04/12/2016 03:40:44 PM","04/12/2016 03:40:44 PM","04/12/2016","04/12/2016 03:38:09 PM","04/12/2016 03:40:44 PM"
"324214616","","No UI validation for inability to set auto set domaun whitelist","294550141","","archive:out of scope","webui","","","","0","False","","62","","","<p><strong>To reproduce: </strong></p><br/><ol><br/><li>Go to doamin whitelist</li><br/><li>Click edit</li><br/><li>Set auto set checkbox</li><br/><li>Click save</li><br/></ol><br/><p><strong>Actual result:</strong> [{""field"":""NewAdGroupAutoSet"",""message"":""White list can't be auto set.""}]</p><br/><p><strong>Expected result:</strong> no checkbox or show validation error</p>","Defect","High","1155","","","04/13/2016 11:33:09 AM","04/13/2016 11:33:09 AM","04/13/2016","04/13/2016 11:33:09 AM","04/13/2016 11:33:09 AM"
"297623041","","WebUI: Make Frequency (impressions) cannot be negative","294550141","","archive:out of scope","webui","","","","0","False","","63","","","<p><strong>steps to reproduce</strong></p><br/><p>1. Open create ad group wizard</p><br/><p>2. fill <span>Frequency (impressions) with negative number using copy/past</span></p><br/><p><span><strong>Current result</strong>: The ad group can be created with this information</span></p><br/><p><span><strong>Expected result:</strong> The ad group cannot be created with this information</span></p>","Defect","Normal","619","","","04/13/2016 11:44:50 AM","04/13/2016 11:44:50 AM","04/13/2016","04/13/2016 11:44:50 AM","04/13/2016 11:44:50 AM"
"325262221","","Ad Group Edit Details popup: Make start date field be editable only for draft status.","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B1A932AFA-16D0-45F6-BDDF-DF5D55E67E51%7D&file=Ad%20Group%20Settings%20Subpage.docx&action=default","","","0","False","","64","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open setting sub page of ad group - in active, paused, ended status</li><br/><li>open ""Edit details"" popup</li><br/></ul><br/><p><strong>Current result:</strong> The field ""Start Date"" is editable <a href=""http://screencast.com/t/iKmjSPwwn9"">http://screencast.com/t/iKmjSPwwn9</a></p><br/><p><strong>Expected result:</strong> Start Date should be editable only for ad group with status Draft according to US (""<span>Editable only when status = Draft. Otherwise, display only."")</span></p>","Defect","High","1177","","","04/14/2016 02:11:39 PM","04/14/2016 02:11:39 PM","04/14/2016","04/14/2016 01:44:30 PM","04/14/2016 02:11:39 PM"
"288295831","","WebUI: Implement AJAX loader indicator","294550141","","archive:out of scope","webui","","","","3","False","","65","","","<p>This icon should appear when some action produces AJAX query</p>","Improvement","Normal","447","","","04/18/2016 12:09:21 PM","04/18/2016 12:09:21 PM","04/18/2016","04/18/2016 12:08:07 PM","04/18/2016 12:09:21 PM"
"313530891","","WebUI: add spinner shown loading process","294550141","","archive:out of scope","webui","","","","0","False","","66","","","<ul><br/><li>for table at searching</li><br/></ul>","Improvement","Normal","939","","","04/18/2016 12:09:33 PM","04/18/2016 12:09:33 PM","04/18/2016","04/18/2016 12:08:24 PM","04/18/2016 12:09:33 PM"
"315700235","","WebUI: Campaign Group - Campaign Subpage (List View)","294550141","","archive:out of scope","webui","","","","0","False","","67","","","","Feature","Normal","984","","","04/27/2016 12:36:05 PM","04/27/2016 12:36:05 PM","04/27/2016","04/27/2016 12:20:38 PM","04/27/2016 12:36:05 PM"
"315704609","","WebUI: Campaign Group - Ad Group Subpage (List View)","294550141","","archive:out of scope","webui","","","","0","False","","68","","","","Feature","Normal","983","","","04/27/2016 12:36:11 PM","04/27/2016 12:36:11 PM","04/27/2016","04/27/2016 12:20:38 PM","04/27/2016 12:36:11 PM"
"332574272","","Ad Group Targeting: Scheduling Popup - No specification for Time Zone - Primary Workspace","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=229&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","69","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=229&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 229</a></p>","UAT Feedback","Normal","1248","","","05/01/2016 03:55:24 PM","05/01/2016 03:55:24 PM","05/01/2016","05/01/2016 03:55:24 PM","05/01/2016 03:55:24 PM"
"315735223","","WebUI: Metrics Aggregation - Simpli.fi - Campaign group metrics","294550141","","archive:out of scope","webui","","","","0","False","","70","","","","Feature","Normal","995","315682460","315682460","05/16/2016 10:15:43 AM","05/16/2016 10:15:43 AM","05/16/2016","05/05/2016 12:57:31 PM","05/16/2016 10:15:43 AM"
"340230812","","Sites: Only first URL pass GET validation","294550141","","archive:out of scope","webui","","","","0","False","","71","","","<p>Steps to reproduce:</p><br/><ol><br/><li>Open ""New Site"" pop-up</li><br/><li>Enter ""testsite"" as name</li><br/><li>Add URL as <a href=""http://vk.ru"">http://vk.ru</a></li><br/><li>Add another URL as <a href=""http://asdffdsa.asdf"">http://asdffdsa.asdf</a></li><br/><li>Click Save</li><br/></ol><br/><p>Expected result: We expect that saving process fails with error about second URL.</p><br/><p>Actual result: Second URL saved without errors. GET validation for second URL is missing if the first URL is correct.</p>","Defect","High","1313","","","05/19/2016 12:59:27 PM","05/19/2016 12:59:27 PM","05/19/2016","05/19/2016 12:59:27 PM","05/19/2016 12:59:27 PM"
"299277919","","WebUI: Make drop down ""Domain lists"" to be not more than work space","294550141","","archive:out of scope","webui","","","","0","False","","72","","","<p>Steps to reproduce: </p><br/><p>1. Open Domain list page Advertiser level <a href=""http://malt-web.dev.multiview.com/advertiser/1/domain-lists"">http://malt-web.dev.multiview.com/advertiser/1/domain-lists</a></p><br/><p>2. Open drop dpwn ""Domain Lists""</p><br/><p>Cureent result: The drop down is wider than work space</p><br/><p>Expected result: the drop down is narrow than work space</p><br/><p>http://screencast.com/t/SGHdZCwNg</p>","Defect","Normal","636","","","05/19/2016 02:50:05 PM","05/19/2016 02:50:05 PM","05/19/2016","05/19/2016 02:50:05 PM","05/19/2016 02:50:05 PM"
"295181625","","WebUI: Make new layout for table filters without bootstrap grid system","294550141","","archive:out of scope","webui","","","","3","False","","73","","","","Improvement","Normal","536","","","05/20/2016 04:06:26 PM","05/20/2016 04:06:26 PM","05/20/2016","05/20/2016 04:06:26 PM","05/20/2016 04:06:26 PM"
"295834682","","WebUi: There should be free space between elements under tables for different size of window","294550141","","archive:out of scope","webui","","","","0","False","","74","","","<p>Steps to reproduce:</p><br/><p>1 . Open list pages.</p><br/><p>2. Change size</p><br/><p>Current result: There isn't space berwen elements</p><br/><p><a href=""http://screencast.com/t/hqbIURRlrSyL"">http://screencast.com/t/hqbIURRlrSyL</a></p><br/><p>Expected result: There should be free space between elements under tables for different size of window</p>","Defect","High","547","","","05/20/2016 04:47:02 PM","05/20/2016 04:47:02 PM","05/20/2016","05/20/2016 04:47:02 PM","05/20/2016 04:47:02 PM"
"308047460","","WebUI: Increase width of search field on ""Ad Groups"" tab of domain profile page","294550141","","archive:out of scope","webui","","","","0","False","","75","","","<p>Steps to reproduce:</p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/global-domain-list/1058/settings"">http://malt-web.dev.multiview.com/global-domain-list/1058/settings</a> or <a href=""http://malt-web.dev.multiview.com/advertiser-domain-list/1016/settings"">http://malt-web.dev.multiview.com/advertiser-domain-list/1016/settings</a></p><br/><p>2. Look at search field</p><br/><p>Current result: the plaseholder isn't visible wholly and it is covered by symbole ""loupe"" <a href=""http://screencast.com/t/i1kjkXuAcM5e"">http://screencast.com/t/i1kjkXuAcM5e</a> </p><br/><p>Expected result: the plaseholder is visible wholly and it isn't covered by symbole ""loupe"" for any size of window</p>","Defect","Normal","874","","","05/20/2016 04:48:05 PM","05/20/2016 04:48:05 PM","05/20/2016","05/20/2016 04:48:05 PM","05/20/2016 04:48:05 PM"
"336839646","","Incorrect work validation for dates in add/edit adgroup popup","294550141","","archive:out of scope","webui","","","","0","False","","76","","","<p><strong>see more:</strong> <a href=""http://screencast.com/t/Jx3OOO2ii1"">http://screencast.com/t/Jx3OOO2ii1</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to add/edit adgroup dates popup</li><br/><li>Set end date in the past</li><br/><li>unfocus</li><br/><li>click cross for end date to clear the field</li><br/><li>Set start date after set end date (now it's empty)</li><br/><li>Unfocus</li><br/></ol><br/><p><strong>Actual result:</strong> there is error for Start date ""Start date must be at least 1 day before End Date.""<br /><strong>Expected result:</strong> no errors</p>","Defect","Normal","1288","","","05/30/2016 11:13:46 AM","05/30/2016 11:13:46 AM","05/30/2016","05/30/2016 11:13:46 AM","05/30/2016 11:13:46 AM"
"324122313","","Fix alignment for ip ranges table","294550141","","archive:out of scope","webui,ip-targeting","","","","0","True","Need to get client's opinion.","77","","","<p>Need to have the same alignment for values and titles</p>","Defect","Normal","1151","","","05/30/2016 11:16:37 AM","05/30/2016 11:16:37 AM","05/30/2016","05/30/2016 11:16:37 AM","05/30/2016 11:16:37 AM"
"308574654","","WebUI: Make left border of the table to be visible always (for different size of the window)","294550141","","archive:out of scope","webui","","","","0","False","","78","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open Profile page <a href=""http://malt-web.dev.multiview.com/advertiser/2014/campaigns"">http://malt-web.dev.multiview.com/advertiser/2014/campaigns</a> /<a href=""http://malt-web.dev.multiview.com/advertiser/2014/adgroups"">http://malt-web.dev.multiview.com/advertiser/2014/adgroups</a> /<a href=""http://malt-web.dev.multiview.com/campaign/2102/adgroups"">http://malt-web.dev.multiview.com/campaign/2102/adgroups</a> and other</p><br/><p>2. Look at the left border of table</p><br/><p><strong>Current result:</strong> The left border of the table isn't visible for middle size of window <a href=""http://screencast.com/t/wIIkUXYAq2Q"">http://screencast.com/t/wIIkUXYAq2Q</a> </p><br/><p><strong>Expected result:</strong> The left border of the table is visible for middle size of window as for full size window <a href=""http://screencast.com/t/HIKEG2YY8"">http://screencast.com/t/HIKEG2YY8</a> </p>","Defect","Normal","879","","","05/30/2016 11:27:10 AM","05/30/2016 11:27:10 AM","05/30/2016","05/30/2016 11:27:10 AM","05/30/2016 11:27:10 AM"
"330841533","","Need to add opportunity to change creative status","294550141","","archive:out of scope","webui,creative","","","","0","False","","79","","","","UAT Feedback","Normal","1230","","","05/30/2016 04:13:42 PM","05/30/2016 04:13:42 PM","05/30/2016","05/30/2016 04:13:42 PM","05/30/2016 04:13:42 PM"
"335024230","","AdGroup - Trade Desk: Advanced Targeting: (no separate sub-pages, will be implemented as a table, where MV will be able to fill key-value pairs)","294550141","","archive:out of scope","webui","","","","0","False","","80","","","","Feature","Normal","1276","315687609","315687609","05/30/2016 05:49:23 PM","05/30/2016 05:49:23 PM","05/30/2016","05/30/2016 05:49:23 PM","05/30/2016 05:49:23 PM"
"346673458","","Make Select2 editor be able to work with Pageable collection","294550141","","archive:out of scope","","","","","0","False","","81","","","","Other Work","Normal","1392","335043828","335043828","06/08/2016 10:27:40 AM","06/08/2016 10:27:40 AM","06/08/2016","05/30/2016 05:27:00 PM","06/08/2016 10:27:40 AM"
"315760572","","WebUI: AdGroup - TradeDesk - Create Wizard","294550141","","archive:out of scope","webui","","","","5","False","","82","","06/30/2016","","Feature","Normal","1005","315687609","315687609","06/08/2016 10:33:37 AM","06/08/2016 10:33:37 AM","06/08/2016","05/30/2016 05:41:39 PM","06/08/2016 10:33:37 AM"
"335023300","","Campaign - Trade Desk: Update List Views & Profile Pages To Include Trade Desk Metrics","294550141","","archive:out of scope","webui","","","","0","False","","83","","","","Feature","Normal","1274","315687607","315687607","06/08/2016 10:42:56 AM","06/08/2016 10:42:56 AM","06/08/2016","06/08/2016 10:42:56 AM","06/08/2016 10:42:56 AM"
"335023315","","AdGroup - Trade Desk: Update List Views & Profile Pages To Include Trade Desk Metrics","294550141","","archive:out of scope","webui","","","","0","False","","84","","","","Feature","Normal","1275","315687609","315687609","06/08/2016 10:43:06 AM","06/08/2016 10:43:06 AM","06/08/2016","06/08/2016 10:43:06 AM","06/08/2016 10:43:06 AM"
"360230645","","Ad Group Targeting - IP Targeting: Edit - IP not differentiating between active and inactive ranges.","294550141","","archive:out of scope","webui,ip-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=224&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","close by client","85","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=224&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 224</a></p>","UAT Feedback","Critical","1765","","","07/11/2016 08:13:07 PM","07/11/2016 08:13:08 PM","07/11/2016","07/11/2016 08:13:07 PM","07/11/2016 08:13:07 PM"
"286040122","","WebUI: Get rid of usage of date formatter in views.","294550141","","archive:out of scope","webui","","","","2","False","","86","","","<p>Model's date attributes are already formatted now.</p>","Improvement","Normal","402","","","06/09/2016 02:12:23 PM","06/09/2016 02:12:23 PM","06/09/2016","06/09/2016 02:12:23 PM","06/09/2016 02:12:23 PM"
"302532486","","WebUI: Make all select to overlap by its drop down","294550141","","archive:out of scope","webui,general","","","","0","False","","87","","","<p>Steps to reproduce:</p><br/><p>1. Open selects on advertiser list page</p><br/><p>2. Open select on create advertiser form <a href=""http://screencast.com/t/a1h41SqDXx4"">http://screencast.com/t/a1h41SqDXx4</a></p><br/><p>It is actual for all selects</p>","Defect","Low","679","","","06/09/2016 10:52:21 PM","06/09/2016 10:52:21 PM","06/09/2016","06/09/2016 10:52:21 PM","06/09/2016 10:52:21 PM"
"291111194","","WebUI: Make edit modal popup be always pre filled with correct information","294550141","","archive:out of scope","webui,general","","","","0","False","","88","","","<p>Steps to reproduce: </p><br/><p>1. Open advertiser settings page</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/18/settings"">http://malt-web.dev.multiview.com/advertiser/18/settings</a></p><br/><p>2. Click edit button</p><br/><p>Current result: <a href=""http://screencast.com/t/18M6XiDw"">http://screencast.com/t/18M6XiDw</a> The fields of team and person are all prefilled</p><br/><p>Expected result: When field is disabled than is should be prefilled (for <span>Team, <span>Account Manager, <span>Data Manager, <span>Creative Manager)</span></span><span><br /></span></span></span></p><br/><p><span><span><span><span>When we chose a owner type one more time - the correct field/s is/are prefilled and not prefilled. But is we open popup one more time - there is the same situation.</span></span></span></span></p>","Defect","Low","512","","","06/09/2016 10:55:33 PM","06/09/2016 10:55:33 PM","06/09/2016","06/09/2016 10:55:33 PM","06/09/2016 10:55:33 PM"
"276002591","","WebUI: Add string fields length constraint in backbone forms and PHP models.","294550141","","archive:out of scope","webui","","","","2","False","","89","","","","Improvement","Normal","277","","","06/09/2016 10:56:38 PM","06/09/2016 10:56:38 PM","06/09/2016","06/09/2016 10:56:38 PM","06/09/2016 10:56:38 PM"
"296337535","","WebUI: Implement global AJAX error handler","294550141","","archive:out of scope","webui","","","","0","False","","90","","","<p>It should show popup with server error message.</p>","Improvement","Normal","594","","","06/09/2016 11:00:25 PM","06/09/2016 11:00:25 PM","06/09/2016","06/09/2016 11:00:25 PM","06/09/2016 11:00:25 PM"
"281772760","","WebUI: capitalize words in Ad Groups controllers","294550141","","archive:out of scope","webui","","","","1","False","","91","","","","Improvement","Low","377","","","06/09/2016 11:00:36 PM","06/09/2016 11:00:36 PM","06/09/2016","06/09/2016 11:00:36 PM","06/09/2016 11:00:36 PM"
"292211582","","WebUI: PageableCollection. Let's use SetPageSize and SetSorting methods instead of direct control internal state obejct","294550141","","archive:out of scope","webui","","","","0","False","","92","","","<p>help link:<br />https://github.com/backbone-paginator/backbone.paginator#fetching-data-and-managing-states</p>","Improvement","Normal","515","","","06/09/2016 11:01:06 PM","06/09/2016 11:01:06 PM","06/09/2016","06/09/2016 11:01:06 PM","06/09/2016 11:01:06 PM"
"292216124","","WebUI: Get rid of raw SQL in additional fields of Yii models","294550141","","archive:out of scope","webui","","","","5","False","","93","","","","Improvement","Normal","517","","","06/09/2016 11:01:35 PM","06/09/2016 11:01:35 PM","06/09/2016","06/09/2016 11:01:35 PM","06/09/2016 11:01:35 PM"
"324222169","[email protected]","Add error about existing domain in domain list","294550141","","archive:out of scope","webui,domain-list","","","","0","False","","94","","","","Improvement","Normal","1156","","","06/09/2016 11:06:50 PM","06/09/2016 11:06:50 PM","06/09/2016","06/09/2016 11:06:50 PM","06/09/2016 11:06:50 PM"
"327734513","","Element shouldn't have blue backround when it's selected","294550141","","archive:out of scope","webui,general","","","","0","False","","95","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/G7lbjLEHTy18"">http://screencast.com/t/G7lbjLEHTy18</a> </p>","Defect","Low","1202","","","06/09/2016 11:09:09 PM","06/09/2016 11:09:09 PM","06/09/2016","06/09/2016 11:09:09 PM","06/09/2016 11:09:09 PM"
"327739965","","Buttons shouldn't have border when it's selected","294550141","","archive:out of scope","webui,general","","","","0","False","","96","","","<p><strong>See more: </strong><a href=""http://screencast.com/t/bCFP8PTT"">http://screencast.com/t/bCFP8PTT</a> </p>","Defect","Low","1203","","","06/09/2016 11:09:43 PM","06/09/2016 11:09:43 PM","06/09/2016","06/09/2016 11:09:43 PM","06/09/2016 11:09:43 PM"
"348055966","[email protected];[email protected]","500 error when trying to change status for a campaign and adgroup","294550141","","archive:out of scope","campaign,webui","","","","2","False","","97","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to campaogn settings page</li><br/><li>Try to change status</li><br/><li>Confirm changes</li><br/></ol><br/><p><strong>Actual reault:</strong> 500 error campaign: MALT API error. URL: http://multiview-dmp-2-dev.thumbtack.lo:8080/malt/v1/campaigns/8585; Request: {""endDate"":"""",""isSpendPrioritizationEnables"":false}; Response: {""status"":500,""errorAttributes"":{""timestamp"":""2016-06-07T13:44:39.652+0000"",""status"":500,""error"":""Internal Server Error"",""exception"":""java.lang.NullPointerException"",""message"":null,""path"":""/malt/v1/campaigns/8585""},""meta"":{}};</p><br/><p>adgroup: MALT API error. URL: http://multiview-dmp-2-dev.thumbtack.lo:8080/malt/v1/adgroups/6129; Request: {""browserIds"":[],""deviceTypeIds"":[],""operatingSystems"":[],""advertiserDomainListIds"":[],""advertiserWhiteDomainListIds"":[],""advertiserBlackDomainListIds"":[],""globalDomainListIds"":[],""globalWhiteDomainListIds"":[],""globalBlackDomainListIds"":[],""geoTargetIds"":[],""dayPartings"":[],""dmaIds"":[],""postalCodes"":[],""siteContextIds"":[],""geoFences"":[]}; Response: {""meta"":{},""body"":{""id"":6129,""name"":""asdasd123123"",""adGroupSettings"":{""frequency"":null,""frequencyPer"":null,""lifetimeSpend"":2.00,""mounthlySpend"":null,""dailySpend"":null,""autoAdjustDailySpend"":false,""biddingValue"":2.00,""lifetimeImpressions"":null,""mounthlyImpressions"":null,""dailyImpressions"":null,""goalValue"":null,""viewThruEmphasis"":null,""clickThruEmphasis"":null,""viewAttributionWindow"":null,""clickAttributionWindow"":null,""autoOptimize"":false,""goalType"":{""id"":1,""name"":""None""},""biddingType"":{""id"":1,""name"":""CPM""},""frequencyPricingSlope"":null,""pacingEnabled"":null,""baseBid"":null,""maxBid"":null,""baseBidAutoOptimization"":null,""supplyVendorAutoOptimization"":null,""aboveFoldAdjustment"":null,""belowFoldAdjustment"":null,""unknownFoldAdjustment"":null},""createdDateTime"":""2016-04-25T12:38:30.237"",""lastModifiedDateTime"":""2016-06-08T04:48:03.301"",""externalBinding"":null,""startDate"":""2016-04-25"",""endDate"":""2016-05-07"",""multiviewClassification"":{""id"":2,""name"":""TC - Site""},""vendorClassification"":{""id"":2,""name"":""Site""},""status"":{""id"":4,""name"":""Ended""},""viewabilityThreshold"":{""id"":1,""name"":""No Minimum"",""description"":null},""domainListType"":{""id"":2,""name"":""Blacklist""},""locationType"":{""id"":1,""name"":""GeoTargeting""},""recencyType"":null,""industryCategory"":null,""industrySubCategory"":null}};</p><br/><p><strong>Expected result:</strong> correct status change</p>","Defect","Critical","1422","348055985","348055985","06/10/2016 11:14:45 AM","06/10/2016 11:14:45 AM","06/10/2016","06/07/2016 07:48:56 PM","06/10/2016 11:14:45 AM"
"300974543","","WebUI : Correct work of error message for field ""name"" for all entities","294550141","","archive:out of scope","webui","","","","0","False","","98","","","<p>Steps to reproduce:</p><br/><p>1. Open Create advertiser popup</p><br/><p>2. Click Save - Error message - ""Name cannot be black""</p><br/><p>3. Fill field ""name"" with ""1"", click save</p><br/><p>Current result; There aren't error message for field name. There are error messages for fields ""account"" and ""Team""</p><br/><p>Expected result: There are error messages for fields ""account"", ""Team"" and ""Name""</p><br/><p><a href=""http://screencast.com/t/d87KkMYECzu"">http://screencast.com/t/d87KkMYECzu</a></p><br/><p>Error message ""Name should contain..."" appears only after filling of all required fields</p>","Other Work","Normal","647","","","06/10/2016 01:08:55 PM","06/10/2016 01:08:55 PM","06/10/2016","06/10/2016 01:08:55 PM","06/10/2016 01:08:55 PM"
"349529952","","DayParting Popup: Information on popup and page is different","294550141","","archive:out of scope","webui,dayparting-targeting","","","","0","False","","99","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open page <a href=""http://develop.tt.dev.multiview.com/adgroup/6134/targeting"">http://develop.tt.dev.multiview.com/adgroup/6134/targeting</a></li><br/><li>look at scheduling part</li><br/><li>There is information - all day for each day</li><br/><li>open popup </li><br/></ul><br/><p><strong>Current result</strong>: there is off for all cell and after table empty value for each day<a href=""http://screencast.com/t/3Ac23TZk4Ezy"">http://screencast.com/t/3Ac23TZk4Ezy</a><strong><br /></strong></p><br/><p>Expected result: There is on for all cell and value ""All Day"" for each day</p>","Defect","High","1438","","","06/10/2016 01:32:17 PM","06/10/2016 01:32:17 PM","06/10/2016","06/10/2016 01:32:18 PM","06/10/2016 01:32:18 PM"
"304993202","","Advertiser create form: Change Person to ""Individual""","294550141","","archive:out of scope","webui,advertiser-popup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=34&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","100","","","<p>Issue 34 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=34&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Change Person to ""Individual""</a></p>","UAT Feedback","Low","764","","","06/14/2016 02:43:37 PM","06/14/2016 02:43:37 PM","06/14/2016","06/14/2016 02:43:37 PM","06/14/2016 02:43:37 PM"
"327171952","","Backend: setup grafana dashboard with metrics for campaign-manager-api backend.","294550141","","archive:out of scope","backend","","","","3","False","","101","","","","Task","Low","1199","","","06/15/2016 07:38:02 PM","06/15/2016 07:38:02 PM","06/15/2016","04/19/2016 12:57:11 PM","06/15/2016 07:38:02 PM"
"357311326","","Creatives Create Wizard: Simpli.Fi Ads are not pushing over to DSP","294550141","","archive:out of scope","webui,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=419&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","Client test tjis and all correct. We coukd reproduce this","102","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=419&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 419</a></p><br/><p> </p><br/><p>Д. Запорожец</p><br/><p>Возможно проблема уже решена</p>","UAT Feedback","Critical","1681","","","07/08/2016 10:47:57 AM","07/08/2016 10:47:59 AM","07/08/2016","07/08/2016 10:47:57 AM","07/08/2016 10:47:57 AM"
"320376252","[email protected]","Deploy MALT Campaign Manager API on separate machine.","294550141","","archive:out of scope","backend","","","","3","False","","103","","","","Task","Normal","1084","","","06/15/2016 07:38:20 PM","06/15/2016 07:38:20 PM","06/15/2016","04/04/2016 08:26:51 AM","06/15/2016 07:38:20 PM"
"347092361","","Site URL validation, accepted invalide URL","294550141","","archive:out of scope","sites,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=276&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","Fixed","104","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=276&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 276</a></p>","UAT Feedback","Critical","1396","","","06/16/2016 12:57:24 PM","06/16/2016 12:57:24 PM","06/16/2016","06/16/2016 12:57:07 PM","06/16/2016 12:57:07 PM"
"350831836","[email protected]","There is js error on Invoices page on IE","294550141","","archive:out of scope","webui","","","","2","False","","105","","","<p>See more: <a href=""http://screencast.com/t/HpOK8kZipG"">http://screencast.com/t/HpOK8kZipG</a> </p>","Defect","Normal","1471","","","06/17/2016 11:54:45 AM","06/17/2016 11:54:45 AM","06/17/2016","06/16/2016 05:22:57 PM","06/17/2016 11:54:45 AM"
"352971408","","Unable to create ad group","294550141","","archive:out of scope","general,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=330&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","","106","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=330&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 330</a></p>","UAT Feedback","High","1527","","","06/20/2016 01:16:50 PM","06/20/2016 01:16:50 PM","06/20/2016","06/20/2016 01:16:50 PM","06/20/2016 01:16:50 PM"
"353519289","[email protected]","Ad Group Creatives: MALT Creatives Add Creative, not accepting Image files","294550141","","archive:out of scope","webui,creatives,blocked","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=364&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","107","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=364&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1545","","","06/22/2016 11:24:52 AM","06/22/2016 11:24:52 AM","06/22/2016","06/21/2016 02:41:24 PM","06/22/2016 11:20:26 AM"
"353622062","","Sites","294550141","","archive:out of scope","webui,sites","","","","0","False","","108","","","","Defect","High","1553","","","06/22/2016 03:44:55 PM","06/22/2016 03:51:19 PM","06/22/2016","06/22/2016 03:44:55 PM","06/22/2016 03:44:55 PM"
"355112851","[email protected]","Fixes for 1507 card","294550141","","archive:out of scope","webui","","","","0","False","","109","","","","Defect","Normal","1604","","","06/24/2016 09:11:37 AM","06/30/2016 09:19:36 PM","06/24/2016","06/24/2016 08:03:14 AM","06/24/2016 09:11:37 AM"
"340966150","","WebUI: Validation is missed for ad group budget edit page.","294550141","","archive:out of scope","webui,adgroup","","","","0","False","","110","","","<p><strong>Steps to reproduce: </strong></p><br/><ol><br/><li>Navigate to pre-created ad group edit page</li><br/><li>Enter ""20"" as Impression Cap</li><br/><li>Enter ""30"" as Monthly Impression Cap</li><br/><li>Enter ""10"" as Daily Impression Cap</li><br/><li>Click ""Save""</li><br/></ol><br/><p><strong>Expected result:</strong> We expect ad group isn't saved. Error message should appear instead ""Monthly Impression Cap cannot be greater than Impression Cap.""<strong>Actual result:</strong> Ad Group is updated.</p><br/><p> </p>","Defect","High","1325","","","06/24/2016 02:41:14 PM","06/24/2016 02:41:14 PM","06/24/2016","06/24/2016 02:41:14 PM","06/24/2016 02:41:14 PM"
"324621946","","Add validation for impression parameters on negative number","294550141","","archive:out of scope","webui","","","","0","False","","111","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>open ad group create wizard or ""Edit Ad Group Budget"" popup</li><br/><li>input in impressions field negative number ""-15"" use copy/past</li><br/><li>click next/save button</li><br/></ul><br/><p>Current result: There isn't validation for negative number</p><br/><p>Expected result: There is validation for negative number. Use messages ""Impression Cap cannot be less than 0."", ""Monthly Impression Cap cannot be less than 0."", ""Daily Impression Cap cannot be less than 0.""</p>","Defect","Normal","1160","","","06/24/2016 02:41:21 PM","06/24/2016 02:41:21 PM","06/24/2016","06/24/2016 02:41:21 PM","06/24/2016 02:41:21 PM"
"354166645","","WebUI: Impression Cap calculates wrong on Campaigns quick view","294550141","","archive:out of scope","webui,campaigns,quick-view","","","","0","False","","112","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Set campaign's impression cap as ""Unlimited""</li><br/><li>Create 2 adgroups</li><br/><li>For 1st ad group set impression cap as ""300""</li><br/><li>For 2nd ad group leave impression field empty</li><br/></ol><br/><p><strong>Expected result: </strong>Impression Cap on Campaign's quick view equals ""Unlimited"" according to following rules (https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={408DAA8B-D0B5-42D7-BD61-81CE405ECE9B}&file=Quick%20Views%20And%20Table%20Views.xlsx&action=default) </p><br/><p><strong>Actual result: </strong>Impression Cap equals 300</p><br/><p> </p>","Defect","High","1594","","","06/24/2016 02:47:35 PM","06/24/2016 02:47:35 PM","06/24/2016","06/24/2016 02:47:35 PM","06/24/2016 02:47:35 PM"
"355673813","","Ad Group Create Wizard: CPM Budget Not Updating in Simpli.fi","294550141","","archive:out of scope","webui,adgroup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=360&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","113","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=360&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","High","1616","","","06/27/2016 11:40:15 AM","06/27/2016 11:40:15 AM","06/27/2016","06/27/2016 11:40:15 AM","06/27/2016 11:40:15 AM"
"334950106","[email protected]","Create 3rd Party tags: ""Ok"" button dissapears after allowing of access in IE","294550141","","archive:out of scope","IE,webui,3rdpartytag-targeting","","","","2","False","Even if we will be able to reproduce this bug, this is something specific for IE and really hard to fix. So, we will not fix this.","114","","","<p><strong>see more: <a href=""http://screencast.com/t/RPK2UZNzYL3"">http://screencast.com/t/RPK2UZNzYL3</a> </strong></p><br/><p><strong>Steps to reproduce in IE: </strong></p><br/><ul><br/><li>open 3rd party tag page /advertiser/2235/third-party-tags or /adgroup/6130/third-party-tags </li><br/><li>create tag with allowing of access</li><br/></ul><br/><p><strong>Current resul:</strong> After allowing of access ""ok"" button isn't presentes on conformation popup</p><br/><p><strong>Expected result: </strong>""ok"" button is presented always</p>","Defect","Normal","1261","","","06/27/2016 10:36:45 PM","06/27/2016 10:36:45 PM","06/27/2016","06/09/2016 11:10:32 PM","06/27/2016 10:36:45 PM"
"351827174","","Advertiser Domain List List View - Cannot set to automatically include domain blacklist","294550141","","archive:out of scope","domain-lists,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=323&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","Closed by client","115","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=323&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 323</a></p>","UAT Feedback","High","1502","","","06/29/2016 01:42:51 PM","06/29/2016 01:42:51 PM","06/29/2016","06/29/2016 01:42:51 PM","06/29/2016 01:42:51 PM"
"356785333","[email protected]","Cannot change AD TD","294550141","","archive:out of scope","backend","","","","0","True","Backend hasn't got this error.","116","","","<p><span id=""docs-internal-guid-c074a6ee-9a33-bf07-449f-8fc225143ca0""><span>[{""field"":""BaseBidAutoOptimization"",""message"":""Base Bid Auto Optimization cannot be blank.""},{""field"":""SupplyVendorAutoOptimization"",""message"":""Supply Vendor Auto Optimization cannot be blank.""}] - </span><a href=""http://screencast.com/t/NkiifoApEk1""><span>http://screencast.com/t/NkiifoApEk1</span></a></span></p>","Defect","Normal","1644","","","06/29/2016 02:20:27 PM","06/29/2016 02:20:27 PM","06/29/2016","06/29/2016 09:23:51 AM","06/29/2016 02:20:27 PM"
"354762071","","All targetings are reset if user change goal type","294550141","","archive:out of scope","webui,adgroup-edit","","","","0","False","","117","","","<ul><br/><li>make some changes in targeting</li><br/><li>change goal type</li><br/></ul><br/><p>Current result: All targetings are reset</p>","Defect","Critical","1601","","","06/30/2016 11:55:49 AM","06/30/2016 09:21:04 PM","06/30/2016","06/23/2016 07:17:53 PM","06/30/2016 11:55:49 AM"
"349561802","[email protected];[email protected];[email protected]","Campaign Create/Edit: Start Date selected by default doesn't match server's timezone.","294550141","","archive:out of scope","webui,backend","","","","0","False","","118","","","<p><strong>Note:</strong> I reproduced this bug only on vm with different timezone. Dates on server and client weren't same. Client's date was 8/6/16 while server's date was 9/6/16.</p><br/><p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Open a create campaign popup</li><br/><li>Fill all required fields</li><br/><li>Leave start date field with default value</li><br/></ol><br/><p><strong>Expected result: </strong>Campaign should be successfully created without an error.</p><br/><p><strong>Actual result: </strong>Error message ""must be today or later"" is displayed.</p>","Defect","Critical","1442","","","06/30/2016 03:49:12 PM","06/30/2016 03:49:12 PM","06/30/2016","06/14/2016 02:36:32 PM","06/30/2016 03:49:12 PM"
"356825372","","Radius Targeting Bugs","294550141","","archive:out of scope","webui,backend","","","","0","False","","119","","","","Other Work","Critical","1665","","","06/30/2016 09:32:24 PM","06/30/2016 09:32:24 PM","06/30/2016","06/29/2016 01:33:31 PM","06/30/2016 09:32:24 PM"
"355685976","","TD Campaign","294550141","","archive:out of scope","webui,TD-campaign","","","","0","False","","120","","","","Defect","High","1617","","","07/01/2016 11:49:47 AM","07/01/2016 11:49:47 AM","07/01/2016","07/01/2016 11:48:44 AM","07/01/2016 11:49:47 AM"
"354807793","[email protected]","Campaign TD: Spend Prioritization Enabled doesn't set to TD from Malt UI","294550141","","archive:out of scope","webui,TD-campaign,backend","","","","0","False","Problem was solved. Created card 1708","121","","","<p><a href=""https://desksb.thetradedesk.com/campaigns/detail/2vc48si?advertiser=3tawquk#settings"">https://desksb.thetradedesk.com/campaigns/detail/2vc48si?advertiser=3tawquk#settings</a></p><br/><p><a href=""http://malt-qa.uat.multiview.com/campaign/5345/settings"">http://malt-qa.uat.multiview.com/campaign/5345/settings</a></p><br/><p>when i canged this parameter in malt it hadn't been changed in TD.</p><br/><p><a href=""http://screencast.com/t/8T1D5xtg"">http://screencast.com/t/8T1D5xtg</a> additional validation</p>","Defect","High","1602","","","07/04/2016 11:18:16 AM","07/04/2016 11:18:16 AM","07/04/2016","06/23/2016 08:11:05 PM","07/04/2016 11:18:16 AM"
"315762410","","WebUI: 3rd Party Segment Tags - List View - MultiView Level","294550141","","archive:out of scope","webui","","","","0","False","","122","","","","Feature","Normal","1027","315688422","315688422","07/04/2016 11:48:09 AM","07/04/2016 11:48:09 AM","07/04/2016","07/04/2016 11:48:00 AM","07/04/2016 11:48:09 AM"
"315758701","","WebUI: 3rd Party Segment Tags - Create - MultiView Level","294550141","","archive:out of scope","webui","","","","0","False","","123","","","","Feature","Normal","1026","315688422","315688422","07/04/2016 11:48:15 AM","07/04/2016 11:48:15 AM","07/04/2016","07/04/2016 11:47:59 AM","07/04/2016 11:48:15 AM"
"358736671","","TD Campaign","294550141","","archive:out of scope","webui,TD-adgroup","","","","0","False","","124","","","<p><a href=""http://screencast.com/t/FrRcPsnQgLJK"">http://screencast.com/t/FrRcPsnQgLJK</a></p><br/><p>clicks. impressions, conversion fields - it is integer number field without any digits after point</p><br/><p><a href=""http://malt-qa.uat.multiview.com/advertiser/18555/campaigns"">http://malt-qa.uat.multiview.com/advertiser/18555/campaigns</a> </p>","Defect","Normal","1717","","","07/05/2016 07:12:35 PM","07/05/2016 07:12:35 PM","07/05/2016","07/05/2016 07:12:35 PM","07/05/2016 07:12:35 PM"
"353652647","[email protected]","Ad Group Settings - Budget: Edit - Auto Adjust Daily Spend does not push correctly","294550141","","archive:out of scope","webui,adgroup-edit,adgroup-wizard","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=357&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","125","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=357&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 357</a></p>","UAT Feedback","High","1560","","","07/06/2016 11:10:04 AM","07/06/2016 11:10:04 AM","07/06/2016","06/27/2016 09:56:45 AM","07/06/2016 11:10:04 AM"
"349966598","","Unknown Internal Server Error","294550141","","archive:out of scope","adgroup-edit,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=304&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","126","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=304&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 304</a></p>","UAT Feedback","High","1444","","","07/07/2016 11:10:56 AM","07/07/2016 11:10:56 AM","07/07/2016","07/07/2016 11:10:56 AM","07/07/2016 11:10:56 AM"
"359794744","[email protected]","Additional segments: add opportunity to remove all in the Simpli.Fi","294550141","","archive:out of scope","backend,additionalsegments-targeting","","","","0","False","","127","","","","Defect","High","1750","","","07/07/2016 05:46:27 PM","07/07/2016 05:46:27 PM","07/07/2016","07/07/2016 05:21:09 PM","07/07/2016 05:46:27 PM"
"354066858","","Advertiser Domain List Create Form: List not creating","294550141","","archive:out of scope","webui,domain-list","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=237&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Client agreed that all OK","128","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=237&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p><br/><p>Д. Запорожец.</p><br/><p>Необходимо будет добавить блокировку на кнопку create. И проблемы такого рода решатся и для других форм</p>","UAT Feedback","Critical","1568","","","07/08/2016 10:49:16 AM","07/08/2016 10:49:16 AM","07/08/2016","07/08/2016 10:49:16 AM","07/08/2016 10:49:16 AM"
"354098463","","Creative Details Form: Creative Deactivation Not Displaying in DSP","294550141","","archive:out of scope","webui,creative-edit","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=384&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","Passed by client","129","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=384&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p><br/><p> </p><br/><p>Д. Запорожец.<br />Судя по комментариям проблема решена.</p>","UAT Feedback","Critical","1581","","","07/09/2016 11:54:10 AM","07/09/2016 11:54:10 AM","07/09/2016","07/09/2016 11:54:10 AM","07/09/2016 11:54:10 AM"
"356823407","","Ad Group Targeting : Server Error message when clicking Cancel button","294550141","","archive:out of scope","webui,viewability-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=426&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","Passed by client","130","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=426&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a> 426</p><br/><p>cannot reproduce - UAT was cleared</p><br/><p> </p><br/><p>Д. Запорожец</p><br/><p>Пока не знаю в чем дело, судя по описанию, необходимо будет исследовать причину падения сетевого запроса и подумать о более внятном сообщении пользователю.</p>","UAT Feedback","Critical","1658","","","07/09/2016 11:55:39 AM","07/09/2016 11:55:39 AM","07/09/2016","07/09/2016 11:55:39 AM","07/09/2016 11:55:39 AM"
"355673796","","Ad Group Keyword create: Attempt Keyword Entry getting Server Error message","294550141","","archive:out of scope","webui,blocked,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=404&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","Passed by client","131","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=404&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 404</a></p><br/><p> </p><br/><p>Д. Запорожец<br />Скорее всего проблема в отсутствии ad group в симплифае. Но на всякий случай закладываю буфер</p>","UAT Feedback","Critical","1613","","","07/09/2016 11:58:12 AM","07/09/2016 11:58:12 AM","07/09/2016","07/09/2016 11:58:12 AM","07/09/2016 11:58:12 AM"
"360866010","","Domain List should have one active domain","294550141","","archive:out of scope","webui,domain-lists","","","","0","False","","132","","","<p>cannot create domain list without Domains as on multiview level as on advertiser level</p><br/><p>on <a href=""http://malt-qa.uat.multiview.com"">http://malt-qa.uat.multiview.com</a> </p><br/><p>Add validation on webui level ""Domain list should have at least one active Domain."" This is rule for TradeDesk. This validation was added on backend level</p>","Defect","High","1777","","","07/11/2016 10:46:55 AM","07/11/2016 10:46:55 AM","07/11/2016","07/11/2016 10:46:34 AM","07/11/2016 10:46:55 AM"
"353642677","","Ad Group Targeting - Locations: CRCs not updating in Simpli.fi","294550141","","archive:out of scope","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=334&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","","133","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=334&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1557","","","07/13/2016 03:23:10 PM","07/13/2016 03:23:10 PM","07/13/2016","07/13/2016 03:23:10 PM","07/13/2016 03:23:10 PM"
"354070199","","Creative Details Form: Creative Does Not Push to DSP Correctly","294550141","","archive:out of scope","webui,creative","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=368&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","5","False","Closed by client","134","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=368&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p><br/><p> </p><br/><p>Д. Запорожец.<br />Непонятно актуально ли это для них, судя по комментариям Насти.<br />Если актуально, то предстоит серьезное исследование</p>","UAT Feedback","Critical","1570","","","07/13/2016 03:26:30 PM","07/13/2016 03:26:30 PM","07/13/2016","07/13/2016 03:26:30 PM","07/13/2016 03:26:30 PM"
"362609526","","cannot change location type on QA and UAT enviroment","294550141","","archive:out of scope","backend","","","","0","False","","135","","","<p>[{""field"":""Simpli.Fi[AD_GROUP]"",""message"":""Geo targets Select either Location Targeting or Geo Fencing, but not both""}]</p>","Defect","High","1892","","","07/14/2016 03:28:04 PM","07/14/2016 03:28:04 PM","07/14/2016","07/14/2016 01:14:55 PM","07/14/2016 03:28:04 PM"
"356785328","","Auto-Optimization doesn’t transferred correctly","294550141","","archive:out of scope","backend","","","","0","True","Waite answer from client","136","","","","Defect","Normal","1642","","","07/15/2016 06:18:40 PM","07/15/2016 06:18:40 PM","07/15/2016","06/29/2016 09:23:51 AM","07/15/2016 06:18:40 PM"
"347932651","[email protected];[email protected]","Site: add dissapearing of error message if invalid URL was removed","294550141","","archive:out of scope","webui,site,site-popup","","","","0","False","","137","","","<p>see more: <a href=""http://screencast.com/t/PRr9rKYIQfM"">http://screencast.com/t/PRr9rKYIQfM</a> </p>","Defect","Normal","1421","","","07/18/2016 01:01:00 PM","07/18/2016 01:01:00 PM","07/18/2016","07/15/2016 05:05:38 PM","07/18/2016 01:01:00 PM"
"350734679","[email protected];[email protected]","Ad Group Create Wizard: End Date Note","294550141","","archive:out of scope","webui,adgroup-wizard,adgroup-edit","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=295&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","","138","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=295&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 295 </a></p>","UAT Feedback","Low","1463","","","07/18/2016 08:17:05 PM","07/18/2016 08:17:05 PM","07/18/2016","07/15/2016 05:57:43 PM","07/18/2016 08:17:05 PM"
"354084115","[email protected]","Creative Create Wizard: SimpliFi UI - Ads Preview not working when image loaded through MALT","294550141","","archive:out of scope","webui,creative","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=372&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","passed by client","139","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=372&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p><br/><p>Tru to solve problem - why previews are different in Malt and SimpliFi <a href=""http://malt.dmp.uat.multiview.com/adgroup/66/creatives"">http://malt.dmp.uat.multiview.com/adgroup/66/creatives</a></p><br/><p><a href=""https://app-playground.simpli.fi/companies/5629/clients/36127/campaigns/184911/edit_campaign#/editCampaign/workflow"">https://app-playground.simpli.fi/companies/5629/clients/36127/campaigns/184911/edit_campaign#/editCampaign/workflow</a> </p>","UAT Feedback","Critical","1573","","","07/19/2016 11:33:17 AM","07/19/2016 11:33:17 AM","07/19/2016","07/11/2016 09:03:15 PM","07/19/2016 11:33:17 AM"
"363099044","[email protected]","Simpli.Fi Ad Group Add Creative Window: Facebook SimpliFi Campaign Upload Not Successful","294550141","","archive:out of scope","backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=571&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","140","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=571&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>571</p><br/><p>Backed changes are on UAT but UI</p>","UAT Feedback","Critical","1902","","","07/19/2016 11:34:45 AM","07/19/2016 11:34:45 AM","07/19/2016","07/18/2016 07:36:16 PM","07/19/2016 11:34:13 AM"
"364255433","","Advertiser Settings - State: Server Error when Deactivating an Acitve state Advertiser.","294550141","","archive:out of scope","backend","","Defect","","0","False","","141","","","<p>Issue 595</p>","UAT Feedback","Critical","1933","","","07/19/2016 03:11:24 PM","07/19/2016 03:11:24 PM","07/19/2016","07/19/2016 03:11:24 PM","07/19/2016 03:11:24 PM"
"364255453","","Creative Create Wizard: Simpli.fi - Facebook Ad","294550141","","archive:out of scope","webui,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=601&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","closed by client","142","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=601&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 601</a></p>","UAT Feedback","Critical","1934","","","07/20/2016 11:36:40 AM","07/20/2016 11:36:40 AM","07/20/2016","07/20/2016 11:36:40 AM","07/20/2016 11:36:40 AM"
"362077730","[email protected]","Implement endpoint to get data cpm for adgroup","294550141","","archive:out of scope","","","","","0","False","","143","","","","Task","Normal","1883","","","07/20/2016 12:17:18 PM","07/20/2016 12:17:18 PM","07/20/2016","07/20/2016 12:17:18 PM","07/20/2016 12:17:18 PM"
"357835478","","AD TD: Data CPM ","294550141","","archive:out of scope","webui,TD-adgroup","","","","0","True","Do this with integration with Audience builder","144","","","<ol><br/><li dir=""ltr""><br/><p dir=""ltr""><span>CPM Data - quick view profile page - </span></p><br/></li><br/></ol><br/><p dir=""ltr""><span>Question - Accordint to US for Ad Group TradeDesck we should change parameter ""DSP Classification"" to “Data CPM” in Quick View. But what value should be shown for this parameter in such case?</span></p><br/><p dir=""ltr""><span>Answer - This Data CPM is the CPM cost to MultiView that is built out in the Audience Builder of MALT for that Ad Group if audience strategy is set to Custom Audience. If Audience Strategy is set to Run of Exchange, this value should just read ""N/A"". Так как по дефолту должно быть Run of Exchange - То </span></p><br/><p><span id=""docs-internal-guid-f32b26ff-a504-e47e-87b4-2f263cbf5412""><span>показывать N/A. </span></span></p>","Task","Critical","1695","","","07/20/2016 12:17:30 PM","07/20/2016 12:17:30 PM","07/20/2016","07/20/2016 12:17:30 PM","07/20/2016 12:17:30 PM"
"363761399","[email protected]","Unable to update action's revenue.","294550141","","archive:out of scope","webui,actions","","","","0","False","","145","","","<p>Need to develop functionality that will allow to update actions revenue.</p>","Defect","High","1913","","","07/20/2016 05:08:37 PM","07/20/2016 05:08:37 PM","07/20/2016","07/19/2016 01:42:44 PM","07/20/2016 05:08:37 PM"
"358780872","","Make format of fields to be as numbers fields not currency (without point and two digits after it)","294550141","","archive:out of scope","webui,general","","","","0","False","","146","","","<ul><br/><li>TD Advertiser - Additional part <a href=""http://screencast.com/t/icTXFVwDhDXn"">http://screencast.com/t/icTXFVwDhDXn</a> (edit/create)</li><br/><li>TD Campaign (edit/create) <a href=""http://screencast.com/t/icTXFVwDhDXn"">http://screencast.com/t/icTXFVwDhDXn</a> </li><br/><li>SF Campaign (create/edit) <a href=""http://screencast.com/t/36UALsSyG"">http://screencast.com/t/36UALsSyG</a> </li><br/><li>AD Group SF <a href=""http://screencast.com/t/iCaMkb0FnZl"">http://screencast.com/t/iCaMkb0FnZl</a> </li><br/></ul>","Defect","Normal","1722","","","07/20/2016 06:02:06 PM","07/20/2016 06:02:06 PM","07/20/2016","07/20/2016 06:02:06 PM","07/20/2016 06:02:06 PM"
"351273666","","Flash file isn't shown in full size on preview","294550141","","archive:out of scope","webui,creatives","","","","0","False","","147","","","<p><strong>Actual result:</strong> <a href=""http://screencast.com/t/Nuk52QVqoy1W"">http://screencast.com/t/Nuk52QVqoy1W</a> </p><br/><p><strong>Expected result: </strong>flash creative and background image should display in the same (full) size.</p>","Defect","Normal","1478","","","07/20/2016 06:05:06 PM","07/20/2016 06:05:06 PM","07/20/2016","07/20/2016 06:05:06 PM","07/20/2016 06:05:06 PM"
"345489831","","Keywords Targeting: Last inactive keyword stays active in simplify.","294550141","","archive:out of scope","webui,keywords","","","","0","False","","148","","","<p>Steps to reproduce:</p><br/><ol><br/><li>Deactivate all keywords in adgroup</li><br/><li>Navigate to Simply.fi playground</li><br/></ol><br/><p>Expected result: There are no keywords in simplify.</p><br/><p>Actual result: Simplify prevent single keyword from deleting. There is always one keyword left in simplify. All keywords are inactive on malt-ui</p><br/><p> </p>","Defect","Normal","1375","","","07/20/2016 06:05:43 PM","07/20/2016 06:05:43 PM","07/20/2016","07/20/2016 06:05:43 PM","07/20/2016 06:05:43 PM"
"364304348","","Ad Group Create Wizard - Buying Strategy: Trade Desk Ad Group Creation - Goal Validation Error","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=567&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","passed by client ","149","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=567&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 567</a></p>","UAT Feedback","Critical","1942","","","07/20/2016 07:15:04 PM","07/20/2016 07:15:04 PM","07/20/2016","07/20/2016 07:15:04 PM","07/20/2016 07:15:04 PM"
"353449328","","User is able to open several popups at once","294550141","","archive:out of scope","webui,actions","","","","0","False","","150","","","","Defect","Normal","1531","","","07/20/2016 08:13:20 PM","07/20/2016 08:13:20 PM","07/20/2016","07/20/2016 08:13:20 PM","07/20/2016 08:13:20 PM"
"359676922","","Ad Group Settings - Buying Strategy: CTR Settings are Not Showing on Settings Summary or Simpli.fi","294550141","","archive:out of scope","webui,adgroup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=469&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","dublicate","151","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=469&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>469</p>","UAT Feedback","Critical","1737","","","07/21/2016 10:24:24 AM","07/21/2016 10:24:24 AM","07/21/2016","07/21/2016 10:24:24 AM","07/21/2016 10:24:24 AM"
"351822809","[email protected]","Keyword Filter Change","294550141","","archive:out of scope","keywords,webui,out-of-scope-candidate","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=314&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","passed","152","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=314&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 314</a></p>","UAT Feedback","Low","1497","","","07/21/2016 10:25:38 AM","07/21/2016 10:25:38 AM","07/21/2016","07/15/2016 06:12:19 PM","07/21/2016 10:25:38 AM"
"364319855","[email protected]","Ad Group 3rd Party Tags List View: Ad Group 3rd Party Tags List View - Can push just an Opt-out pixel","294550141","","archive:out of scope","","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=337&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","Asked question in SP","153","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=337&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 337</a></p><br/><p>Looks live we shouldn't allow to create or activate opt-out tag without active opt-in tag</p>","UAT Feedback","Critical","1948","353509080","353509080","07/21/2016 10:30:57 AM","07/21/2016 10:30:57 AM","07/21/2016","07/20/2016 12:39:51 PM","07/21/2016 10:30:57 AM"
"364212485","","Advertiser Domain List Create Form: Unable to create a Trade Desk Domain List","294550141","","archive:out of scope","webui,domain-lists,TradeDesk","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=470&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","Passed","154","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=470&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 470</a></p>","UAT Feedback","Critical","1922","","","07/21/2016 08:26:08 PM","07/21/2016 08:26:08 PM","07/21/2016","07/21/2016 08:26:08 PM","07/21/2016 08:26:08 PM"
"364240244","[email protected]","Creative Create Wizard: Trade Desk Creative Upload Error","294550141","","archive:out of scope","webui,creatives,TradeDesk","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=605&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","Passed","155","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=605&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 605</a></p><br/><p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=605&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank""> </a></p>","UAT Feedback","Critical","1927","","","07/21/2016 08:27:46 PM","07/21/2016 08:27:46 PM","07/21/2016","07/21/2016 08:27:46 PM","07/21/2016 08:27:46 PM"
"365523682","[email protected]","Ad Group Create Wizard: Budget Step - Add disclaimer text to form","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","4","False","Fixed","156","","","<p>Issue 117 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Add disclaimer text to form</a></p><br/><p>We should add validation on Edit Details popup when user tryied to cleared End Date if Auto Adjact Daily Spend has been checked</p>","UAT Feedback","Critical","1982","","","07/21/2016 09:06:13 PM","07/21/2016 09:06:13 PM","07/21/2016","07/21/2016 09:01:23 PM","07/21/2016 09:06:13 PM"
"364292803","","Ad Group Settings - Buying Strategy: Simpli.fi- Ad Group Settings- Goal Percentage","294550141","","archive:out of scope","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=580&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","Dublicate","157","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=580&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 580</a></p>","UAT Feedback","Critical","1939","","","07/22/2016 10:03:31 AM","07/22/2016 10:03:31 AM","07/22/2016","07/22/2016 10:03:31 AM","07/22/2016 10:03:31 AM"
"359692288","[email protected]","Add search tags feature to segments for searching on audience builder","294550141","","archive:out of scope","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=521&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","mistake","158","","","<p><span>The ability to add tags for searching on the audience builder should be available at the SMUI create and edit screens and appears to be missing in demo. Please Add.</span></p>","UAT Feedback","Critical","1822","","","07/23/2016 01:51:51 PM","07/23/2016 01:51:57 PM","07/23/2016","07/12/2016 12:06:07 PM","07/23/2016 01:51:51 PM"
"286548301","[email protected]","WebUI: AdGroup Targeting - Browsers","297732023","","archive:sprint 9","webui,sprint 8,sprint 9","","","","3","False","","0","","","","Feature","Normal","409","279516998","279516998","02/08/2016 09:41:19 PM","02/08/2016 09:41:19 PM","02/08/2016","01/12/2016 01:57:59 PM","01/26/2016 02:27:50 PM"
"286550874","[email protected]","WebUI: AdGroup Targeting - Summary","297732023","","archive:sprint 9","webui,sprint 8","","","","3","False","","1","","","","Feature","Normal","408","279516998","279516998","02/08/2016 09:41:20 PM","02/08/2016 09:41:20 PM","02/08/2016","01/12/2016 01:57:41 PM","02/01/2016 12:33:21 PM"
"286556919","[email protected]","WebUI: AdGroup Targeting - Device Types","297732023","","archive:sprint 9","webui,sprint 8","","","","2","False","We decided to do as in the Simplifi","2","","","","Feature","Normal","410","279516998","279516998","02/08/2016 09:41:21 PM","02/08/2016 09:41:21 PM","02/08/2016","01/12/2016 01:58:14 PM","01/27/2016 06:12:39 PM"
"286556925","[email protected]","WebUI: AdGroup Targeting - Viewability Threshold","297732023","","archive:sprint 9","webui,sprint 8,sprint 9","","","","1","False","","3","","","","Feature","Normal","416","279516998","279516998","02/08/2016 09:41:21 PM","02/08/2016 09:41:21 PM","02/08/2016","01/12/2016 02:02:50 PM","01/26/2016 02:09:45 PM"
"288847407","[email protected]","WebUI: Check permissions requirements for Domain Lists","297732023","","archive:sprint 9","webui","","","","3","False","","4","","","","Defect","High","450","","","02/08/2016 09:41:22 PM","02/08/2016 09:41:22 PM","02/08/2016","01/25/2016 04:49:23 PM","02/02/2016 04:39:11 PM"
"291016511","[email protected]","3 General: Undeveloped pages show message This page is currently undefined","297732023","","archive:sprint 9","webui","","Unclear requirements","","1","False","","5","","","<ul><br/><li><br/><p>For pages/subpages where the navigation allows the user to navigate to but have not been development completed, the words “This Page is Currently Undefined” should be located at the center of the main workspace. Links to bring up popups that have not been development completed should be disabled until development is complete. The appropriate view/read permissions should still be active on the page/subpage. See examples on undefined dashboard and advertiser profile pages:</p><br/></li><br/></ul><br/><p> </p>","UAT Feedback","High","486","","","02/08/2016 09:41:22 PM","03/09/2016 05:06:05 PM","02/08/2016","01/25/2016 03:34:21 PM","02/01/2016 04:55:42 PM"
"291022937","[email protected]","General: Don't Show dummy data","297732023","","archive:sprint 9","webui","","Unclear requirements","","2","False","","6","","","<ul><br/><li><br/><p>Do not show any “dummy data” anywhere. If the connection is not available for that data point, leave that space/cell blank. If the entity for a page/subpage has not been developed yet, mark the page/subpage as undefined.</p><br/></li><br/></ul>","UAT Feedback","High","487","","","02/08/2016 09:41:25 PM","03/09/2016 05:07:48 PM","02/08/2016","01/25/2016 03:35:33 PM","02/02/2016 11:32:36 AM"
"291016517","[email protected]","General: Show all CTR Values as numbers with four decimals to the right followed by a percentage sign (%).","297732023","","archive:sprint 9","webui","","Defect","","2","False","","7","","","<ul><br/><li><br/><p>Show all CTR Values as numbers with four decimals to the right followed by a percentage sign (%). see example in word doc.</p><br/></li><br/></ul>","UAT Feedback","High","492","","","02/08/2016 09:41:23 PM","03/09/2016 05:06:47 PM","02/08/2016","01/25/2016 03:38:26 PM","02/02/2016 01:49:15 PM"
"291017994","[email protected]","2. General: Only use Cancel to Close a popup/ ","297732023","","archive:sprint 9","webui","","Unclear requirements","","1","False","Ralph gave the answer","8","","","<ul><br/><li><br/><p>While in a popup: The only way a user should be able to close a popup in a “Cancel” manner should be to click on / select the cancel button or the cancel “X” located in the upper right of the popup on the popup header. They should not be able to click outside of the popup to close/cancel it.</p><br/></li><br/></ul><br/><p> </p>","UAT Feedback","High","485","","","02/08/2016 09:41:24 PM","03/09/2016 05:07:14 PM","02/08/2016","02/01/2016 04:49:13 PM","02/02/2016 02:05:32 PM"
"291019724","[email protected]","Advertiser list view: Search Box and Table corrections","297732023","","archive:sprint 9","webui","","Change request","","3","False","This card may be implemented. About format of Run Dates we have card 502.","9","","","<ul><br/><li><br/><p>Search Box:</p><br/><ul><br/><li><br/><p>Make Search Box twice as wide as it currently is.</p><br/></li><br/><li><br/><p>Default text should read “ Name / Account # ” and search should be based on Account # instead of ID</p><br/></li><br/></ul><br/></li><br/><li><br/><p>Table:</p><br/><ul><br/><li><br/><p>Make “max-width” of Name field = “350px” instead of 250.</p><br/></li><br/><li><br/><p>For calculating total impressions, see <strong>impression calculation requirements.</strong></p><br/></li><br/><li><br/><p>Remove columns “Creatives”, “CPM”, “ID”</p><br/></li><br/><li><br/><p>Add columns “Revenue (Programmatic)”</p><br/></li><br/><li><br/><p>Change Budget Spent to “Cost”</p><br/></li><br/><li><br/><p>Order of columns should be in the format of [Field Title (title alignment, field alignment):</p><br/><ul><br/><li><br/><p>Name (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Account # (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Owner (Left Align, Left Align)</p><br/></li><br/><li><br/><p>Campaigns (Center Align, Center Align)</p><br/></li><br/><li><br/><p>Ad Groups (Center Align, Center Align)</p><br/></li><br/><li><br/><p>Imps (Served) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Clicks (Right Align, Right Align)</p><br/></li><br/><li><br/><p>CTR (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Revenue (Programmatic) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Spend (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Imps (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Budget (Lifetime) (Right Align, Right Align)</p><br/></li><br/><li><br/><p>Run Dates (Right Align, Right Align)</p><br/><ul><br/><li><br/><p>Format should be “MM/DD/YY – MM/DD/YY”</p><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/></li><br/></ul><br/><p><span style=""color: #000000;"">Remove the “State” field from the table but show state through shading of rows. Shade a gray color if inactive. Leave as is otherwise. Example (see bottom row): </span></p>","UAT Feedback","High","504","","","02/08/2016 09:41:24 PM","03/09/2016 05:08:30 PM","02/08/2016","02/01/2016 04:52:11 PM","02/03/2016 05:57:56 PM"
"291022940","[email protected]","General: Remove top header pagination","297732023","","archive:sprint 9","webui","","Change request","","2","False","","10","","","<ul><br/><li><br/><p>Remove all top (header) pagination elements. Only use bottom (footer) pagination elements for tables. Pagination should not show at all when records are within page limits…i.e. when only 1 page is necessary.</p><br/></li><br/></ul>","UAT Feedback","High","489","","","02/08/2016 09:41:26 PM","03/09/2016 05:10:24 PM","02/08/2016","01/25/2016 03:37:20 PM","02/01/2016 06:15:18 PM"
"291023441","[email protected]","General: do not disable left Navigation","297732023","","archive:sprint 9","webui","","Unclear requirements","","1","False","","11","","","<ul><br/><li><br/><p>Do not disable left navigation items for undefined entities. Instead, allow the user open the subpage and mark it as undefined. Include appropriate “view/read” permissions necessary for that subpage.</p><br/></li><br/></ul>","UAT Feedback","Normal","488","","","02/08/2016 09:41:27 PM","03/09/2016 05:11:16 PM","02/08/2016","01/25/2016 03:36:09 PM","02/01/2016 05:24:14 PM"
"291023444","[email protected]","General: Misunderstanding about fields ID and Account#","297732023","","archive:sprint 9","webui","","Unclear requirements","","2","False","","12","","","<ul><br/><li><br/><p>I think there may be a misunderstanding about the fields “ID” and “Account #” at the Advertiser entity. They are two different fields. The ID is part of the unique identifier for that table and is sequentially created. The user should never be able to edit the ID for any entity that has an ID field. While the user may be able to see the ID for other entities like campaigns and ad groups, they don’t need to view anywhere for the advertiser entity. The field that should be editable on the create form and visible on the advertiser list view table, the top right of the advertiser profile Quick View, and in the breadcrumbs of the child pages that have links back to the advertiser is the “Account #”. The account number is always an intiger and is typed in by the user at create or edit of the advertiser. It is required and two advertisers CAN have the same Account # at this time.</p><br/></li><br/></ul>","UAT Feedback","High","493","","","02/08/2016 09:41:27 PM","03/09/2016 05:11:48 PM","02/08/2016","01/25/2016 03:38:43 PM","02/03/2016 05:57:19 PM"
"291025253","[email protected]","General: State and time based table filters make smaller width.","297732023","","archive:sprint 9","webui","","Unclear requirements","","1","False","","13","","","<ul><br/><li><br/><p>Make all state and time based table filters smaller in width. They do not need to be much bigger than the largest value available, “Inactive” & “Last 30 Days”. See example of current versus acceptable solutions for both filter types: see example in Word doc.</p><br/></li><br/></ul>","UAT Feedback","High","490","","","02/08/2016 09:41:28 PM","03/09/2016 05:12:14 PM","02/08/2016","01/25/2016 03:37:43 PM","02/03/2016 05:07:58 PM"
"291025254","[email protected]","General: Change all budget, CPM, Revenue, and spend fields to currency","297732023","","archive:sprint 9","webui","","Defect","","2","False","","14","","","<ul><br/><li><br/><p>Change all budget, cpm, revenue, and spend fields to be currency fields, showing U.S. dollar signs ($) before a number with two decimal places to the right. see example in Word doc.</p><br/></li><br/></ul>","UAT Feedback","High","491","","","02/08/2016 09:41:28 PM","03/09/2016 05:12:43 PM","02/08/2016","01/25/2016 03:38:08 PM","02/02/2016 01:47:28 PM"
"291029728","[email protected]","Campaign Create Form: Changes to fields","297732023","","archive:sprint 9","webui","","Change request","","3","False","This card may be implemented. About format of Run Dates we have card 502.","15","","","<p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-family: Calibri; font-size: medium;"">Campaign Create Form</span></span></strong></p><br/><ul><br/><li><br/><p>Change “Impression Cap” to read as “Impression Cap (Lifetime)”</p><br/></li><br/><li><br/><p>Change “Spend Limit” to read as “Budget Cap (Lifetime)”</p><br/></li><br/><li><br/><p>Remove arrows from Impression Cap and Budget Cap fields. User should only be able to type in fields. Impression field must be whole number and should translate if the users put in commas. Budget Cap must be US Currency and “$” should be at the beginning of the field by default to show the user that it expects currency.</p><br/></li><br/><li><br/><p>Start Date should read “Start Date (MM/DD/YY)”</p><br/></li><br/><li><br/><p>End Date should read “End Date (MM/DD/YY)”</p><br/></li><br/><li><br/><p>Save button should read “Create” instead of “Save”</p><br/></li><br/><li><br/><p>Campaign should be created with state= ‘Active’</p><br/></li><br/><li><br/><p>Until we have a second vendor, vendor should be assumed to be “Simpli.fi”</p><br/></li><br/></ul>","UAT Feedback","High","509","","","02/08/2016 09:41:29 PM","03/09/2016 05:13:28 PM","02/08/2016","02/01/2016 04:57:02 PM","02/03/2016 05:44:41 PM"
"294227942","[email protected]","Style Theme Change: Primary Workspace","297732023","","archive:sprint 9","webui","","Unclear requirements","","1","False","","16","","","<p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">The following Style Changes need to be made to the Primary Workspace area. The attached example shows the Campaign screen, this style theme need to be applied to all pages, tables and popups in MALT.</span></p><br/><p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">Please see attached example.</span></p><br/><p> </p><br/><p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-size: medium;"">Primary Workspace</span></span></strong></p><br/><ol start=""1""><br/><li>Change the navigation header to a background color=#003a5c and font-color=white</li><br/></ol><br/><p> </p><br/><p><span style=""color: black; font-family: 'Calibri',sans-serif; font-size: 10.5pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"">This is a high priority item and is necessary before we can show to the users for testing.</span></p>","UAT Feedback","High","529","","","02/08/2016 09:41:30 PM","03/09/2016 05:15:17 PM","02/08/2016","02/02/2016 03:21:30 PM","02/03/2016 03:28:05 PM"
"295088100","[email protected]","WebUI: Fix URL for MV internal security service for UAT Environments","297732023","","archive:sprint 9","webui","","","","1","False","","17","","","","Task","High","533","","","02/08/2016 09:41:32 PM","02/08/2016 09:41:32 PM","02/08/2016","02/02/2016 09:27:22 AM","02/03/2016 01:36:49 PM"
"295699352","[email protected]","WebUI: The search by advertiser name doesn't work on list page","297732023","","archive:sprint 9","webui","","","","0","False","","18","","","<p>Steps to reproduce:</p><br/><p>1 Input WestPerson or West</p><br/><p>Current result: There isn't any results of search</p><br/><p>Expected result: there is resu;t of search as there is active advertiser - WestPerson.</p>","Defect","Critical","542","","","02/08/2016 09:41:32 PM","02/08/2016 09:41:32 PM","02/08/2016","02/03/2016 11:46:52 AM","02/03/2016 05:17:32 PM"
"296408532","[email protected]","WebUI: Correct bread crump","297732023","","archive:sprint 9","webui","","","","0","False","","19","","","<p>Steps to reproduce:</p><br/><p>1. Open Campaign Profile Page </p><br/><p>2. Look at breadCrumps</p><br/><p>Current result: There is ""Acount""</p><br/><p>Expected result: There is ""Account""</p>","Defect","Normal","596","","","02/08/2016 09:41:33 PM","02/08/2016 09:41:33 PM","02/08/2016","02/04/2016 05:20:07 PM","02/04/2016 05:50:09 PM"
"296319837","[email protected]","Backend: Correct error message for advertiser popups","303017439","","archive:sprint 10","backend","","","","0","False","","0","","","<p>Steps to reproduce:</p><br/><p>1. Open create advertiser popup</p><br/><p>2. Fill all required fields and fill field Name - ""RetroFM""</p><br/><p>3. Click on button ""Save""</p><br/><p>Current result; There is error message ""<span>Advertiser with this name already exist""</span></p><br/><p><span>Expected result: There should be error message ""<span>Advertiser with this name already exists.""</span></span></p><br/><p><span><span>Make the same actions with edit advertiser popup</span></span></p>","Defect","Normal","593","","","02/24/2016 09:18:59 AM","02/24/2016 09:18:59 AM","02/24/2016","02/04/2016 01:00:39 PM","02/04/2016 03:09:56 PM"
"286187589","[email protected]","Backend: AdGroup Targeting SiteRetargeting","303017439","","archive:sprint 10","backend","","","","3","False","","1","","","","Feature","Normal","406","279516998","279516998","02/24/2016 09:19:05 AM","02/24/2016 09:19:05 AM","02/24/2016","01/26/2016 11:24:51 AM","02/08/2016 10:43:16 AM"
"286185058","[email protected];[email protected]","Backend: AdGroup IP Targeting design","303017439","","archive:sprint 10","backend","","","","3","False","","2","","","","Feature","Normal","403","306969234","306969234","02/24/2016 09:19:31 AM","03/01/2016 06:22:46 PM","02/24/2016","01/11/2016 09:37:31 PM","01/26/2016 11:26:06 AM"
"286186858","[email protected];[email protected]","Backend: AdGroup targeting SiteRetargeting design","303017439","","archive:sprint 10","backend","","","","3","False","","3","","","","Feature","Normal","404","279516998","279516998","02/24/2016 09:19:48 AM","02/24/2016 09:19:48 AM","02/24/2016","01/11/2016 09:39:01 PM","01/26/2016 07:16:46 PM"
"291073344","[email protected]","Backend: Simpli.fi updates should be able to distinguish absent/null fields","303017439","","archive:sprint 10","backend","","","","2","False","","4","","","","Task","Normal","511","","","02/24/2016 09:20:05 AM","02/24/2016 09:20:05 AM","02/24/2016","01/22/2016 02:54:15 PM","02/24/2016 09:20:05 AM"
"286264672","[email protected]","Backend: Save Simpli.Fi data CSV reports.","303017439","","archive:sprint 10","backend,synchronizer","","","","5","False","","5","","","<p>Description is in the DMP System Design document - <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={A7312801-A29F-4388-9F48-2FD7E52B28DD}&file=DMP%20System%20Design.docx&action=default"">https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={A7312801-A29F-4388-9F48-2FD7E52B28DD}&file=DMP%20System%20Design.docx&action=default</a></p><br/><p> </p><br/><p>Section ""Campaign Performance Report Architecture Flow""</p>","Feature","Normal","407","292360005","292360005","02/24/2016 09:20:12 AM","02/24/2016 09:20:12 AM","02/24/2016","02/03/2016 11:54:50 AM","02/11/2016 07:53:37 PM"
"298188463","[email protected]","Backend: Add CPM, CTR, ECPA, ECPC, TotalSpend to KeywordMetric and KeywordMetricAggregate","303017439","","archive:sprint 10","backend","","","","2","False","","6","","","","Feature","Normal","624","","","02/24/2016 09:20:50 AM","02/24/2016 09:20:50 AM","02/24/2016","02/09/2016 05:26:42 PM","02/24/2016 09:20:25 AM"
"302547690","[email protected]","Backend: Integration tests for Simpli.Fi pipelines","303017439","","archive:sprint 10","backend","","","","0","False","","7","","","","Task","Normal","681","","","02/24/2016 09:20:55 AM","02/24/2016 09:20:55 AM","02/24/2016","02/19/2016 02:12:58 PM","02/20/2016 02:51:33 PM"
"300420329","[email protected]","Backend: Add new UAT configuration keys","303017439","","archive:sprint 10","backend","","","","1","False","","8","","","<p>application.yml </p><br/><pre>spring:<br /> datasource:<br /> testOnBorrow: true<br /> validationQuery: SELECT 1</pre>","Task","Normal","642","","","02/24/2016 09:21:02 AM","02/24/2016 09:21:02 AM","02/24/2016","02/15/2016 12:47:55 PM","02/20/2016 02:51:30 PM"
"300577698","[email protected]","Backend: dev database configuration","303017439","","archive:sprint 10","backend","","","","1","False","","9","","","<p>spring:<br /> datasource:<br /> url: ""jdbc:sqlserver://10.69.6.106:1433;databaseName=MALT_DEV""</p><br/><p> </p><br/><p>Commited in develop branch</p>","Task","Normal","644","","","02/24/2016 09:21:07 AM","02/24/2016 09:21:07 AM","02/24/2016","02/15/2016 08:07:30 PM","02/20/2016 02:51:31 PM"
"302562092","[email protected]","Backend: DMA integration with Simpli.Fi","303017439","","archive:sprint 10","backend","","","","0","False","","10","","","","Feature","Normal","687","","","02/24/2016 09:21:11 AM","02/24/2016 09:21:11 AM","02/24/2016","02/19/2016 02:27:40 PM","02/19/2016 02:38:22 PM"
"297509289","[email protected]","Backend: store Simpli.Fi CSV reports in DataLake","303017439","","archive:sprint 10","backend,synchronizer","","","","5","False","","11","","","","Feature","Normal","606","","","02/24/2016 09:21:16 AM","02/24/2016 09:21:16 AM","02/24/2016","02/08/2016 10:44:41 AM","02/24/2016 09:17:24 AM"
"298635086","[email protected]","Backend: simplify Keywords API URLs","303017439","","archive:sprint 10","backend","","","","2","False","","12","","","<ul><br/><li>GET /malt/v1/keywords/{id}</li><br/><li>POST /malt/v1/keywords/single</li><br/><li>POST /malt/v1/keywords/paste</li><br/><li>POST /malt/v1/keywords/upload - low priority (can be implemented later)</li><br/></ul>","Feature","Normal","629","","","02/24/2016 09:21:21 AM","02/24/2016 09:21:21 AM","02/24/2016","02/10/2016 08:40:11 AM","02/15/2016 10:56:56 AM"
"297541692","[email protected]","Backend: Introduce release/migration checklist documents.","303017439","","archive:sprint 10","backend","","","","3","False","","13","","","","Task","Normal","617","","","02/24/2016 09:21:26 AM","02/24/2016 09:21:26 AM","02/24/2016","02/08/2016 01:40:11 PM","02/15/2016 10:56:43 AM"
"302551753","[email protected]","Backend: AdGroup GeoTargeting: Connect continents and USA geo regions with GeoTargets","303017439","","archive:sprint 10","backend","","","","0","False","","14","","","","Task","Normal","692","","","02/24/2016 09:21:31 AM","02/24/2016 09:21:31 AM","02/24/2016","02/19/2016 02:36:37 PM","02/19/2016 02:38:33 PM"
"302551747","[email protected]","Backend: Pull DMA data","303017439","","archive:sprint 10","backend","","","","0","False","","15","","","<p>1. Pull DMAs from Simpli.Fi</p><br/><p>2. Connect DMAs with geo targets</p>","Task","Normal","688","","","02/24/2016 09:21:36 AM","02/24/2016 09:21:36 AM","02/24/2016","02/19/2016 02:30:40 PM","02/19/2016 02:38:25 PM"
"297535966","[email protected]","Backend: Fix geo targets and DMA with ??? in their names.","303017439","","archive:sprint 10","backend","","","","3","False","","16","","","<p>Fix should be formed as distinct script with new version.</p>","Defect","Normal","616","","","02/24/2016 09:21:41 AM","02/24/2016 09:21:41 AM","02/24/2016","02/08/2016 01:38:56 PM","02/15/2016 10:56:32 AM"
"278598644","[email protected]","WebUI: AdGroup Keywords management","303017439","","archive:sprint 10","webui,sprint 8,sprint 9,sprint 10","","","","5","False","","17","","","","Feature","Normal","327","279516998","279516998","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/11/2016 09:03:43 AM","02/20/2016 11:44:53 AM"
"286541942","[email protected]","WebUI: AdGroup Targeting - Operating System","303017439","","archive:sprint 10","webui,sprint 8,sprint 9,sprint 10","","","","3","False","","18","","","","Feature","Normal","413","279516998","279516998","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/12/2016 02:00:20 PM","02/10/2016 03:33:58 PM"
"286544549","[email protected]","WebUI: AdGroup Targeting - Scheduling","303017439","","archive:sprint 10","webui,sprint 8,sprint 9,sprint 10","","","","5","False","","19","","","","Feature","Normal","414","279516998","279516998","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/12/2016 02:01:18 PM","02/15/2016 08:11:11 PM"
"286550881","[email protected]","WebUI: AdGroup Targeting - Site Contextual","303017439","","archive:sprint 10","webui,sprint 8,sprint 9,sprint 10","","","","5","False","","20","","","","Feature","Normal","415","279516998","279516998","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/12/2016 02:01:39 PM","02/16/2016 10:14:23 AM"
"286556920","[email protected]","WebUI: AdGroup Targeting - Domain","303017439","","archive:sprint 10","webui,sprint 8,sprint 9,sprint 10","","","","5","False","","21","","","","Feature","Normal","411","279516998","279516998","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/12/2016 01:58:34 PM","02/09/2016 04:49:55 PM"
"288815850","[email protected]","WebUI: AdGroup Targeting - Location: GeoTargeting","303017439","","archive:sprint 10","webui,spint 8,sprint 9,sprint 10","","","","5","False","","22","","","","Feature","Normal","448","","","02/24/2016 09:00:09 PM","02/24/2016 09:00:09 PM","02/24/2016","01/18/2016 01:11:39 PM","02/20/2016 11:34:12 AM"
"298155300","","WebUI: New campaign doesn't created","303017439","","archive:sprint 10","webui","","","","0","False","","23","","","<p>Steps to reproduce:</p><br/><p>1. Create a new campaign</p><br/><p>Current result: Profile page of another campaign is opened by default. There isn't such campaign in list</p><br/><p>Expected result: New campaign is created</p><br/><p>http://screencast.com/t/snf6y02LKeQ</p>","Defect","Critical","623","","","02/24/2016 09:00:10 PM","02/24/2016 09:00:10 PM","02/24/2016","02/09/2016 03:52:48 PM","02/10/2016 03:55:37 PM"
"299275478","[email protected]","WebUI: Filters by state and status don't work","303017439","","archive:sprint 10","webui","","","","0","False","","24","","","<p>Steps to reproduce:</p><br/><p>1. Open Advertiser list page</p><br/><p>Current result: There is all list of advertisers </p><br/><p>Expected result: There should be only list with advertisers which have active state</p><br/><p>1a. Choose ""Inactive"" for filter</p><br/><p>Current result: There is all list of advertisers </p><br/><p>Expected result: There should be only list with advertisers which have inactive state</p><br/><p>2. Open campaigns list page <a href=""http://malt-web.dev.multiview.com/advertiser/2/campaigns"">http://malt-web.dev.multiview.com/advertiser/2/campaigns</a> and Choose ""Inactive"" for filter</p><br/><p>Current result: There is all list of campaign </p><br/><p>Expected result: There should be only list with campaign which have inactive state</p><br/><p>3. Open ad group list page <a href=""http://malt-web.dev.multiview.com/advertiser/1/adgroups"">http://malt-web.dev.multiview.com/advertiser/1/adgroups</a> and Choose ""Draft"" for filter</p><br/><p>Current result: There is all list of ad group </p><br/><p>Expected result: There should be only list with ad group which have draft status</p><br/><p>The same sutaition is for domain lists. <a href=""http://malt-web.dev.multiview.com/advertiser-domain-list/1089/settings"">http://malt-web.dev.multiview.com/advertiser-domain-list/1089/settings</a></p><br/><p> </p>","Defect","High","635","","","02/24/2016 09:00:10 PM","02/24/2016 09:00:10 PM","02/24/2016","02/11/2016 05:09:32 PM","02/12/2016 11:02:21 AM"
"299797748","[email protected]","WebUI: Ad Group Targeting Site Contextual popup","303017439","","archive:sprint 10","webui","","","","1","False","","25","","","<p>Make scrolling not to be refreshing after selecting/deselecting of category</p><br/><p>Steps to reproduce:</p><br/><p>1. Open pooup</p><br/><p>2. Scroll down</p><br/><p>2. Select/deselect parameter in the botton</p><br/><p>Current result: There is refreshing of scrolling up <a href=""http://screencast.com/t/9BOBqyyp"">http://screencast.com/t/9BOBqyyp</a></p><br/><p>Expected result: <span>There in'ts refreshing of scrolling up as for right side http://screencast.com/t/fsej2V47f</span></p>","Improvement","Normal","637","","","02/24/2016 09:00:10 PM","02/24/2016 09:00:10 PM","02/24/2016","02/12/2016 04:51:31 PM","02/15/2016 03:14:41 PM"
"253812773","","Prepare test cases on the base of the wireframes","303017439","","archive:sprint 10","","","","","0","False","","26","10/05/2015","10/13/2015","","Task","Normal","","","","02/25/2016 04:24:52 PM","02/25/2016 04:24:52 PM","02/25/2016","10/07/2015 05:14:40 PM","10/13/2015 04:37:17 PM"
"256062970","","Reviewing test cases on the base of the new version of the wireframes","303017439","","archive:sprint 10","","","","","0","False","","27","10/14/2015","","","Task","Normal","58","","","02/25/2016 04:25:01 PM","02/25/2016 04:25:01 PM","02/25/2016","10/14/2015 11:42:18 AM","10/28/2015 10:59:54 AM"
"276934207","[email protected]","Explore how to create ""page objects"" for tests","303017439","","archive:sprint 10","","","","","0","False","","28","","","","Other Work","Normal","293","","","02/25/2016 04:25:10 PM","02/25/2016 04:25:10 PM","02/25/2016","12/17/2015 12:30:22 PM","12/17/2015 12:30:28 PM"
"257670602","","Prepare information for document ""specification""","303017439","","archive:sprint 10","","","","","0","False","","29","","","","Task","Normal","137","","","02/25/2016 04:25:18 PM","02/25/2016 04:25:18 PM","02/25/2016","10/19/2015 03:37:24 PM","01/14/2016 05:36:11 PM"
"292867054","","WebUI: Improve popup Device Type on Ad Group targeting sub page","303017439","","archive:sprint 10","webui","","","","0","False","","30","","","<p>Steps to reproduce:</p><br/><p>1. opem Ad Group targeting sub page</p><br/><p><a href=""http://malt-web.dev.multiview.com/adgroup/21/targeting"">http://malt-web.dev.multiview.com/adgroup/21/targeting</a></p><br/><p>2. Open Device type popup</p><br/><p>3. off all divice types and save. <span> There is value ""all"" for this parameter on the page. </span></p><br/><p><span>4. <span>Open Device type popup one more time</span></span></p><br/><p>Current result. The all dice type have status as ""off"", but this is anexpected for user.</p><br/><p>Expected result: The user see on page value ""all"" and popup should shown the same information.</p><br/><p> </p>","Improvement","Low","521","","","03/09/2016 09:13:47 PM","03/09/2016 09:13:47 PM","03/09/2016","02/25/2016 10:27:21 AM","02/25/2016 10:27:21 AM"
"304451575","[email protected]","Complete Development on the Invoice Subpage","306848626","","archive:sprint 11","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=90&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","0","","","<p>Issue 90 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=90&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Complete Development on the Invoice Subpage</a></p>","UAT Feedback","Critical","725","304199961","304199961","03/01/2016 06:14:50 PM","03/01/2016 06:14:50 PM","03/01/2016","02/24/2016 06:48:17 PM","03/01/2016 11:33:05 AM"
"304967011","[email protected]","Advertiser Profile Page: QuickView - Change ""Account Manager"" to be ""Owner""","306848626","","archive:sprint 11","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=45&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","1","","","<p>Issue 45 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=45&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">QuickView - Change ""Account Manager"" to be ""Owner""</a></p>","UAT Feedback","High","750","","","03/01/2016 06:14:53 PM","03/09/2016 05:05:08 PM","03/01/2016","02/08/2016 12:27:45 PM","03/01/2016 11:33:25 AM"
"304966123","[email protected]","Advertiser Profile Page: QuickView - Change Service Tier to Service Level","306848626","","archive:sprint 11","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=43&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","2","","","<p>Issue 43 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=43&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">QuickView - Change Service Tier to Service Level</a></p>","UAT Feedback","High","748","","","03/01/2016 06:14:55 PM","03/09/2016 05:05:17 PM","03/01/2016","02/08/2016 12:27:45 PM","03/01/2016 11:33:16 AM"
"307415892","[email protected]","BackEnd: Creation of new keyword","306848626","","archive:sprint 11","backend","","","","1","False","","3","","","<p>Bid parameter should be reset. If the user entered a new bid amount when trying to create it again, the value should be equal to their entry. Otherwise, it would be reset back to default.</p>","Improvement","High","801","","","03/09/2016 08:46:06 AM","03/17/2016 12:31:39 PM","03/09/2016","03/02/2016 11:25:17 AM","03/02/2016 03:53:19 PM"
"306252035","[email protected]","Backend: 3rd party segment tags endpoint should accept raw name.","306848626","","archive:sprint 11","backend","","","","2","False","","4","","","","Feature","High","771","","","03/09/2016 08:46:23 AM","03/09/2016 08:46:23 AM","03/09/2016","02/29/2016 11:28:18 AM","02/29/2016 01:02:50 PM"
"306904903","[email protected];[email protected]","Backend: AdGroup update method should accept all location targeting types together and locationType/locationTypeId should be taken from update request.","306848626","","archive:sprint 11","backend","","","","2","False","","5","","","","Improvement","Normal","793","","","03/09/2016 08:46:40 AM","03/09/2016 08:46:40 AM","03/09/2016","03/01/2016 03:34:19 PM","03/01/2016 10:52:09 PM"
"306238449","[email protected]","Backend: extract all data from invoice-related tables from UAT malt database as sql scripts for migration.","306848626","","archive:sprint 11","backend","","","","2","False","","6","","","","Feature","High","772","","","03/09/2016 08:46:52 AM","03/09/2016 08:46:52 AM","03/09/2016","02/29/2016 11:49:18 AM","03/01/2016 11:59:51 AM"
"307415873","","Backend: If the user entered a new bid amount when trying to create it again, the value should be equal to their entry.","306848626","","archive:sprint 11","backend","","","","2","False","","7","","","","Improvement","Normal","800","","","03/09/2016 08:47:01 AM","03/09/2016 08:47:01 AM","03/09/2016","03/02/2016 10:24:53 AM","03/02/2016 11:26:09 AM"
"286189175","[email protected]","Backend: AdGroup IP Targeting","306848626","","archive:sprint 11","backend,phase-2","","","","3","False","","8","","","","Feature","Normal","405","306969234","306969234","03/09/2016 08:47:10 AM","03/09/2016 08:47:10 AM","03/09/2016","02/24/2016 09:22:14 AM","03/09/2016 08:45:27 AM"
"304430094","[email protected]","Backend: Change 3Rd Party Tags design and logic","306848626","","archive:sprint 11","backend","","","","2","False","","9","","","<p>- Delete MV_AdGroupToAdvertiserThirdPartySegmentTag table</p><br/><p>- Add IsAllowMatching and IsSecure fields in <span>MV_AdvertiserThirdPartySegmentTag and </span>MV_AdGroupPartySegmentTag</p><br/><p><span>- Add IsShared to <span>MV_AdGroupPartySegmentTag</span></span></p><br/><p><span>- Add MV_ThirdPartySegmentTagStats table</span></p><br/><p><span>- Remove LastSeen and Users from <span>MV_AdvertiserThirdPartySegmentTag and </span><span>MV_AdGroupPartySegmentTag</span></span></p>","Task","Normal","722","","","03/09/2016 08:47:18 AM","03/17/2016 12:31:22 PM","03/09/2016","02/24/2016 04:18:51 PM","02/29/2016 10:30:55 AM"
"307428947","[email protected]","BackEnd: Add field idld 'recency' on GeoFencing tab","306848626","","archive:sprint 11","backend","","","","2","False","Frontend made this and i cat test","10","","","<ul><br/><li><span>Do you need field 'recency' (</span><a href=""http://screencast.com/t/DNBMsPny"" target=""_blank""><span>http://screencast.com/t/DNBMsPny</span></a><span>) on GeoFencing tab of Location popup? If yes, what does it mean?</span></li><br/></ul><br/><p><span><span style=""color: #007f00;""><span style=""font-family: Calibri, sans-serif;""><span>We are </span><span>mimickingSimpli.fi’s UI on this one. They have that field so we will need to populate it with the same options that they provide and thus, pass that value over to them. See attached screenshot for example.</span></span></span></span></p><br/><p><a href=""http://screencast.com/t/hHUqx3ZwFTSB"">http://screencast.com/t/hHUqx3ZwFTSB</a> </p>","Improvement","High","818","","","03/09/2016 08:47:30 AM","03/17/2016 12:32:00 PM","03/09/2016","03/02/2016 11:25:19 AM","03/03/2016 07:17:16 PM"
"297533239","[email protected]","WebUI: AdGroup subpages - 3rd Party Segment Tags - Ad Group Level","306848626","","archive:sprint 11","webui,sprint 10,sprint 11","","","","5","False","","11","","","","Feature","Normal","610","279516998","279516998","03/09/2016 09:13:22 PM","03/09/2016 09:13:22 PM","03/09/2016","02/08/2016 12:45:23 PM","03/03/2016 07:22:56 PM"
"306252076","[email protected]","WebUI: Make location popup to be shown from header","306848626","","archive:sprint 11","webui","","","","1","False","","12","","","<p>Steps to reproduce: <a href=""http://malt-web.dev.multiview.com/adgroup/2010/targeting#fencing"">http://malt-web.dev.multiview.com/adgroup/2010/targeting#fencing</a></p><br/><p>1. Open Location popup </p><br/><p>2. Chose GeoFencing</p><br/><p>Current result: When user clicks on radio button than popup is shown from header. When user clicks on the title of tab - than tab is shown from footer</p><br/><p>Expected result: The popup is shown from header when user click on radio buttons or titles of tabs</p>","Defect","Normal","774","","","03/09/2016 09:13:30 PM","03/09/2016 09:13:30 PM","03/09/2016","02/29/2016 12:42:14 PM","03/04/2016 09:51:43 AM"
"306377808","[email protected]","WebUI: Implement permissions checks for 3rd Party Segment Tags","306848626","","archive:sprint 11","webui","","","","2","False","I can test this card","13","","","","Defect","High","787","","","03/09/2016 09:13:38 PM","03/09/2016 09:13:38 PM","03/09/2016","02/29/2016 06:54:24 PM","03/03/2016 07:31:28 PM"
"292776931","[email protected]","WebUI: AdGroup subpages - 3rd Party Segment Tags - Advertiser Level","306848626","","archive:sprint 11","webui,sprint 10,sprint 11","","","","3","False","","14","","","","Feature","Normal","519","279516998","279516998","03/09/2016 09:13:59 PM","03/09/2016 09:13:59 PM","03/09/2016","02/08/2016 12:24:06 PM","03/03/2016 07:07:31 PM"
"288282082","[email protected]","WebUI: Change default sorting of tables according to USs","306848626","","archive:sprint 11","webui","","","","2","False","","15","","","<p>steps to reproduce:</p><br/><p>1. Click on the title of one column 3 times</p><br/><p>Current result: There is a sorting by ID</p><br/><p>Expected result: There is a sorting by default according to USs</p><br/><p>for Advertisers list - <span data-mce-mark=""1"">c. default sort is by Advertiser Name Ascending (should be corrected)</span></p><br/><p>for Campaign List - <span data-mce-mark=""1"">c. default sort is by Campaign ID Ascending (this is ok)</span></p><br/><p>for domain list - multiview and advertiser level - <span>c. default sort is by Domain List Name Ascending (should be corrected)</span></p><br/><p>for ad groups- <span>c. default sort is by Ad Group ID Ascending (this is ok)</span></p><br/><p> </p>","Defect","High","446","","","03/09/2016 09:14:59 PM","03/09/2016 09:14:59 PM","03/09/2016","03/01/2016 04:28:34 PM","03/03/2016 04:40:52 PM"
"287653453","[email protected]","WebUI:Make focus is set by default on search field, so that a user can start typing domain list name for search","306848626","","archive:sprint 11","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={6D035BD8-4777-4A43-9E08-D608B046B813}&file=MALT%20User%20Stories%20-%20Advertiser%20Domain%20List%20List%20View.docx&action=default","","","2","False","","16","","","<p>steps to reproduce:</p><br/><p>1. Open domain list of advertiser page/domain list page/advertisers list page/advertiser ad group page/campaigns page/campaign ad group page</p><br/><p>2. Start to typing</p><br/><p>Current result: Nothing happens</p><br/><p>Expected result: focus is set by default on search field, so that a user can start typing entity name for search according to US</p>","Defect","Normal","438","","","03/09/2016 09:15:10 PM","03/09/2016 09:15:10 PM","03/09/2016","03/01/2016 04:27:59 PM","03/03/2016 04:31:12 PM"
"302532472","[email protected]","Webui: Remove not usable models: Creative, CreativeStats, Audience, Segment","306848626","","archive:sprint 11","webui","","","","1","False","","17","","","","Improvement","Normal","677","","","03/09/2016 09:15:24 PM","03/09/2016 09:15:24 PM","03/09/2016","02/27/2016 01:53:59 AM","02/27/2016 01:54:02 AM"
"293432275","[email protected]","WebUI: Remove delimiter order from ID numbers","306848626","","archive:sprint 11","webui","","","","1","False","","18","","","<p>Steps to reproduce:</p><br/><p>1. Open Campaign Settings page <a href=""http://malt-web.dev.multiview.com/campaign/2051/settings"">http://malt-web.dev.multiview.com/campaign/2051/settings</a></p><br/><p>2. Look at the page</p><br/><p>Current result: There is ID number with delimeter order in the central part of the page <a href=""http://screencast.com/t/kE4LqFocf"">http://screencast.com/t/kE4LqFocf</a></p><br/><p>Expected result: There isn't delimeter order in Id numbers anywhere.</p>","Defect","High","524","","","03/09/2016 09:15:36 PM","03/09/2016 09:15:36 PM","03/09/2016","02/08/2016 12:31:58 PM","02/26/2016 12:03:58 PM"
"302562102","[email protected]","WebUI: AdGroup GeoTargeting: show confirmation popup when user tries to close popup","306848626","","archive:sprint 11","webui","","","","2","False","","19","","","<p>Close and cancel button should close popup. If user click on the button ""yes""/""no"" on coformation popup, which appear after clicking on button close/cancel, should close popup</p>","Defect","Normal","691","","","03/09/2016 09:15:45 PM","03/09/2016 09:15:45 PM","03/09/2016","02/19/2016 02:32:29 PM","02/26/2016 02:37:25 PM"
"296415330","[email protected]","WebUI: Correct error message for campaign popups","306848626","","archive:sprint 11","webui","","","","1","False","","20","","","<p>Steps to reproduce:</p><br/><p>1. Open create campaign popup</p><br/><p>2. Input o/-15 in to fields Impression Cap (Lifetime), Budget Cap (Lifetime) and click button save</p><br/><p>Current result: There are incorrect error message</p><br/><p>Expected result: There are correct error messages. </p><br/><p><a href=""http://screencast.com/t/QfCUqysGzW"">http://screencast.com/t/QfCUqysGzW</a></p><br/><p>Change error message for Name to the ""Campaign <span>Name cannot be blank."", for <span>Budget Cap to the ""Budget Cap<span> must be no less than 1.""</span></span></span></p>","Defect","Normal","595","","","03/09/2016 09:15:56 PM","03/09/2016 09:15:56 PM","03/09/2016","02/11/2016 02:58:40 AM","02/26/2016 11:52:39 AM"
"290489103","[email protected]","WebUI: Make the overview subpage be opened after creation of the campaign and advertiser","306848626","","archive:sprint 11","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7BF6588573-6FC7-4AF3-A0FD-5B82FEC1F29F%7D&file=MALT%20User%20Stories%20-%20Campaign%20Create.docx&action=default","","","1","False","","21","","","<p>Steps to reproduce:</p><br/><p>1. Open Advertiser's campaigns list subpage</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/1/campaigns"">http://malt-web.dev.multiview.com/advertiser/1/campaigns</a></p><br/><p>2. Click on button 'New'</p><br/><p>3, Filled all required fields and click on button ""Save""</p><br/><p>Current result: Campaign settings subpage is opened</p><br/><p>Expected result: Campign overview subpage is opened according to US</p>","Defect","High","483","","","03/09/2016 09:16:04 PM","03/09/2016 09:16:04 PM","03/09/2016","02/08/2016 12:31:25 PM","02/26/2016 12:01:48 PM"
"301477410","[email protected]","WebUI: AdGroup Targeting: DayParting - Change selection behavior","306848626","","archive:sprint 11","webui","","","","3","False","","22","","","<div>Matt Hunter: the preferred results would be:</div><br/><ul><br/><li>All blocks should be either red (inactive) or green (active). There should not be any blocks lacking one of these two colors because they are either active or they aren’t.</li><br/><li>When user highlights over a group of red blocks, they will be activated (turned green)</li><br/><li>When user highlights over a group of green blocks, they will be deactivated (turned red)</li><br/><li>When user highlights over a group containing some green and some red blocks, they will turn green. Active is assumed default.</li><br/><li>There should not be a need for the CMD/Ctrl keys because nothing should change except the blocks that are selected.</li><br/></ul><br/><div>If possible, it has been brought to my attention that some people may be color blind as well. Can we please put the text “Off” centered in the block when colorless and “On” centered in the block when green? Would want this font-weight to be “lighter” so that it doesn’t blur up the page too much.</div><br/><div> </div><br/><div>Part of the reason I am doing it this way is to prepare for the next stage when we add on the Trade Desk Ad Groups. For Trade Desk, they allow the users to put a weight against each of the hour blocks and these requirements fit into my vision on how that will work as well. For those ad groups, it won’t just be on or off but those requirements are still being developed for future development.</div>","Improvement","Normal","651","","","03/09/2016 09:16:34 PM","03/09/2016 09:16:34 PM","03/09/2016","02/17/2016 01:17:29 PM","02/25/2016 05:21:41 PM"
"307441277","[email protected]","WebUI: Add field ""recently"" on GeoFencing tab","306848626","","archive:sprint 11","webui","","","","0","False","","23","","","<ul><br/><li>Do you need field 'recency' (<a href=""http://screencast.com/t/DNBMsPny"" target=""_blank"">http://screencast.com/t/DNBMsPny</a>) on GeoFencing tab of Location popup? If yes, what does it mean?</li><br/></ul><br/><p><span><span>We are mimickingSimpli.fi’s UI on this one. They have that field so we will need to populate it with the same options that they provide and thus, pass that value over to them. See attached screenshot for example.</span></span></p>","Improvement","High","827","","","03/09/2016 09:16:54 PM","03/09/2016 09:16:54 PM","03/09/2016","03/02/2016 04:21:40 PM","03/03/2016 07:17:43 PM"
"302970217","[email protected]","WebUI: Make changing of the state of one domain to reload page","306848626","","archive:sprint 11","webui","","","","2","False","","24","","","<p>Steps to reproduce:</p><br/><p>1. Opem domain profile page <a href=""http://malt-web.dev.multiview.com/global-domain-list/10/settings"">http://malt-web.dev.multiview.com/global-domain-list/10/settings</a></p><br/><p>2. Change state for one domain</p><br/><p>Current result: The page isn't reloaded and there is domain with state ""inactive"" in the table with filter ""active""</p><br/><p>Expected result: The page is reloaded and there are only domains with state ""active"" as in the filter</p><br/><p>http://screencast.com/t/gd4GUJlQEj</p>","Defect","High","706","","","03/09/2016 09:18:03 PM","03/09/2016 09:18:03 PM","03/09/2016","03/01/2016 04:24:06 PM","03/02/2016 03:12:00 PM"
"301082752","[email protected]","WebUI: Keyword Ajust filter button","306848626","","archive:sprint 11","webui","","","","3","False","","25","","","","Improvement","Normal","648","","","03/09/2016 09:18:27 PM","03/09/2016 09:18:27 PM","03/09/2016","02/16/2016 07:58:27 PM","02/25/2016 05:16:28 PM"
"286548305","[email protected]","WebUI: AdGroup Targeting - Location: GeoFencing","306848626","","archive:sprint 11","webui,sprint 8,sprint 9,sprint 10,sprint 11","","","","5","False","","26","","","","Feature","Normal","412","279516998","279516998","03/09/2016 09:19:53 PM","03/09/2016 09:19:53 PM","03/09/2016","01/12/2016 01:59:14 PM","02/29/2016 11:16:19 AM"
"288835687","[email protected]","WebUI: AdGroups related to DomainLists should be searchable by AdvertiserName and AdvertiserId","306848626","","archive:sprint 11","webui","","","","2","False","","27","","","","Defect","High","449","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","02/08/2016 12:32:02 PM","03/01/2016 03:04:33 PM"
"289359665","[email protected]","WebUI: Get rid of models which are used only for many-to-many relation between AdGroup and other entities","306848626","","archive:sprint 11","webui","","","","1","False","","28","","","","Improvement","Normal","464","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","02/27/2016 01:54:49 AM","02/27/2016 11:34:09 PM"
"294516145","[email protected]","WebUI: Create server for automated tests","306848626","","archive:sprint 11","webui","","","","0","False","","29","","","","Task","High","530","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","02/01/2016 12:46:55 PM","02/25/2016 07:54:51 PM"
"296304962","[email protected]","WebUI: Make a redesign for pages","306848626","","archive:sprint 11","webui","","","","1","False","","30","","","<p>Steps to reproduce:</p><br/><p>1. Open Domain list page Advertiser level</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser/2144/domain-lists"">http://malt-web.dev.multiview.com/advertiser/2144/domain-lists</a></p><br/><p>Make a redisign for the header on the page</p><br/><p>2. Open Domain list profile page Advertiser level</p><br/><p><a href=""http://malt-web.dev.multiview.com/advertiser-domain-list/1048/settings"">http://malt-web.dev.multiview.com/advertiser-domain-list/1048/settings</a></p><br/><p>Make a redisign for the header on the page</p><br/><p>3. Open Domain list profile page Multiview level</p><br/><p><a href=""http://malt-web.dev.multiview.com/global-domain-list/5/settings"">http://malt-web.dev.multiview.com/global-domain-list/5/settings</a></p><br/><p>Make a redisign for the header on the page</p>","Defect","Critical","549","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","02/08/2016 12:30:48 PM","02/29/2016 06:48:55 PM"
"302112082","[email protected]","WebUI: Make a page be refreshed after adding of new keyword","306848626","","archive:sprint 11","webui","","","","3","False","","31","","","<p>Steps to reproduce:</p><br/><p>1. Open ""add new keyword"" popup</p><br/><p>2. Add new keyword</p><br/><p>Current result: The keyword has been added to table but value of parameter "" <span>Total Keywords"" hasn't been changed</span></p><br/><p>Expected result: The keyword has been added to table and value of parameter "" Total Keywords"" hasn been changed according to US ""*** The keyword totals and statistics will be updated to include the newly added keyword.""</p><br/><div class=""panel-body""> </div>","Improvement","Normal","675","279516998","279516998","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","01/11/2016 09:03:43 AM","02/29/2016 10:36:35 AM"
"306254139","[email protected]","WebUI: Location popup - Make that confirmation message about changes to be shown only if changes has been done","306848626","","archive:sprint 11","webui","","","","0","False","","32","","","<p>Steps to reproduce: </p><br/><p>1. Open Targeting page <a href=""http://malt-web.dev.multiview.com/adgroup/2010/targeting"">http://malt-web.dev.multiview.com/adgroup/2010/targeting</a></p><br/><p>2. Open Location popup</p><br/><p>3. Click on button cancel/close</p><br/><p>Current result: there is conformatiom message </p><br/><p>Expected result; Conformation message should be shown only if some changes have been made</p><br/><p>It is actual only when tab GeoFencing is chosen before opening of popup </p>","Defect","Critical","773","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","02/29/2016 11:57:43 AM","02/29/2016 05:24:34 PM"
"310539590","[email protected]","Backen: add validation on geo fence coordinates","306848626","","archive:sprint 11","backend","","","","2","False","","33","","","","Improvement","Normal","884","","","03/09/2016 09:19:54 PM","03/09/2016 09:19:54 PM","03/09/2016","03/09/2016 03:20:15 PM","03/09/2016 03:48:59 PM"
"313544662","","WebUI: sorting desc doesn't work ","313928380","","archive:sprint 12","webui","","","","1","False","","0","","","<p>To reproduce:</p><br/><ol><br/><li>Go to adertiser list </li><br/><li>Click header for a ""Adgroup"" column</li><br/><li>Click header for a ""Adgroup"" column again</li><br/></ol><br/><p><strong>Actual result:</strong> notheng happens</p><br/><p><strong>Expected result:</strong> sorting is chaned to desc</p>","Defect","High","941","","","03/17/2016 11:37:53 AM","03/17/2016 01:05:37 PM","03/17/2016","03/16/2016 06:46:58 PM","03/16/2016 07:17:27 PM"
"312878933","[email protected];[email protected]","WebUI: Function save doesn't work for all popup an targeting sub page for several ad groups","313928380","","archive:sprint 12","webui","","","","1","False","","1","","","<p><strong>steps to reproduce:</strong></p><br/><p>1. open page <a href=""http://malt-web.dev.multiview.com/adgroup/2040/targeting"">http://malt-web.dev.multiview.com/adgroup/2040/targeting</a> </p><br/><p> <a href=""http://malt-web.dev.multiview.com/adgroup/2033/targeting"">http://malt-web.dev.multiview.com/adgroup/2033/targeting</a> <a href=""http://malt-web.dev.multiview.com/adgroup/2060/targeting"">http://malt-web.dev.multiview.com/adgroup/2060/targeting</a> </p><br/><p>2. Open one popup</p><br/><p>3. make some changes</p><br/><p>4. try to save</p><br/><p><strong>Current result:</strong> Changes haven't been saved</p><br/><p><strong>Expected result:</strong> Changes have been saved</p>","Defect","High","930","","","03/17/2016 11:38:04 AM","03/17/2016 11:38:04 AM","03/17/2016","03/15/2016 03:41:11 PM","03/15/2016 05:37:54 PM"
"311573059","[email protected];[email protected]","WebUI: Implement PrettyStatusFilter for related adgroups of global domain lists and advertiser domain lists","313928380","","archive:sprint 12","webui","","","","2","False","","2","","","","Task","Normal","892","","","03/17/2016 11:38:17 AM","03/17/2016 11:38:17 AM","03/17/2016","03/11/2016 09:34:12 AM","03/15/2016 05:35:55 PM"
"312317972","[email protected];[email protected]","WebUI: GeoFencing","313928380","","archive:sprint 12","webui","","","","2","False","","3","","","","Defect","Critical","921","","","03/17/2016 11:38:26 AM","03/17/2016 11:38:26 AM","03/17/2016","03/15/2016 04:10:00 PM","03/16/2016 02:47:56 PM"
"310459900","[email protected];[email protected]","WebUI: 500 error at device targeting saving ","313928380","","archive:sprint 12","webui","","","","1","False","","4","","","<p><strong>URL: </strong><a href=""http://malt.dmp.uat.multiview.com/adgroup/3/targeting"">http://malt.dmp.uat.multiview.com/adgroup/3/targeting</a> </p><br/><p><strong>See more:</strong> <a href=""http://screencast.com/t/bwvd623gVl7I"">http://screencast.com/t/bwvd623gVl7I</a></p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>go to adgroup page</li><br/><li>click edit for Device targeting</li><br/><li>Change something</li><br/><li>Open console</li><br/><li>Click Save</li><br/></ol><br/><p><strong>Acuel result:</strong> 500 error (<span>See atach</span>) and error ""Uncaught TypeError: Cannot read property 'bind' of undefined"", not saving device targeting state</p><br/><p><strong>Expected result: </strong>no errors in console, correct saving</p>","Defect","High","881","","","03/17/2016 11:38:40 AM","03/17/2016 11:38:40 AM","03/17/2016","03/09/2016 10:55:04 AM","03/15/2016 12:03:56 PM"
"311626654","[email protected];[email protected];[email protected]","WebUI: not stable work of DayParting table","313928380","","archive:sprint 12","webui","","","","2","False","","5","","","<p><strong>See video:</strong> http://screencast.com/t/0re50vBhy</p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Set off for all cells in line</li><br/><li>try click on the left cell</li><br/></ol><br/><p><strong>Actual result:</strong> nothing happens</p><br/><p><strong>Expected result:</strong> change the cell stat<strong>us</strong></p><br/><p><strong>Note:</strong> can't exactly say which steps to reproduce, need to investigate. Doesn't metter which browser you use.</p>","Defect","Normal","898","","","03/17/2016 11:38:49 AM","03/17/2016 11:38:49 AM","03/17/2016","03/11/2016 02:49:57 PM","03/15/2016 02:32:57 PM"
"311676477","[email protected];[email protected]","WebUI: Return values of account # and advertiser name to the table","313928380","","archive:sprint 12","webui","","","","2","False","","6","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. open page <a href=""http://malt-web.dev.multiview.com/advertiser-domain-list/1016/settings"">http://malt-web.dev.multiview.com/advertiser-domain-list/1016/settings</a> or <a href=""http://malt-web.dev.multiview.com/global-domain-list/1056/settings"">http://malt-web.dev.multiview.com/global-domain-list/1056/settings</a></p><br/><p>2. Open tab - ad groups</p><br/><p><strong>Curret result:</strong> There is table without data about account number and advertiser name</p><br/><p><strong>Expected result:</strong> there is information about account numbers and advertisers names</p>","Defect","High","910","","","03/17/2016 11:38:57 AM","03/17/2016 11:38:57 AM","03/17/2016","03/11/2016 06:14:02 PM","03/16/2016 10:46:50 AM"
"307441276","[email protected]","Backend: update logback configuration file used for deployment","313928380","","archive:sprint 12","backend","","","","2","False","","7","","","<ul><br/><li>Currently we are deploying logging.xml file, but application expectes that it would be logback.xml</li><br/><li>Update logback.xml contents according to current develop revision</li><br/></ul>","Defect","Normal","826","","","03/21/2016 03:49:42 PM","03/21/2016 03:49:42 PM","03/21/2016","03/02/2016 11:28:52 AM","03/09/2016 03:48:53 PM"
"311014542","[email protected]","BackEnd: Make deactivation of parent entity to move all child ad groups to an ended status","313928380","","archive:sprint 12","backend","","","","1","False","","8","","","<p>Steps to reproduce:</p><br/><p>1. Open advertiser settings page <a href=""http://malt-web.dev.multiview.com/advertiser/2237/settings"">http://malt-web.dev.multiview.com/advertiser/2237/settings</a> . This advertiser has one active campaign(<a class=""link-Name"" href=""http://malt-web.dev.multiview.com/campaign/2203/overview"">New Campaign</a>) and one active ad group (<a class=""link-Name"" href=""http://malt-web.dev.multiview.com/adgroup/2041/overview"">Class45</a>)</p><br/><p>2. Change state of this advertiser to an inactive</p><br/><p>Current result: The state of campaign has been changed on inactive and the status of ad group has been changed on paused</p><br/><p>Expected result: The state of campaign has been changed on inactive and the status of ad group has been changed on ended</p><br/><p>The same sutiation should be actual for campaign level</p>","Defect","Normal","885","","","03/21/2016 03:49:52 PM","03/21/2016 03:49:52 PM","03/21/2016","03/10/2016 10:50:43 AM","03/10/2016 12:28:10 PM"
"302553565","[email protected]","Backend: Optimize tests","313928380","","archive:sprint 12","backend","","","","3","False","","9","","","<p>Make tests faster</p>","Task","Normal","686","","","03/21/2016 03:50:10 PM","03/21/2016 03:50:10 PM","03/21/2016","02/19/2016 02:24:40 PM","02/24/2016 04:18:58 PM"
"307450758","[email protected]","Backend: Investigate differences between Simpli.Fi and TradeDesk REST APIs for dayparting functionality.","313928380","","archive:sprint 12","backend","","","","5","False","","10","","","","Task","Normal","867","","","03/21/2016 03:50:20 PM","03/21/2016 03:50:20 PM","03/21/2016","03/02/2016 02:20:28 PM","03/15/2016 06:40:53 PM"
"312987568","[email protected];[email protected]","Backend: use BigDecimal for all currency fields","313928380","","archive:sprint 12","backend","","","","3","False","","11","","","","Improvement","Normal","936","","","03/21/2016 03:50:30 PM","03/21/2016 03:50:30 PM","03/21/2016","03/15/2016 06:42:56 PM","03/17/2016 06:15:10 PM"
"310465056","[email protected]","Backend: Investigate and fix issue with Simpli.Fi integration tests using wiremock.","313928380","","archive:sprint 12","backend","","","","3","False","","12","","","","Defect","Normal","882","","","03/21/2016 03:50:47 PM","03/21/2016 03:50:47 PM","03/21/2016","03/09/2016 10:57:26 AM","03/10/2016 03:21:55 PM"
"312920930","[email protected]","Backend: Ad Group - Targeting - Postal Codes. Filter country's postal codes, if that country selected.","313928380","","archive:sprint 12","backend","","","","2","False","","13","","","<p>Geo targets Select either an entire country or postal codes in that country, but not both</p>","Task","Normal","934","","","03/21/2016 03:51:01 PM","03/21/2016 03:51:01 PM","03/21/2016","03/15/2016 03:08:20 PM","03/18/2016 11:59:18 AM"
"311141228","[email protected]","Backend: update dev/uat application configuration in deployment scripts","313928380","","archive:sprint 12","backend","","","","1","False","","14","","","<p>Pull request - https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend/pull-requests/8/update-applicationyml-template-leankit-891/diff</p><br/><p> </p><br/><p> </p><br/><p>According to this</p><br/><p>https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend/src/ad3484d1a7bb3f16b9431bfc866ec6d5e92f4a36/campaign-management-api/src/main/resources/application.yml?at=develop&fileviewer=file-view-default</p>","Task","Normal","891","","","03/21/2016 03:51:10 PM","03/21/2016 03:51:10 PM","03/21/2016","03/10/2016 05:42:51 PM","03/11/2016 09:47:42 AM"
"307437880","[email protected];[email protected]","Ad Group Targeting Subpage - Display: Site Contextual - Label Change","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=165&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","15","","","<p>Issue 165 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=165&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Site Contextual - Label Change</a></p>","UAT Feedback","Normal","864","","","03/22/2016 11:11:00 AM","03/22/2016 11:11:00 AM","03/22/2016","03/10/2016 05:32:29 PM","03/22/2016 11:11:00 AM"
"307443301","[email protected];[email protected]","Ad Group Targeting Subpage - Display: Operating Systems - Clean Up Display","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=162&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","16","","","<p>Issue 162 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=162&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Operating Systems - Clean Up Display</a></p>","UAT Feedback","Normal","863","","","03/22/2016 11:14:44 AM","03/22/2016 11:14:44 AM","03/22/2016","03/04/2016 09:42:32 AM","03/22/2016 11:14:44 AM"
"307441695","[email protected];[email protected]","Ad Group Targeting Subpage - Multiple Edit Forms: Style Clean Up Issues","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=157&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","17","","","<p>Issue 157 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=157&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Style Clean Up Issues</a></p>","UAT Feedback","Normal","860","","","03/22/2016 11:17:30 AM","03/22/2016 11:17:30 AM","03/22/2016","03/03/2016 12:09:04 PM","03/22/2016 11:17:30 AM"
"307436315","[email protected];[email protected]","Ad Group Profile Page - Settings: Display - Auto Adjust Value Change","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=136&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","18","","","<p>Issue 136 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=136&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Display - Auto Adjust Value Change</a></p>","UAT Feedback","Normal","841","","","03/22/2016 11:18:44 AM","03/22/2016 11:18:44 AM","03/22/2016","03/10/2016 05:27:33 PM","03/22/2016 11:18:44 AM"
"307441685","[email protected];[email protected]","Ad Group Create Wizard: Summary Step - Auto Adjust Value Change","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=135&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","19","","","<p>Issue 135 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=135&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Summary Step - Auto Adjust Value Change</a></p>","UAT Feedback","Normal","840","","","03/22/2016 11:19:28 AM","03/22/2016 11:19:28 AM","03/22/2016","03/10/2016 05:27:11 PM","03/22/2016 11:19:28 AM"
"307438706","[email protected]","Ad Group Profile Page - Settings : Edit Budget Form - Change Spend and Impression field labels ","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=144&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","20","","","<p>Issue 144 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=144&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Change Spend and Impression field labels</a></p>","UAT Feedback","Normal","849","","","03/22/2016 11:20:21 AM","03/22/2016 11:20:21 AM","03/22/2016","03/04/2016 03:31:49 PM","03/22/2016 11:20:21 AM"
"307435256","","Ad Group Profile Page - Settings : Edit Budget Form - Remove column titles","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=142&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","21","","","<p>Issue 142 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=142&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Remove column titles</a></p>","UAT Feedback","Normal","847","","","03/22/2016 11:20:49 AM","03/22/2016 11:20:49 AM","03/22/2016","03/10/2016 01:03:55 PM","03/22/2016 11:20:49 AM"
"307436301","[email protected]","Ad Group Create Wizard: Budget Step - Remove column titles","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=114&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","22","","","<p>Issue 114 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=114&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Remove column titles</a></p>","UAT Feedback","Normal","821","","","03/22/2016 11:21:38 AM","03/22/2016 11:21:38 AM","03/22/2016","03/04/2016 03:26:26 PM","03/22/2016 11:21:38 AM"
"304977256","[email protected];[email protected];[email protected]","Campaign Profile Page: Ad Groups Subpage - Change how status is displayed","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=70&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","23","","","<p>Issue 70 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=70&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Groups Subpage - Change how status is displayed</a></p><br/><p>Also change column ID on list page Issue 70 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=71&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Ad Groups Subpage - Change Column Order</a> <span>-ID w/ status symbol (Left Align)</span></p><br/><p>Make all status filters smaller in width. They do not need to be much bigger than the largest value available, “Paused”. </p>","UAT Feedback","Normal","757","","","03/22/2016 11:22:21 AM","03/22/2016 11:22:21 AM","03/22/2016","03/09/2016 04:01:41 PM","03/22/2016 11:22:21 AM"
"307441314","[email protected];[email protected]","Campaign Create Form: Add Date Placeholder to Start and End Dates","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=63&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","24","","","<p>Issue 63 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=63&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Add Date Placeholder to Start and End Dates</a></p>","UAT Feedback","Normal","866","","","03/22/2016 11:23:11 AM","03/22/2016 11:23:11 AM","03/22/2016","03/09/2016 01:10:18 PM","03/22/2016 11:23:11 AM"
"304994675","[email protected];[email protected]","Advertiser create form: Change to Advertiser Name","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=32&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","25","","","<p>Issue 32 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=32&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Change to Advertiser Name</a></p>","UAT Feedback","Normal","762","","","03/22/2016 11:23:44 AM","03/22/2016 11:23:44 AM","03/22/2016","03/09/2016 01:15:01 PM","03/22/2016 11:23:44 AM"
"291016522","[email protected]","General: Displaying Run Dates","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=22&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","Ralph gave the answer","26","","","<ul><br/><li><br/><p>Whenever displaying run dates where the end date is undefined, display as “[MM/DD/YY] – Undefined”.</p><br/></li><br/></ul>","UAT Feedback","Normal","502","","","03/22/2016 11:24:26 AM","03/22/2016 11:24:26 AM","03/22/2016","03/02/2016 04:24:25 PM","03/22/2016 11:24:26 AM"
"291029683","[email protected]","General: - All Create Forms should have “Create” Buttons at the bottom of the forms instead of save. ","313928380","","archive:sprint 12","webui","","Change request","","1","False","","27","","","<ul><br/><li><br/><p>All Create Forms should have “Create” Buttons at the bottom of the forms instead of save. Save should be on edit/update forms.</p><br/></li><br/></ul>","UAT Feedback","Normal","496","","","03/22/2016 11:25:25 AM","03/22/2016 11:25:25 AM","03/22/2016","03/02/2016 04:23:45 PM","03/22/2016 11:25:25 AM"
"304945012","[email protected];[email protected]","Ad Group Targeting Subpage - Browsers Edit Form: Correct Style to Match Other Similar Edit Selections","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=164&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","False","tasks combined","28","","","<p>Issue 164 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=164&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Correct Style to Match Other Similar Edit Selections</a></p>","UAT Feedback","High","738","","","03/22/2016 12:34:06 PM","03/22/2016 12:34:06 PM","03/22/2016","03/03/2016 10:02:50 AM","03/22/2016 12:34:06 PM"
"304466242","[email protected]","Ad Group Profile Page - Settings: Display - Change Spend and Impression field labels","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=132&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","29","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=132&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Display - Change Spend and Impression field labels</a> Issue 132</p>","UAT Feedback","High","732","","","03/22/2016 12:35:09 PM","03/22/2016 12:35:09 PM","03/22/2016","02/29/2016 10:16:49 AM","03/22/2016 12:35:09 PM"
"304451650","[email protected]","Ad Group Create Wizard : Budget Step - Change Spend and Impression field labels","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=115&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","30","","","<p>Issue 115 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=115&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Budget Step - Change Spend and Impression field labels</a></p>","UAT Feedback","High","730","","","03/22/2016 12:37:01 PM","03/22/2016 12:37:01 PM","03/22/2016","02/29/2016 10:16:37 AM","03/22/2016 12:37:01 PM"
"304449773","[email protected];[email protected]","Campaign Create Form: Date Picker Color Change","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=82&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","31","","","<p>Issue 82 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=82&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Date Picker Color Change</a></p>","UAT Feedback","High","726","","","03/22/2016 12:46:52 PM","03/22/2016 12:46:52 PM","03/22/2016","02/29/2016 10:14:23 AM","03/22/2016 12:46:52 PM"
"300005932","[email protected]","Campaign Create Form: Change Budget Cap (Lifetime) to Budget ","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/Quick%20Views%20And%20Table%20Views.xlsx?d=w408daa8bd0b542d7bd6181ce405ece9b","Change request","","1","False","","32","","","<p>Safari</p><br/><p>0.5.0</p><br/><p> </p><br/><p>Budget Cap (Lifetime) needs to change to be the Budget (Actual) field displayed as just ""Budget"" on the create form based on the updated terminology document provided on 2/3/16. <a href=""https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/Quick%20Views%20And%20Table%20Views.xlsx?d=w408daa8bd0b542d7bd6181ce405ece9b"">https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/Quick%20Views%20And%20Table%20Views.xlsx?d=w408daa8bd0b542d7bd6181ce405ece9b</a></p>","UAT Feedback","High","640","","","03/22/2016 12:50:01 PM","03/22/2016 12:50:01 PM","03/22/2016","02/29/2016 10:13:11 AM","03/22/2016 12:50:01 PM"
"300012940","[email protected]","Advertiser List View: Table - Change Columns Names ","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=80&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","33","","","<p>Safari:</p><br/><p>0.5.0 </p><br/><p>(Change To Ticket #30 SharePoint Test issue tracking) Column Changes based on updated terminology document provided on 2/3/16:<br /><br />https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/Quick%20Views%20And%20Table%20Views.xlsx?d=w408daa8bd0b542d7bd6181ce405ece9b<br /><br />-Imps (Served) should be ""Impressions""<br />-Revenue (Programmatic) should be ""Prog. Revenue""<br />-Cost should be ""Spend""<br />-Imps (Lifetime) should be the Impression Cap (Adjusted) field but displayed on the column header of the table as ""Imp Cap""<br />-Budget (Lifetime) should be the Budget (Adjusted) field but displayed on the column header of the table as just ""Budget""</p>","UAT Feedback","High","639","","","03/22/2016 12:55:07 PM","03/22/2016 12:55:07 PM","03/22/2016","02/29/2016 10:12:48 AM","03/22/2016 12:55:07 PM"
"302953943","[email protected]","Ad Group Profile Page: Quick View - Change Field Order","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=74&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","34","","","<p>Issue 74 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=74&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Quick View - Change Field Order</a></p>","UAT Feedback","High","704","","","03/22/2016 12:55:51 PM","03/22/2016 12:55:51 PM","03/22/2016","02/29/2016 10:14:15 AM","03/22/2016 12:55:51 PM"
"304979896","[email protected]","Advertiser Profile Page: Settings - Change Service Tier to Service Level","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=53&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","35","","","<p>Issue 53 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=53&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Settings - Change Service Tier to Service Level</a></p>","UAT Feedback","High","766","","","03/22/2016 01:11:24 PM","03/22/2016 01:11:24 PM","03/22/2016","02/29/2016 05:49:48 PM","03/22/2016 01:11:24 PM"
"304994671","[email protected]","Advertiser create form: Change to Service Level","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=31&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","36","","","<p>Issue 31 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=31&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Change to Service Level</a></p>","UAT Feedback","High","761","","","03/22/2016 01:13:37 PM","03/22/2016 01:13:37 PM","03/22/2016","02/29/2016 05:46:01 PM","03/22/2016 01:13:37 PM"
"304987374","[email protected]","Advertiser settings page: Settings Edit - Change Service Tier to Service Level","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=48&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","37","","","<p>Issue 48 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=48&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Settings Edit - Change Service Tier to Service Level</a></p>","UAT Feedback","High","765","","","03/22/2016 02:06:59 PM","03/22/2016 02:06:59 PM","03/22/2016","02/29/2016 05:54:16 PM","03/22/2016 02:06:59 PM"
"304979812","[email protected];[email protected];[email protected]","Advertiser Profile Page: Ad Groups Subpage - Change how status is displayed","313928380","","archive:sprint 12","webui,change","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=59&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","","38","","","<p>Issue 59 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=59&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Groups Subpage - Change how status is displayed</a></p><br/><p>Also change column with ID - <span>-ID w/ status symbol (Left Align) Issue 60 </span></p><br/><p><a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=60&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Ad Groups Subpage - Change Columns Order</a></p><br/><p>Make all status filters smaller in width. They do not need to be much bigger than the largest value available, “Paused”. </p>","UAT Feedback","Normal","755","","","03/22/2016 02:10:12 PM","03/22/2016 02:10:12 PM","03/22/2016","03/09/2016 01:13:59 PM","03/22/2016 02:10:12 PM"
"313548997","","WebUI: campaigns aren't displayed for some advertisers","313928380","","archive:sprint 12","webui","","","","0","False","","39","","","<p><a href=""http://malt-qa.uat.multiview.com/advertiser/2014/overview"">http://malt-qa.uat.multiview.com/advertiser/2014/overview</a> </p>","Defect","Normal","942","","","03/24/2016 12:55:58 PM","03/24/2016 12:55:58 PM","03/24/2016","03/24/2016 12:55:58 PM","03/24/2016 12:55:58 PM"
"302963431","[email protected]","Advertiser Profile Page: Campaigns Subpage - Change Columns Order","313928380","","archive:sprint 12","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=58&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Client gave answer. Create separate issue 168 and cards 967","40","","","<p>Issue 58 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=58&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Campaigns Subpage - Change Columns Order</a></p>","UAT Feedback","High","702","","","03/25/2016 11:37:46 AM","03/25/2016 11:37:46 AM","03/25/2016","02/29/2016 10:14:05 AM","03/25/2016 11:37:46 AM"
"276005201","","Backend: AdGroup ip management - Simpli.Fi","313928380","","archive:sprint 12","backend,phase-2","","","","2","False","","41","","","","Feature","Normal","273","335043828","335043828","05/10/2016 12:22:54 PM","05/10/2016 12:22:54 PM","05/10/2016","05/10/2016 12:22:54 PM","05/10/2016 12:22:54 PM"
"363720997","[email protected];[email protected];[email protected]","WebUI: Display DataCPM in quickview for Trade Desk Ad Group","316204693","","tt quality assurance:failed","webui,TD-adgroup","","","","0","True","see comment","0","","07/18/2016","","Feature","Normal","1912","","","07/21/2016 03:11:07 PM","07/25/2016 02:51:02 PM","","07/18/2016 03:44:27 PM",""
"353648217","[email protected];[email protected];[email protected]","Ad Group Targeting - Locations: ad group targeting Geo Error","316204693","","tt quality assurance:failed","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=351&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","7","False","fixed","1","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=351&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 351</a></p>","UAT Feedback","Critical","1559","352332924","352332924","07/22/2016 02:32:26 PM","07/25/2016 12:06:12 PM","","07/14/2016 12:10:31 PM",""
"364806505","[email protected];[email protected]","Location Targeting: ""Save Changes"" popup always appears even if there are no changes while navigating from CRC tab to any other","316204693","","tt quality assurance:failed","webui,location-targeting","","","","0","True","waits 1559","2","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Navigate to simpli.fi adgroup location targeting popup crc</li><br/><li>Click on DMA tab</li><br/></ol><br/><p><strong>Expected result:</strong> DMA tab is opened. Save Changes popup doesn't appear.</p><br/><p><strong>Actual result:</strong> Save Chages popup appears. I click ""Yes"". Popup is closing and user is still on CRC tab.</p>","Defect","High","1959","","","07/22/2016 02:34:50 PM","07/22/2016 02:34:50 PM","","07/20/2016 04:07:34 PM",""
"353509022","[email protected];[email protected]","Ad Group Targeting - Locations: Edit - Postal Codes - Zipcodes not saving to Simpli.fi","316204693","","tt quality assurance:failed","webui,location-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=332&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","True","waits for 1559","3","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=332&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 332</a></p><br/><p>Error message ""Geo targets Select either an entire country or postal codes in that country, but not both.""</p>","UAT Feedback","Critical","1535","","","07/22/2016 02:34:52 PM","07/22/2016 02:34:52 PM","","07/12/2016 01:14:30 PM",""
"279444177","[email protected];[email protected]","WebUI: Make past dates to be disabled on ""New"" and ""Edit"" modal windows in the date pickers.","316204693","","tt quality assurance:failed","webui,dates","","","","2","True","Need to fix bug","4","","","","Improvement","Normal","340","","","06/10/2016 12:27:27 PM","07/24/2016 03:25:57 PM","","05/30/2016 10:59:30 AM",""
"352771526","[email protected];[email protected]","Postal Codes Validation Error","316204693","","tt quality assurance:failed","location-targeting,webui,out-of-scope-candidate","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=336&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","fixed, ready for qa","5","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=336&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 336</a></p>","UAT Feedback","Low","1520","","","07/22/2016 03:49:18 PM","07/25/2016 08:18:24 AM","","07/15/2016 06:08:42 PM",""
"365529305","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Add disclaimer text to form","316204693","","tt quality assurance:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","4","False","can be tested
","6","","","<p>Issue 117 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Add disclaimer text to form</a></p><br/><p>We shoul add error message for field End Date - when user cleared it.</p><br/><p>Make this for create and edit wizard. Also change error message - look at comment in Sharepoint.</p>","UAT Feedback","Critical","1983","307428949","307428949","07/25/2016 12:20:02 PM","07/25/2016 03:17:42 PM","","07/22/2016 10:27:51 AM",""
"365277782","[email protected];[email protected]","Remove options list for search tags","316204693","","tt quality assurance:failed","webui,segments,blocked","","","","2","True","see comment","7","","","","UAT Feedback","Critical","1961","361511699","361511699","07/25/2016 02:32:13 PM","07/25/2016 02:37:12 PM","","07/21/2016 11:53:38 AM",""
"361614702","[email protected]"," Discount Field Validation","316204693","","tt quality assurance:failed","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=559&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","True","see comment","8","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClassCF4BF81732A94FE1B3A568C9CD58C3A9""><br/><p>Discount field validation should show error whenever discount is less than item price.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1853","","","07/25/2016 03:20:08 PM","07/25/2016 03:21:02 PM","","07/15/2016 07:06:59 PM",""
"351823472","[email protected]","Problem with server time","316204694","","tt quality assurance:in progress","campaign,webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=88&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","False","","0","","","<p><span>Problem still exists and is dependent on what time of day I am doing it. It is 10:31 at night and still doing it. Error does not appear at field validation but does validate wrong after I hit Create button and then screen just spins waiting and never finishes. See new attachment.</span></p>","UAT Feedback","Critical","1496","304455825","304455825","07/12/2016 02:46:53 PM","07/22/2016 04:21:56 PM","","07/06/2016 10:51:57 AM",""
"350714751","[email protected];[email protected]","Campaign Create Form: Incorrect Date Validation - Campaign End Dates","316204694","","tt quality assurance:in progress","webui,campaign-popup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=309&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","1","","","<p>Issue<a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=309&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank""> 309</a></p>","UAT Feedback","Low","1457","","","07/12/2016 01:44:23 PM","07/22/2016 04:46:28 PM","","06/17/2016 02:25:43 PM",""
"353519221","[email protected];[email protected];[email protected];[email protected]","Ad Group Targeting - Locations: Geo Fence / Target Switch not saving correctly","316204694","","tt quality assurance:in progress","webui,backend,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=352&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","4","True","Blocked by simplifi's geofences coordinates issue (ticket 1992)","2","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=352&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p><br/><p>[{""field"":""Simpli.Fi[adGroupThirdPartySegmentTag]"",""message"":""Geo targets Select either Location Targeting or Geo Fencing, but not both""}] error on UAT and QA when i tryed to changed on geofencing with chosen area.</p>","UAT Feedback","Critical","1542","","","07/20/2016 12:16:15 PM","07/22/2016 04:21:57 PM","","07/07/2016 01:13:20 PM",""
"352983539","[email protected];[email protected]","Incorrect messages are shown when user corrects another field","316204694","","tt quality assurance:in progress","webui,adgroup","","","","1","False","incorrect link","3","","","<p><a href=""http://screencast.com/t/0PwNNja1"" target=""_blank"">http://screencast.com/t/0PwNNja1</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Set Impression cap as 17, mothly impreesion cap as 20 daily impression cap as 19</li><br/><li>Set impressiom cap as 20</li><br/><li>Unfocus the fiedl</li><br/></ol><br/><p><strong>Actual result:</strong> I still see errors near Monthly and Daily Impressions Cap</p><br/><p><strong>Expected result:</strong> errors near Monthly and Daily inpressions Cap disappeared</p>","Defect","Normal","1528","","","07/25/2016 12:18:07 PM","07/25/2016 12:18:07 PM","","07/15/2016 05:03:27 PM",""
"361615863","[email protected]","Line Discount Missing from some targets","316204694","","tt quality assurance:in progress","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=558&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","","4","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass5F85D7C7C70F4F718D4CDAC40F50104B""><br/><p>The ability to add a discount should exist on all items. It is currently missing from some of the items.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1854","","","07/25/2016 02:53:06 PM","07/25/2016 02:53:06 PM","","07/14/2016 03:27:03 PM",""
"314579874","","WebUI: Introduce module structure for JavaScript","316288390","","development:review","webui","","","","5","True","Need update bracnh and resolve merge conflicts","0","","","<p>- Webpack?</p><br/><p>- Folder structure</p><br/><p>- CommonJS\AMD</p>","Improvement","Normal","948","","","05/13/2016 12:32:26 PM","07/07/2016 01:29:41 PM","","03/18/2016 07:11:06 PM",""
"327725617","[email protected];[email protected]","Prepare environment for performance testing","316288390","","development:review","","","","","0","False","","1","","","","Task","Normal","1201","","","04/20/2016 11:54:06 AM","04/20/2016 11:54:06 AM","","04/20/2016 09:55:42 AM",""
"328423336","[email protected];[email protected]","Domain list edit: Show real name always","316288390","","development:review","webui,domain-list","","","","1","True","Need to think about better implementation.","2","","","<p><strong>see more: http://screencast.com/t/mRYQAZyELQSY</strong></p><br/><p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open domain list profile page</li><br/><li>click edit button</li><br/><li>delete name and click save, error message</li><br/><li>click cancel</li><br/></ul><br/><p><strong>Currect result:</strong> The field name of domain list is empty</p><br/><p><strong>expected result:</strong> the field name of domain list is always prefilled with correct data</p>","Defect","Normal","1208","","","05/25/2016 06:14:01 PM","06/27/2016 10:39:02 PM","","05/25/2016 04:31:19 PM",""
"337418578","[email protected];[email protected]","Column shouldn't be expanded when sorted sign is aded","316288390","","development:review","webui,general","","","","1","True","Need to think about better implementation","3","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/Y83YOCPWbH"">http://screencast.com/t/Y83YOCPWbH</a> </p>","Improvement","Normal","1295","","","05/19/2016 12:06:45 PM","06/14/2016 12:22:15 PM","","05/18/2016 03:43:32 PM",""
"331411711","[email protected]","Add disk to multiview-dmp-sql-dev.thumbtack.lo","316288390","","development:review","","","","","0","False","","4","","","","Other Work","Normal","1236","","","05/27/2016 01:33:17 PM","05/27/2016 01:33:17 PM","","04/28/2016 01:22:02 PM",""
"350706134","[email protected]","Adjust deployment scripts in order to install node\npm\webpack","316288390","","development:review","webui","","","","2","True","Need to make adjustment in build script.","5","","","","Task","High","1454","","","06/14/2016 04:39:52 PM","06/20/2016 02:07:29 PM","","06/14/2016 09:32:06 AM",""
"359692292","[email protected]","Confirmation of Association Segment List View Fields","316288390","","development:review","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=526&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","","6","","","<p><span>The table/list view should include the <strong>association acronym,</strong> association name, site type/product line, and project acronym</span></p>","UAT Feedback","Critical","1823","","","07/25/2016 02:45:34 PM","07/25/2016 02:45:34 PM","","07/25/2016 02:32:04 PM",""
"360800719","[email protected]","Custom audience doesn't set at editing","316288390","","development:review","","","","","0","False","","7","","","<p>TD: Targeting all <a href=""https://desksb.thetradedesk.com/adgroups/detail/1rj8sgx?campaign=5jdhxe4&advertiser=mk1lspf#audience"">https://desksb.thetradedesk.com/adgroups/detail/1rj8sgx?campaign=5jdhxe4&advertiser=mk1lspf#audience</a></p><br/><p>Malt and DB: 104 audiencs is assigned <a href=""http://featureabbbintegration.tt.dev.multiview.com/adgroup/11459/targeting"">http://featureabbbintegration.tt.dev.multiview.com/adgroup/11459/targeting</a> </p><br/><p> </p>","Defect","High","1775","","","07/11/2016 04:27:45 PM","07/11/2016 04:27:45 PM","","07/10/2016 08:28:14 PM",""
"356284971","[email protected];[email protected];[email protected]","Actions Edit Form: Action Pixel Generating Wrong CID","316288390","","development:review","webui,actions,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=398&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","","8","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=398&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1632","","","07/13/2016 05:38:01 PM","07/21/2016 04:55:58 PM","","07/12/2016 07:42:29 PM",""
"355807271","[email protected]","CBE-Image 2/#4: Default Text When No Targets Selected Yet","316288390","","development:review","duplicate,webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=498&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","9","","","","UAT Feedback","Low","1798","","","07/22/2016 08:25:07 PM","07/25/2016 01:42:17 PM","","07/18/2016 06:51:45 PM",""
"355797580","[email protected]"," CBE-Image 2/#2: Default Campaign Names","316288390","","development:review","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=496&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","10","","","<p><span>CBE-Image 2/#2: The first campaign name should be defaulted to be called ""Campaign 1"". Any subsequent campaign created should be defaulted to have a name of ""Campaign"" followed by the number of the campaign that has been created (Campaign 2, Campaign 3, Campaign 4, etc...).</span></p>","UAT Feedback","Low","1792","","","07/22/2016 08:25:09 PM","07/22/2016 08:25:30 PM","","07/18/2016 04:52:16 PM",""
"355824885","[email protected]","Format Grand Total Text on Validation Criteria","316288390","","development:review","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=509&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","11","","","<ul><br/><li>If Grand Total value becomes greater than the customer's budget, turn font color of grand total red. If no customer budget entered, grand total will remain black.</li><br/></ul>","UAT Feedback","Low","1796","","","07/22/2016 08:25:05 PM","07/22/2016 08:25:33 PM","","07/18/2016 06:39:16 PM",""
"353551464","[email protected]","Ad Group Targeting - Locations: DMAs not pushing to Simpli.fi correctly","316288390","","development:review","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=348&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","5","False","ready for develop
","12","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=348&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1547","353548241","353548241","07/19/2016 04:29:43 PM","07/19/2016 04:29:43 PM","","07/14/2016 12:09:12 PM",""
"353548241","[email protected]","Ad Group Targeting - Locations: Edit - DMA Issue not working with Simpli.fi","316288390","","development:review","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=341&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","5","False","ready for develop","13","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=341&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Critical","1546","","","07/19/2016 04:29:44 PM","07/19/2016 04:29:44 PM","","07/14/2016 12:05:56 PM",""
"353646242","[email protected]","Ad Group Targeting - Locations: Ad Group Targeting - Locations","316288390","","development:review","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=343&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","14","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=343&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 343</a></p>","UAT Feedback","Critical","1558","","","07/22/2016 12:31:09 PM","07/22/2016 12:31:09 PM","","07/22/2016 11:52:46 AM",""
"351467288","[email protected]","Backend: ANQ Migration: create MALT entities for Choozle","316288390","","development:review","backend","","","","5","False","","15","","","","Feature","Normal","1494","","","07/20/2016 10:40:49 AM","07/20/2016 10:40:49 AM","","06/15/2016 07:42:27 PM",""
"351461869","[email protected];[email protected]","Backend: ANQ Migration: we should be able to pull sites from Piwik to MALT","316288390","","development:review","backend","","","","5","False","","16","","","","Feature","Normal","1493","","","07/21/2016 12:14:04 PM","07/21/2016 06:23:44 PM","","06/15/2016 07:40:48 PM",""
"365284607","[email protected];[email protected]","Access to production Azkaban","316288390","","development:review","backend","","","","0","False","","17","","","<p>We need access to production Azkaban to be able to setup and run ANQ Migration jobs</p><br/><p><a href=""mailto:[email protected]"">[email protected]</a></p><br/><p><a href=""mailto:[email protected]"">[email protected]</a></p><br/><p><a href=""https://ustore.thumbtack.lo/vsCredential/show/567"">https://ustore.thumbtack.lo/vsCredential/show/567</a></p><br/><p>https://ustore.thumbtack.lo/vsCredential/show/568</p><br/><p> </p><br/><p> </p>","Task","High","1963","","","07/21/2016 02:22:17 PM","07/22/2016 10:24:07 AM","","07/21/2016 11:16:48 AM",""
"351463798","[email protected]","Backend: ANQ Migration: we should be able to pull hierarchy from TradeDesk by list of external ids for advertisers","316288390","","development:review","backend","","","","5","False","","18","","","","Feature","Normal","1492","","","07/20/2016 06:02:38 PM","07/20/2016 06:02:38 PM","","06/15/2016 07:40:09 PM",""
"365285935","[email protected];[email protected]","Request access to Multiview Staging","316288390","","development:review","backend","","","","0","False","","19","","","<p>Please request read-only access to Multiview Staging database for <a href=""mailto:[email protected]"">[email protected]</a> and <a href=""mailto:[email protected]"">[email protected]</a></p>","Task","High","1962","","","07/21/2016 11:54:31 AM","07/21/2016 11:54:31 AM","","07/21/2016 11:12:27 AM",""
"364747884","[email protected];[email protected]","Keyword upload","316288390","","development:review","webui,keywords-targeting","","","","1","False","","20","","","<p><a href=""http://develop.tt.dev.multiview.com/adgroup/12500/keywords"">http://develop.tt.dev.multiview.com/adgroup/12500/keywords</a> </p><br/><p>incorrect or empty requiest to Backend </p>","Defect","High","1956","","","07/21/2016 02:30:54 PM","07/21/2016 04:56:41 PM","","07/20/2016 01:13:28 PM",""
"351261812","[email protected]","Ad Group Targeting: IP Target, File Upload","316288390","","development:review","webui,ip-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=327&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","","21","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=327&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Low","1477","","","07/21/2016 02:45:09 PM","07/21/2016 04:01:44 PM","","07/19/2016 04:37:59 PM",""
"365368760","[email protected]","Backend: Check Trade Desk Creatives.","316288390","","development:review","backend","","","","3","False","","22","","","<p>Check, that Trade Desk Creatives not shared between Ad Groups.</p>","Task","Normal","1973","","","07/21/2016 07:29:47 PM","07/21/2016 07:29:47 PM","","07/21/2016 04:57:46 PM",""
"364256008","[email protected];[email protected];[email protected];[email protected]","Ad Group Keywords: Keyword Paste Error","316288390","","development:review","webui,backend,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=586&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","answer - get cannot be more than 2000 characters","23","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=586&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 586</a></p>","UAT Feedback","Critical","1932","","","07/22/2016 07:47:01 PM","07/22/2016 07:47:01 PM","","07/21/2016 03:04:49 PM",""
"364213036","[email protected];[email protected]","TD Video Creative: Video upload fails with 500 in some cases","316288390","","development:review","creative,backend","","","","0","False","","24","","","<p>Need to investigate uploading via TD API. Use this file <br /><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/Attachments/570/Dremel_VIDEO.mp4"">Dremel_VIDEO.mp4</a></p>","Defect","High","1924","","","07/25/2016 09:07:52 AM","07/25/2016 09:07:52 AM","","07/19/2016 01:06:48 PM",""
"355224555","[email protected];[email protected]","SMUI-Image 1/#2: Segments should not be able to be deleted.","316288390","","development:review","webui,segments,backend,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=512&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","7","False","Unblocked","25","","","<p><span>SMUI-Image 1/#2: Segments should not be able to be deleted. That said, they should be allowed to be deactivated. A deactivated segment will still function and populate based on its rules and will remain on any audiences that it is on at time of deactivation but will not be available in the audience builder to add to any additional audiences. Location of state change will exist on edit page.</span></p><br/><p>Also need to add State field into segments table + have a filter to show active/all segments</p>","UAT Feedback","Critical","1825","","","07/25/2016 02:34:30 PM","07/25/2016 02:34:30 PM","","07/21/2016 06:46:22 PM",""
"361528628","[email protected];[email protected];[email protected]","Missing Last Updated and User Fields","316288412","","uat:failed","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=545&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","True","Waiting for retest","0","","","<p><span>Association Segment List View Missing Last Updated and Unique Users Field</span></p>","UAT Feedback","Critical","1844","","","07/22/2016 10:25:32 AM","07/22/2016 11:10:04 AM","","07/15/2016 06:20:29 PM",""
"361511699","[email protected];[email protected]","Tags should not be predefined picklist, Should be free form","316288412","","uat:failed","blocked,webui,backend,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=539&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","4","True","blocked by 1961","1","","","<p>Tags should not be from a predefined picklist.</p><br/><p>Search tags should be free form in a single tags text field with the ""tab"" button used to create a new tag. See the first example on this page: <a href=""http://devthought.com/wp-content/projects/jquery/textboxlist/Demo/"">http://devthought.com/wp-content/projects/jquery/textboxlist/Demo/</a></p><br/><p>Functionality should work like the first one on that link except it should be the tab button that finalizes the creation of a tag instead of the enter button.</p><br/><p>Use Directions: Type the tag (one or more words) and press tab. Use left/right arrows to navigate, backspace to remove the tag behind the cursor, delete to remove the tag in front of the cursor. The first time the backspace or delete button is selected, it should first highlight the tag that is about to be removed. If hit again, it should remove the tag.</p><br/><p>Applies to Segment Edit form as well.</p>","UAT Feedback","Critical","1838","","","07/20/2016 02:59:20 PM","07/22/2016 06:35:37 PM","","07/12/2016 06:17:04 PM",""
"361540754","[email protected];[email protected];[email protected]"," Change Default Sort","316288412","","uat:failed","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=556&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","True","blocked by 1985","2","","","<p><span>Default sort for all data types should be by Uniques Descending.</span></p>","UAT Feedback","Critical","1849","","","07/21/2016 05:14:04 PM","07/22/2016 06:36:10 PM","","07/14/2016 04:08:55 PM",""
"361528611","[email protected];[email protected]","Costs Shown wrong","316288412","","uat:failed","blocked,webui,audience","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=549&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","working","3","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClassA3D9FF05B1554F44B85BFE9B4AC87651""><br/><p>Costs only shown as ""X% of media cost"" in Audience Builder.</p><br/><p>When the cost in Trade Desk is ""$X.XX CPM fee"", AB shows just ""% of media cost"" without even showing the value of percentage. See example in attachments.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1842","","","07/20/2016 02:59:07 PM","07/20/2016 03:02:20 PM","","07/13/2016 11:36:28 PM",""
"321552269","[email protected];[email protected]","Domain List Details/Edit: New Domain Add - Domains cannot have spaces","316288412","","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=202&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","True","created child card 1461","4","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=202&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 202</a></p>","UAT Feedback","Critical","1096","","","06/14/2016 11:40:07 AM","07/06/2016 10:45:18 AM","","04/12/2016 03:42:51 PM",""
"304455829","[email protected]","Ad Group Create Wizard : Validation Error - Start Date = Today","316288412","","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=89&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","True","Blocked by 727","5","","","<p>Issue 89 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=89&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Validation Error - Start Date = Today</a></p>","UAT Feedback","High","728","","","06/16/2016 09:59:15 AM","06/16/2016 10:04:30 AM","","02/29/2016 10:15:35 AM",""
"304455825","","Campaign Create Form: Validation Error - Start Date = Today","316288412","","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=88&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","True","Blocked by 1496","6","","","<p>Issue 88<a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=88&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Validation Error - Start Date = Today</a></p>","UAT Feedback","Critical","727","","","06/16/2016 09:59:17 AM","07/25/2016 02:46:20 PM","","02/29/2016 10:15:31 AM",""
"307428949","[email protected]","Ad Group Create Wizard: Budget Step - Add disclaimer text to form","316288412","","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","4","True","child card 1983","7","","","<p>Issue 117 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=117&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Add disclaimer text to form</a></p>","UAT Feedback","Critical","822","","","07/21/2016 09:00:11 PM","07/21/2016 09:05:35 PM","","03/11/2016 06:52:54 PM",""
"307441307","[email protected]","Ad Group Profile Page - Settings: Edit Budget Form - Add disclaimer text to form","316288412","https://thumbtack.leankit.com/Boards/View/250969254/317119718","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=147&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","4","True","child card 1983","8","","","<p>Issue 147 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=147&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Add disclaimer text to form</a></p>","UAT Feedback","Critical","865","","","07/21/2016 09:00:15 PM","07/21/2016 09:05:52 PM","","03/24/2016 04:45:31 PM",""
"291019715","[email protected];[email protected];[email protected]","General: Pagination to be shown at bottom of all tables","316288412","","uat:failed","webui,pagination,general","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=14&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","5","True","Failed by client. Child card 1624","9","","","<ul><br/><li><br/><p>At Bottom of all tables, show [X – Y of Z]. Show under pagination if pagination exists. Show under table if pagination does not exist.</p><br/><ul><br/><li><br/><p>X=the sequential # of the 1<sup>st</sup> record displaying at the top of the table taking into consideration the filters in place.</p><br/></li><br/><li><br/><p>Y=the sequential # of the last record displaying at the bottom of the table taking into consideration the filters in place.</p><br/></li><br/><li><br/><p>Z=the total # of records that are included in all of the pages taking into consideration the filters in place.</p><br/></li><br/></ul><br/></li><br/></ul><br/><p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=14&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Low","494","","","06/28/2016 11:39:51 AM","06/28/2016 11:42:17 AM","","05/30/2016 04:34:30 PM",""
"332570597","[email protected];[email protected]","Ad Group Profile Page / Ad Group Create Wizard: Ad Group Settings - Edit Ad Group Buying Strategy","316288412","","uat:failed","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=231&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","True","child card 1960","10","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=231&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 231</a></p>","UAT Feedback","Critical","1244","","","06/29/2016 01:37:39 PM","07/21/2016 10:41:15 AM","","05/19/2016 05:08:12 PM",""
"359689740","[email protected]","SMUI-Image 1/#1: Segments should be another list inside of the advertiser DMP","316288412","","uat:failed","webui,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=510&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","blocked by 1836","11","","","<p><span>SMUI-Image 1/#1: Segments should be another list inside of the advertiser DMP. It should be similar to sites in navigation.</span></p>","UAT Feedback","Critical","1821","","","07/20/2016 04:45:44 PM","07/20/2016 04:46:59 PM","","07/12/2016 12:06:07 PM",""
"355170898","[email protected]","SMUI-Image 2/#2: replace random numbers in parentheses on title bar","316288412","","uat:failed","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=522&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","by 1981","12","","","<p><strong>Actual result:</strong> <a href=""http://screencast.com/t/EQVJi4nqU"">http://screencast.com/t/EQVJi4nqU</a> </p><br/><p><strong>Expected result:</strong> <a href=""http://screencast.com/t/AbQNJNCFh"">http://screencast.com/t/AbQNJNCFh</a> </p><br/><p><span>SMUI-Image 2/#2: Not sure what the numbers are in the parentheses in image but they should be the account number for the advertiser.</span></p>","UAT Feedback","Low","1818","","","07/21/2016 07:14:28 PM","07/21/2016 07:16:11 PM","","07/12/2016 12:06:07 PM",""
"355819296","[email protected]","Discount field should be currency ($)","316288412","","uat:failed","duplicate,webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=505&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","blocked by 1986","13","","","","UAT Feedback","Critical","1801","","","07/21/2016 07:25:41 PM","07/22/2016 09:59:27 AM","","07/12/2016 11:26:20 AM",""
"355818546","[email protected]","Add label for target price: ""Item Price""","316288412","","uat:failed","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=507&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","True","Create a new ticket?","14","","","","UAT Feedback","Critical","1799","","","07/21/2016 07:46:11 PM","07/22/2016 10:23:24 AM","","07/12/2016 11:26:20 AM",""
"357322759","[email protected];[email protected]","Ad Group Keywords: Keyword list not uploading","316288414","","uat:ready for uat","webui,keywords-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=416&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","True","asked retesting. cannot reproduce problem","0","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=416&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 416</a></p>","UAT Feedback","Critical","1677","","","07/18/2016 09:07:30 PM","07/25/2016 12:00:59 PM","","07/11/2016 07:06:14 PM",""
"332568218","[email protected];[email protected]","Ad Group Targeting: Domain List Summary- Ad group Targeting - Primary workspace","316288414","","uat:ready for uat","webui,domain-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=240&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","True","Inveatigate fail","1","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=240&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 240</a></p>","UAT Feedback","High","1245","","","05/20/2016 01:19:36 PM","07/25/2016 12:01:01 PM","","05/18/2016 05:11:56 PM",""
"357322834","[email protected];[email protected];[email protected];[email protected];[email protected]","Creative Details: All creative allowed to be set to inactive regardless of ad group status","316288414","","uat:ready for uat","webui,creative","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=425&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","True","wait retesting","2","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=425&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 425</a></p>","UAT Feedback","Critical","1684","","","07/21/2016 07:58:32 PM","07/25/2016 12:01:04 PM","","07/08/2016 10:06:20 AM",""
"352332924","[email protected];[email protected];[email protected]","Ad Group Targeting - Locations: Edit - Selected DMAs are not displaying in Sifi","316288414","","uat:ready for uat","webui,location-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=345&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","True","waits for overlap fix","3","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=345&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1516","","","07/21/2016 07:48:03 PM","07/25/2016 12:06:12 PM","","07/14/2016 12:07:29 PM",""
"359687963","[email protected];[email protected]","SMUI-Image 1/#4: Edit button of Rules and Segments should be off of hyperlink name of rule instead of button","316288414","","uat:ready for uat","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=518&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","fixed","4","","","<p><span>SMUI-Image 1/#4: Edit button of Rules should be off of hyperlink name of rule instead of button</span></p>","UAT Feedback","Critical","1831","","","07/22/2016 07:33:35 PM","07/22/2016 07:33:35 PM","","07/20/2016 05:00:22 PM",""
"361614698","[email protected];[email protected]","Budget Estimator shouldn't have MALT URL","316288414","","uat:ready for uat","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=555&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","DNS name has been assigned","5","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClassC8F84E0078E5453AAA31C6A9E9378E7A""><br/><p>Budget Estimator should not have same URL as MALT. It should have budgetestimator.uat.multiview.com. It is a separate application. It should be setup as a completely new application, including security permissions.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1852","","","07/22/2016 07:56:09 PM","07/22/2016 07:56:09 PM","","07/21/2016 12:45:11 PM",""
"359697197","[email protected];[email protected]","Confirmation of Association Segment List View Search Bar","316288414","","uat:ready for uat","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=528&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","6","","","<p><span>Search bar at top of table should be on segment name, segment ID, association name, and an exact match on association acronym.</span></p>","UAT Feedback","Critical","1834","","","07/22/2016 07:34:00 PM","07/22/2016 07:34:00 PM","","07/15/2016 02:13:18 PM",""
"355231251","[email protected];[email protected]","SMUI-Image 1/#4: Rules table and addition should be on edit page of segment","316288414","","uat:ready for uat","webui,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=516&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","fixed","7","","","<p><span>SMUI-Image 1/#4: Rules table and addition capability should be on edit page of segment.</span></p>","UAT Feedback","Critical","1836","","","07/22/2016 07:33:17 PM","07/23/2016 01:52:08 PM","","07/12/2016 12:16:35 PM",""
"355223246","[email protected];[email protected]","SMUI-Image 1/#2: add Tab with table of ad groups using segment","316288414","","uat:ready for uat","webui,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=513&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","fixed","8","","","<p><span>SMUI-Image 1/#2: Like Domain Lists, there should be a tab on edit/details screen that allows users to see the ad groups using the segment.</span></p>","UAT Feedback","Critical","1835","","","07/22/2016 07:32:17 PM","07/22/2016 07:32:17 PM","","07/12/2016 12:16:35 PM",""
"351827185","","Campaign Create Form: Not able to create campaign ","316288414","","uat:ready for uat","webui,general","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB-ACC9-4B2B-BEBF-829FCB15C7C4%7D&ID=307&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","implemented","9","","","<p>Isuue307 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=307&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Not able to create campaign</a></p><br/><p>There is a problem with advertiser with name whoch was created before as we cleared base. We should solve this broblem - to shown user error from TradeDesk or Simpli.Fi</p>","UAT Feedback","Low","1506","","","07/21/2016 09:04:29 PM","07/21/2016 09:04:29 PM","","07/08/2016 04:56:47 AM",""
"356250303","","Ad Group Create Keyword: Non descrptive Error message","316288414","","uat:ready for uat","webui,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=407&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","implemented showing errors","10","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=407&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Low","1622","","","07/21/2016 09:05:49 PM","07/21/2016 09:05:49 PM","","07/08/2016 04:56:47 AM",""
"306965956","[email protected];[email protected]","General: Settings - Change State Permissions","316288414","","uat:ready for uat","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=24&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","The problem is solved","11","","","<p>24 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=24&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Settings - Change State Permissions</a></p>","UAT Feedback","Normal","796","","","06/10/2016 01:48:34 PM","06/10/2016 01:48:34 PM","","03/14/2016 05:08:34 PM",""
"355836181","","Change Drag Display to just name badge","316288414","","uat:ready for uat","webui,audience","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=477&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","12","","","<p><span>When you drag the segment from the left side to the right side, it visually shows the entire line being moved which looks clunky. Just show name being moved inside of a green badge.</span></p>","UAT Feedback","Low","1811","","","07/12/2016 11:46:34 AM","07/22/2016 10:42:34 AM","","07/12/2016 11:46:34 AM",""
"364211897","[email protected];[email protected]","Ad Group Targeting - Locations: Not Able to Select Cities and Postal Codes at the same time","316288414","","uat:ready for uat","webui,location-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=583&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","13","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=583&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 583</a></p>","UAT Feedback","Critical","1923","","","07/21/2016 08:00:46 PM","07/21/2016 08:00:46 PM","","07/20/2016 02:08:47 PM",""
"352779726","[email protected];[email protected];[email protected];[email protected]","Edit - CRCs - DSP not updating correctly","316288414","","uat:ready for uat","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=342&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","","14","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=342&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1523","","","07/21/2016 07:58:19 PM","07/21/2016 07:58:19 PM","","06/21/2016 02:41:48 PM",""
"364308708","[email protected];[email protected]"," Trade Desk Ad Group Bundle: Inventory all selected","316288414","","uat:ready for uat","backend,TD-adgroup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=452&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","15","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=452&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 452</a></p>","UAT Feedback","Critical","1945","","","07/21/2016 07:55:36 PM","07/21/2016 07:55:36 PM","","07/19/2016 07:01:43 PM",""
"322115196","[email protected];[email protected]","Domain List Details/Edit: Add/Change Breadcrumbs","316288414","","uat:ready for uat","webui,domain-list,breadcrumbs","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=206&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","16","","","<p>Issue 206 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=206&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Add/Change Breadcrumbs</a></p>","UAT Feedback","Low","1109","","","07/21/2016 07:53:19 PM","07/21/2016 07:53:19 PM","","07/19/2016 04:36:01 PM",""
"350721830","[email protected];[email protected]","Advertiser Domain List: New Domain Add - Domains cannot have spaces","316288414","","uat:ready for uat","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=202&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","fixed","17","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=202&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Critical","1461","321552269","321552269","07/21/2016 07:57:06 PM","07/21/2016 07:57:06 PM","","07/09/2016 12:46:09 PM",""
"361613438","[email protected];[email protected]","Trade Desk Create Form: Campaign name being cutoff","316288414","","uat:ready for uat","webui,backend,TD-campaign","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=564&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","can be test","18","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=564&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p><br/><p>Error from TD [{""field"":""Campaign.CampaignName"",""message"":""The property 'CampaignName' must not be null and must have a length no greater than 128.""}]</p><br/><p>Add validation for TD Ca,paign on creation and edit form. But TD send this error only on edit function, during creation it soesn't send eny error but cut name of campaign.</p>","UAT Feedback","Critical","1851","","","07/18/2016 08:51:20 PM","07/18/2016 08:51:21 PM","","07/14/2016 06:54:59 PM",""
"357321529","[email protected];[email protected];[email protected];[email protected];[email protected]","Creative Create Wizard: Field Change on Simpli.fi Creative Records","316288414","","uat:ready for uat","webui,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=435&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","5","False","pass","19","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=435&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1685","","","07/21/2016 07:40:10 PM","07/21/2016 07:40:10 PM","","06/30/2016 03:51:42 PM",""
"363101203","[email protected];[email protected];[email protected]","Ad Group - Targeting - Locations: Geotargeting change","316288414","","uat:ready for uat","backend,webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=602&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","ready for develop","20","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=602&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p><br/><p>It is the same as DMA not changing - when we change DMA and then CRCs than - DMA is remove in SF</p>","UAT Feedback","Critical","1904","","","07/21/2016 07:48:32 PM","07/21/2016 07:48:32 PM","","07/15/2016 06:37:35 PM",""
"362582663","[email protected];[email protected]","TradeDesk Creative Bundle - Add Creative (Video): Error Uploading Video to TradeDesk Creative Bundle","316288414","","uat:ready for uat","webui,TD-creatives,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=570&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","","21","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=570&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1889","","","07/21/2016 07:56:39 PM","07/21/2016 07:56:39 PM","","07/18/2016 02:30:00 PM",""
"362588556","[email protected];[email protected]","Trade Desk Creative Upload: Trade Desk Video Upload Error ","316288414","","uat:ready for uat","webui,TD-creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=566&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","","22","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=566&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>566</p>","UAT Feedback","Critical","1888","","","07/21/2016 07:56:42 PM","07/21/2016 07:56:42 PM","","07/18/2016 02:30:02 PM",""
"357322785","[email protected];[email protected]","Ad Group Targeting - Locations : Edit - Geotargets not saving","316288414","","uat:ready for uat","webui,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=421&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","","23","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=421&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 421</a></p><br/><p>https://app-playground.simpli.fi/companies/5629/clients/36094/campaigns/184800/edit_campaign#/editCampaign/workflow</p>","UAT Feedback","Critical","1682","","","07/21/2016 07:48:54 PM","07/21/2016 07:48:54 PM","","07/15/2016 01:15:13 PM",""
"364238548","[email protected];[email protected];[email protected];[email protected]","Ad Group Targeting - Dayparting: Targeting Time or Day Parting","316288414","","uat:ready for uat","webui,dayparting-targeting,TradeDesk,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=607&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","The customer answered questions","24","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=607&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a></p>","UAT Feedback","Critical","1928","","","07/21/2016 08:02:23 PM","07/21/2016 08:02:23 PM","","07/19/2016 04:45:29 PM",""
"361514576","[email protected];[email protected];[email protected]","Last Updated Field Incorrectly Defined","316288414","","uat:ready for uat","segments,backend","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=541&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","25","","","<p>The ""Last Updated"" field is not correct.</p><br/><p>It is not the last date the segment record was modified.</p><br/><p>It should be the value of the last date a rule was processed against the segment. In other words, it should be the last date the segment had a user profile opt in to it or opt out of it.</p>","UAT Feedback","Critical","1839","","","07/21/2016 08:18:46 PM","07/21/2016 08:18:46 PM","","07/18/2016 04:29:22 PM",""
"361524491","[email protected];[email protected]","Segment Rules not creating ","316288414","","uat:ready for uat","webui,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=542&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","Successfully repoduced issue.","26","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass9389230CC7A24D4D82EE91A9F31FCEE7""><br/><p>The create button will work but nothing actually creates, or at least nothing is being added to list of rules for the segment, even after user refreshes page.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1840","","","07/21/2016 08:21:38 PM","07/21/2016 08:21:38 PM","","07/20/2016 05:51:17 PM",""
"361507590","[email protected];[email protected]","Audit Log: Audit table log - does not provide sources for entity relationship","316288414","","uat:ready for uat","webui,backend,blocked","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=534&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","","27","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=534&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue </a>534</p>","UAT Feedback","Critical","1837","","","07/21/2016 08:36:13 PM","07/21/2016 08:36:13 PM","","07/12/2016 12:53:44 PM",""
"359689730","[email protected];[email protected]","Ad Group Create Wizard: edit adgroup frequency pricing slope","316288414","","uat:ready for uat","webui,TD-adgroup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=446&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Matt gave answer","28","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=446&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 446</a></p>","UAT Feedback","Low","1746","","","07/22/2016 07:30:41 PM","07/22/2016 07:30:41 PM","","07/18/2016 07:49:12 PM",""
"355869203","[email protected];[email protected]"," SMUI-Image 1/#2: Correct Styling to match MALT","316288414","","uat:ready for uat","webui,segments","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=511&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","fixed","29","","","<p><span>SMUI-Image 1/#2: Buttons and headers of tables should be changed to match all of the other styles of tables and buttons. Edit button should be changed to hyperlink segment name like seen everywhere else on MALT. Should take users to the edit/details/rules page for that segment just like all other entities in the DMP (Sites, Domain Lists). No users should be able to delete segments. Also ""Add Segment"" button should match verbiage of all other create buttons, ""+New"".</span></p>","UAT Feedback","Critical","1829","","","07/22/2016 07:32:52 PM","07/22/2016 07:32:52 PM","","07/20/2016 05:00:26 PM",""
"331355333","[email protected];[email protected]","Scheduling Popup - No specification for Time Zone - Primary Workspace","316288414","","uat:ready for uat","webui,dayparting-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=229&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","The customer answered questions","30","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=229&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 229</a></p>","UAT Feedback","Low","1235","","","07/22/2016 07:31:46 PM","07/22/2016 07:31:46 PM","","07/19/2016 04:45:51 PM",""
"354089144","[email protected];[email protected];[email protected]","Creative Details Form: Creative not displaying ""inactive"" after creative deactivated (unless you refresh)","316288414","","uat:ready for uat","webui,creative-edit","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=376&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","False","","31","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=376&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Low","1575","","","07/22/2016 07:43:12 PM","07/22/2016 07:43:12 PM","","07/21/2016 12:58:55 PM",""
"356832857","[email protected];[email protected]","Creative Create Wizard: Creative Naming","316288414","","uat:ready for uat","webui,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=413&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","fixed","32","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=413&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a> 413</p>","UAT Feedback","Low","1669","","","07/22/2016 07:44:34 PM","07/22/2016 07:44:34 PM","","07/15/2016 05:49:00 PM",""
"364293907","[email protected];[email protected]","Creative Create Wizard: Flash Upload in Simplifi Campaign Not Displaying Correctly","316288414","","uat:ready for uat","webui,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=578&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","False","","33","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=578&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 578</a></p>","UAT Feedback","Critical","1940","","","07/22/2016 07:47:29 PM","07/22/2016 07:47:29 PM","","07/20/2016 12:55:44 PM",""
"364304292","[email protected];[email protected];[email protected]","Ad Group Keywords: All Keywords Deactivated - Ad Group still Active & No Error Received","316288414","","uat:ready for uat","webui,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=573&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","can be tested
","34","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=573&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 573<br /><br />I</a>t should be develop for ad groups with status Acrive, Paused, Ended.</p>","UAT Feedback","Critical","1941","","","07/22/2016 07:53:56 PM","07/22/2016 07:53:56 PM","","07/20/2016 02:19:27 PM",""
"357326094","[email protected];[email protected]","Ad Group 3rd Party Tags List View: Inactivated Segment Not Being Pulled from Simpli.fi","316288414","","uat:ready for uat","webui,3rdpartytag-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=424&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","35","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=424&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 423</a></p><br/><p> </p><br/><p>Д. Запорожец.<br />Возможно это out of scope.</p>","UAT Feedback","Critical","1683","","","07/22/2016 08:11:38 PM","07/22/2016 08:11:38 PM","","07/19/2016 01:48:46 PM",""
"352771527","[email protected];[email protected]","DSP Update Failure","316288414","","uat:ready for uat","webui,3rdpartytag-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/Lists/Actions%20%20Issues/EditForm.aspx?ID=339&Source=%2FPrdDev%2Fdmp%2FLists%2FActions%20%20Issues","Change request","","5","False","","36","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/Lists/Actions%20%20Issues/EditForm.aspx?ID=339&Source=%2FPrdDev%2Fdmp%2FLists%2FActions%20%20Issues"" target=""_blank"">Issue</a> 339</p>","UAT Feedback","Critical","1521","","","07/22/2016 08:12:08 PM","07/22/2016 08:12:08 PM","","07/08/2016 10:07:56 AM",""
"365285964","[email protected];[email protected]","Creative Create Wizard: Trade Desk Graphics","316288414","","uat:ready for uat","webui,TradeDesk,creatives","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=606&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","","37","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=606&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 606</a></p>","UAT Feedback","Normal","1966","","","07/22/2016 08:16:53 PM","07/22/2016 08:16:53 PM","","07/21/2016 05:23:46 PM",""
"353654371","[email protected];[email protected];[email protected]","Ad Group Targeting - Locations: Removing Worldwide Restriction","316288421","","tt quality assurance:complete","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=344&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","True","Waiting for other locations improvements.
https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=/PrdDev/dmp/Lists/Actions%20%20Issues/Attachments/344/DMA%20Issue.docx&action=default","0","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=344&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Critical","1563","","","07/18/2016 02:39:19 PM","07/18/2016 02:39:57 PM","","07/13/2016 10:36:25 AM",""
"311668934","[email protected];[email protected]","WebUI: IE ""Copy to clipboard"" buttons don't work","318005340","","archive:sprint 13","webui,IE","","","","2","False","","0","","","<p><strong>IE 11 Win 7 Steps to reproduce:</strong></p><br/><p>1. OPen page <a href=""http://malt-web.dev.multiview.com/adgroup/2010/third-party-tags"">http://malt-web.dev.multiview.com/adgroup/2010/third-party-tags#</a> or <a href=""http://malt-web.dev.multiview.com/advertiser/2014/third-party-tags"">http://malt-web.dev.multiview.com/advertiser/2014/third-party-tags</a></p><br/><p>2. Open popup by clicking on View button in the table</p><br/><p>3. Click on ""Copy to clipboard"" button</p><br/><p>4. Try to paste data to <span>somewhere</span></p><br/><p><strong>Current result:</strong> The tag isn't copied to clipboard</p><br/><p><strong>Expected result:</strong> The tag is copied to clipboard</p><br/><p> </p>","Defect","High","909","","","03/29/2016 11:35:37 AM","03/29/2016 11:35:37 AM","03/29/2016","03/15/2016 04:03:02 PM","03/29/2016 11:35:37 AM"
"311063725","[email protected];[email protected]","WebUI: IE - Main page is overed by scroll","318005340","","archive:sprint 13","webui,IE","","","","2","False","","1","","","<p><strong>Steps to reproduce: IE 11 Win 7</strong></p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p>2. Look at right part</p><br/><p><strong>Current resul:</strong> The main spase is overed by scroll <a href=""http://screencast.com/t/lUaXsfmnr"">http://screencast.com/t/lUaXsfmnr</a> </p><br/><p><strong>Expected result:</strong> The main spase isn't overed by scroll </p>","Defect","High","888","","","03/29/2016 11:35:46 AM","03/29/2016 11:35:46 AM","03/29/2016","03/15/2016 04:02:56 PM","03/29/2016 11:35:46 AM"
"311068981","[email protected];[email protected]","WebUI: IE - There are two reset links in search fields","318005340","","archive:sprint 13","webui,IE","","","","2","False","","2","","","<p><strong>Steps to reproduce: IE 11 Win 7</strong></p><br/><p>1. Open advertiser list page <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p>2. Make a search</p><br/><p><strong>Current result:</strong> There are two reset links in search field when focuse is in search field <a href=""http://screencast.com/t/chcggzgIbo"">http://screencast.com/t/chcggzgIbo</a> <a href=""http://screencast.com/t/lUaXsfmnr""><br /></a></p><br/><p><strong>Expected result:</strong> There is one reset link in search field</p>","Defect","Normal","887","","","03/29/2016 11:35:55 AM","03/29/2016 11:35:55 AM","03/29/2016","03/15/2016 04:02:55 PM","03/29/2016 11:35:55 AM"
"311628047","[email protected];[email protected]","WebUI: IE - Remove free space between elements on the keywords page","318005340","","archive:sprint 13","webui,IE","","","","1","False","","3","","","<p><strong>IE 11 Win 7 Steps to reproduce:</strong></p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/adgroup/2060/keywords"">http://malt-web.dev.multiview.com/adgroup/2060/keywords</a></p><br/><p><strong>Current result;</strong> There are to many free space beetwen parts <a href=""http://screencast.com/t/SgWs9Pltb"">http://screencast.com/t/SgWs9Pltb</a> </p><br/><p><strong>Expected result</strong>: The page looks like in Chrome <a href=""http://screencast.com/t/RdoylZnEgzt3"">http://screencast.com/t/RdoylZnEgzt3</a> </p>","Defect","High","899","","","03/29/2016 11:36:04 AM","03/29/2016 11:36:04 AM","03/29/2016","03/15/2016 04:02:59 PM","03/29/2016 11:36:04 AM"
"311082634","[email protected];[email protected]","WebUI: IE - Change colour for ""close"" button of popups","318005340","","archive:sprint 13","webui,IE","","","","1","False","","4","","","<p><strong>Steps to reproduce: IE 11 Win 7</strong></p><br/><p>1. open page <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p>2. Opeb ""New Advertiser"" popup</p><br/><p><strong>Current result:</strong> The color of close button isn't wite <a href=""http://screencast.com/t/mwOAB2q7yKm2"">http://screencast.com/t/mwOAB2q7yKm2</a> </p><br/><p><strong>Expected result:</strong> The color of close button is wite for all popups</p>","Defect","Low","889","","","03/29/2016 11:36:12 AM","03/29/2016 11:36:12 AM","03/29/2016","03/15/2016 04:02:57 PM","03/29/2016 11:36:12 AM"
"316651193","[email protected];[email protected]","WebUI: Correct showing of parameters on campaign settings page ","318005340","","archive:sprint 13","webui","","","","0","False","","5","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>open page <a href=""http://malt-web.dev.multiview.com/campaign/2112/settings"">http://malt-web.dev.multiview.com/campaign/2112/settings</a></li><br/></ul><br/><p><strong>Current result:</strong> If ""Budget"" and ""Impression Cap (Lifetime)"" are undefined than they are shown as empty</p><br/><p><strong>Expected result: </strong>If ""Budget"" and ""Impression Cap (Lifetime)"" are undefined than they are shown as ""Unlimited"" as in quick view</p>","Defect","Normal","1038","","","03/29/2016 11:36:24 AM","03/29/2016 11:36:24 AM","03/29/2016","03/24/2016 01:31:34 PM","03/29/2016 11:36:24 AM"
"307428040","[email protected];[email protected]","WebUI: Keywords","318005340","","archive:sprint 13","webui","","","","0","False","","6","","","<p><span> </span></p>","Improvement","High","802","","","03/29/2016 11:36:34 AM","03/29/2016 11:36:34 AM","03/29/2016","03/16/2016 09:37:40 AM","03/29/2016 11:36:34 AM"
"281285651","[email protected];[email protected]","WebUI: Add Code Quality tools","318005340","","archive:sprint 13","webui","","","","2","False","","7","","","<p>- php code style</p><br/><p>- php mess detector</p><br/><p>- js code style</p><br/><p>- js hint</p>","Task","Normal","371","","","03/29/2016 11:36:41 AM","03/29/2016 11:36:41 AM","03/29/2016","03/18/2016 05:20:17 PM","03/29/2016 11:36:41 AM"
"315612456","[email protected];[email protected]","Backend: simplify IP Range API URLs","318005340","","archive:sprint 13","backend","","","","1","False","","8","","","","Task","Normal","966","","","03/29/2016 11:37:06 AM","03/29/2016 11:37:06 AM","03/29/2016","03/22/2016 11:50:09 AM","03/29/2016 11:37:06 AM"
"294242607","[email protected];[email protected]","Style Theme Change: Left Navigation","318005340","","archive:sprint 13","webui","","Change request","","1","False","","9","","","<p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">The following Style Changes need to be made to the Left Navigation area. The attached example shows the Campaign screen, this style theme need to be applied to all pages, tables and popups in MALT.</span></p><br/><p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">Please see attached example.</span></p><br/><p> </p><br/><p><strong><span style=""text-decoration: underline;""><span style=""color: #000000; font-family: Times New Roman; font-size: medium;"">Left Navigation</span></span></strong></p><br/><ol start=""1""><br/><li>Change the navigation header to a background color=#003a5c and font-color=white</li><br/><li>Change selected navigational option background to=#003a5c and font-color=white</li><br/><li>Add counts to all navigational options that have a table associated with it in the subpage it hyperlinks to.</li><br/></ol><br/><p> </p><br/><p style=""margin: 0in 0in 0pt;""><span style=""color: black; font-family: 'Calibri',sans-serif; font-size: 10.5pt; mso-fareast-font-family: 'Times New Roman';"">This is a high priority item and is necessary before we can show to the users for testing.</span></p>","UAT Feedback","High","528","","","03/30/2016 11:43:57 AM","03/30/2016 11:43:57 AM","03/30/2016","02/02/2016 03:21:28 PM","03/30/2016 11:43:57 AM"
"304967710","[email protected];[email protected]","Advertiser Profile Page: QuickView - Don't show DM and CM when owned by a team","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=47&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","3","False","","10","","","<p>Issue 47 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=47&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">QuickView - Don't show DM and CM when owned by a team</a></p><br/><p>When ownertype is a team, don't show the Data Manager and Creative Manager fields in the quick view.</p>","UAT Feedback","Normal","751","","","03/30/2016 11:47:42 AM","03/30/2016 11:47:42 AM","03/30/2016","03/16/2016 02:14:22 PM","03/30/2016 11:47:43 AM"
"294223478","[email protected];[email protected]","Style Theme Changes: Bread Crumbs","318005340","","archive:sprint 13","webui","","Change request","","2","False","","11","","","<p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">The following Style Changes need to be made to the Bread Crumbs area. The attached example shows the Campaign screen, this style theme need to be applied to all pages, tables and popups in MALT.</span></p><br/><p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">Please see attached example.</span></p><br/><p> </p><br/><p><strong><span style=""text-decoration: underline;"">Bread Crumbs</span></strong></p><br/><ol start=""1""><br/><li>Add the current page breadcrumbs (not hyperlinked) in a different color (greyed-out) on all pages that currently have breadcrumbs. Add the current page breadcrumbs to the advertiser profile page.</li><br/><li>Remove top & bottom padding around breadcrumbs row to make vertical height smaller. See screenshot attached.</li><br/><li>The acronyms for the badges should be “AGY” (Agency); “ADV” (Advertiser); “CGP” (Campaign Group); “CMP” (Campaign); “AGP” (Ad Group)</li><br/></ol><br/><p> </p><br/><p><span style=""color: black; font-family: 'Calibri',sans-serif; font-size: 10.5pt; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"">This is a high priority item and is necessary before we can show to the users for testing.</span></p>","UAT Feedback","High","526","","","03/30/2016 11:51:51 AM","03/30/2016 11:51:51 AM","03/30/2016","02/01/2016 05:01:01 PM","03/30/2016 11:51:51 AM"
"294228482","[email protected];[email protected]","Style Theme Changes: Top Navigation area","318005340","","archive:sprint 13","webui","","Change request","","1","False","Moved blocked task to separated card.","12","","","<p>The following Style Changes need to be made to the Main Navigation area. The attached example shows the Campaign screen, this style theme need to be applied to all pages, tables and popups in MALT.</p><br/><p>Please see attached example.</p><br/><p><strong><span style=""text-decoration: underline;"">Main Navigation</span></strong></p><br/><ol start=""1""><br/><li>Make font color = White</li><br/><li>Make background color =#003a5c</li><br/><li>Make font-weight of all navigation items=“lighter”</li><br/><li>Make MultiView Logo White (attaching png with this logo if it helps; will need to be re-sized to fit)</li><br/><li>Logout button should link to logout page that when logging back in, sends user back to MALT, not the sales control center (Moved to #535)</li><br/><li>Display hover text over the settings, users, and logout button with titles when user hovers over them</li><br/></ol><br/><p>This is a high priority item and is necessary before we can show the product to the users for UAtesting.</p>","UAT Feedback","High","525","","","03/30/2016 11:53:08 AM","03/30/2016 11:53:08 AM","03/30/2016","02/02/2016 03:21:32 PM","03/30/2016 11:53:08 AM"
"294231346","[email protected];[email protected]","Style Theme Changes: Quick View","318005340","","archive:sprint 13","webui","","Change request","","2","False","","13","","","<p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">The following Style Changes need to be made to the Quick View area. The attached example shows the Campaign screen, this style theme need to be applied to all pages, tables and popups in MALT.</span></p><br/><p><span style=""color: #393b34; font-family: 'Helvetica',sans-serif; font-size: 10pt;"">Please see attached example.</span></p><br/><p> </p><br/><p><strong><span style=""text-decoration: underline;"">Quick View</span></strong></p><br/><ol start=""1""><br/><li>Change background color to = “#003a5c”</li><br/><li>Change entity title to be before the name and make it white w/ font-weight = “Lighter”…ex. Show “<span style=""font-size: large;""><strong>Campaign</strong></span>|NIKE BOOTS” instead of what is currently there which is “<span style=""font-size: large;""><strong>NIKE BOOTS</strong></span> | Campaign”</li><br/><li>Make entity name (“Nike Boots”) have a font-weight= Normal with a color=#93d4eb</li><br/><li>Change the font-size of the title row to be 20px, keeping entity record’s name @ 75% of that.</li><br/><li>Change account # to color=#93d4eb with a font-weight=normal & font-size=13px</li><br/><li>Make title of data points to be a color=#93d4eb with a font-weight=“lighter” & size= 13px</li><br/><li>Make value of data points to be a color=white with a font-weight=“Normal” & size= 13px</li><br/></ol><br/><p style=""margin: 0in 0in 0pt;""><span style=""color: black; font-family: 'Calibri',sans-serif; font-size: 10.5pt; mso-fareast-font-family: 'Times New Roman';"">This is a high priority item and is necessary before we can show to the users for testing.</span></p><br/><p> </p>","UAT Feedback","High","527","","","03/30/2016 11:53:48 AM","03/30/2016 11:53:48 AM","03/30/2016","02/02/2016 03:21:27 PM","03/30/2016 11:53:48 AM"
"307435221","[email protected];[email protected]","Advertiser List View: Table - Undefined Dates","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=79&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","","14","","","<p>79 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=79&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Table - Undefined Dates</a></p><br/><div>In the table view or anywhere where the run dates are listed together and not separated, if both start and end date are undeterminable, like described in issue 79, we would want to show just the word “Undefined” once in there. Basically, wherever Run Dates = “Undefined – Undefined”, instead, just show…</div><br/><div> </div><br/><div><strong><span style=""font-family: Calibri, sans-serif;"" data-mce-mark=""1"">Run Dates = </span></strong><span style=""font-family: Calibri, sans-serif;"" data-mce-mark=""1"">Undefined</span></div><br/><div> </div><br/><div>I have updated Issue 79 to say this. It should have said “Undefined” instead of “Unknown”. It was incorrect but now is correct.</div><br/><div> </div><br/><div>But where start and end dates are separated out, it should look like:</div><br/><div><strong>Start Date = </strong>Undefined</div><br/><div><strong>End Date = </strong>Undefined</div><br/><div> </div><br/><div><strong>Changes should be made: </strong>on advertiser list view page, advertiser quick view, advertiser setting sub page, ad group settings page</div>","UAT Feedback","Normal","805","","","03/30/2016 12:00:38 PM","03/30/2016 12:00:38 PM","03/30/2016","03/18/2016 05:50:54 PM","03/30/2016 12:00:38 PM"
"307435225","[email protected];[email protected]","Advertiser Profile Page: Ad Groups Subpage - Align Status filter and Search bar to the left","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=86&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","","15","","","<p>Issue 86 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=86&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Ad Groups Subpage - Align Status filter and Search bar to the left</a></p>","UAT Feedback","Normal","809","","","03/30/2016 12:11:51 PM","03/30/2016 12:11:51 PM","03/30/2016","03/10/2016 05:22:51 PM","03/30/2016 12:11:51 PM"
"307436299","[email protected];[email protected]","Ad Group Create Wizard: Remove navigation workspace header bars","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=107&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","16","","","<p>Issue 107 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=107&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Remove navigation workspace header bars</a></p><br/><p><span>Remove the navigation workspace header bars. See attached images for desired setup as well as screenshot of what to remove.</span></p>","UAT Feedback","Normal","815","","","03/30/2016 12:23:18 PM","03/30/2016 12:23:18 PM","03/30/2016","03/16/2016 02:16:25 PM","03/30/2016 12:23:18 PM"
"307436300","[email protected];[email protected]","Ad Group Create Wizard: Details Step - Change Field Name - Vendor Classification","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=111&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Fix has been applied","17","","","<p>Issue 111 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=111&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Details Step - Change Field Name - Vendor Classification</a></p><br/><p><span>Change Name of Vendor Classification to ""DSP Classification"". See screenshot for example.</span></p>","UAT Feedback","Normal","817","","","03/30/2016 12:25:50 PM","03/30/2016 12:25:50 PM","03/30/2016","03/16/2016 02:17:32 PM","03/30/2016 12:25:50 PM"
"307434200","[email protected];[email protected]","Ad Group Create Wizard: Details Step - Change Field Types","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=112&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","18","","","<p>issue 112 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=112&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Details Step - Change Field Types</a></p>","UAT Feedback","Normal","819","","","03/30/2016 12:26:44 PM","03/30/2016 12:26:44 PM","03/30/2016","03/18/2016 05:52:25 PM","03/30/2016 12:26:44 PM"
"307435239","[email protected];[email protected]","Ad Group Create Wizard: Details Step - Rearrange Field Locations ","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=113&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","19","","","<p>Issue 113 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=113&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Details Step - Rearrange Field Locations</a></p><br/><p>Move ""End Date"" field to be below ""Start Date"" on form. Move ""DSP Classification"" field to be below ""MultiView Classification"" on form. See attachment for example.</p>","UAT Feedback","Normal","820","","","03/30/2016 12:27:45 PM","03/30/2016 12:27:45 PM","03/30/2016","03/16/2016 02:18:20 PM","03/30/2016 12:27:45 PM"
"307435243","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Change Field Names","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=118&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","20","","","<p>Issue 118 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=118&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Change Field Names</a></p>","UAT Feedback","Normal","823","","","03/30/2016 12:28:25 PM","03/30/2016 12:28:25 PM","03/30/2016","03/18/2016 05:53:14 PM","03/30/2016 12:28:25 PM"
"307438678","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Decrease dropdown width - bid type field","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=119&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","21","","","<p>Issue 119 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=119&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Decrease dropdown width - bid type field</a></p>","UAT Feedback","Normal","824","","","03/30/2016 12:29:04 PM","03/30/2016 12:29:04 PM","03/30/2016","03/11/2016 06:54:09 PM","03/30/2016 12:29:04 PM"
"307436307","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Move Bid Value Field","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=120&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","22","","","<p>Issue 120 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=120&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Move Bid Value Field</a></p>","UAT Feedback","Normal","825","","","03/30/2016 12:32:41 PM","03/30/2016 12:32:41 PM","03/30/2016","03/11/2016 06:54:29 PM","03/30/2016 12:32:41 PM"
"307438681","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Change Field Type","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=121&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","23","","","<p>Issue 121 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=121&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Change Field Type</a></p>","UAT Feedback","Normal","828","","","03/30/2016 12:33:16 PM","03/30/2016 12:33:16 PM","03/30/2016","03/18/2016 05:54:19 PM","03/30/2016 12:33:16 PM"
"316688565","[email protected]","Backend: Add nullable WhoId field to Audit table, and add identification parameter to all API methods","318005340","","archive:sprint 13","backend","","","","3","False","","24","","","","Improvement","Normal","1040","","","03/31/2016 10:28:49 AM","03/31/2016 10:28:49 AM","03/31/2016","03/24/2016 03:51:30 PM","03/31/2016 10:28:49 AM"
"318555381","[email protected]","Backend: IP Range. Start/End IP varbinary -> varchar","318005340","","archive:sprint 13","backend,phase-2","","","","2","False","","25","","","","Task","Normal","1060","","","03/31/2016 10:28:56 AM","03/31/2016 10:28:56 AM","03/31/2016","03/30/2016 09:37:38 AM","03/31/2016 10:28:56 AM"
"307438687","[email protected];[email protected]","Ad Group Create Wizard: Buying Strategy Step - Change Field Names","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=124&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","26","","","<p>Issue 124 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=124&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Buying Strategy Step - Change Field Names</a></p>","UAT Feedback","Normal","831","","","03/31/2016 10:36:18 AM","03/31/2016 10:36:18 AM","03/31/2016","03/23/2016 03:10:39 PM","03/31/2016 10:36:18 AM"
"307436314","[email protected];[email protected]","Ad Group Profile Page - Settings: Display - Change Field Names","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=133&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","27","","","<p>Issue 133 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=133&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Display - Change Field Names</a></p>","UAT Feedback","Normal","838","","","03/31/2016 10:36:50 AM","03/31/2016 10:36:50 AM","03/31/2016","03/21/2016 05:52:22 PM","03/31/2016 10:36:50 AM"
"307437878","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Budget Form - Change Field Names","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=145&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","28","","","<p>Issue 145 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=145&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Change Field Names</a></p>","UAT Feedback","Normal","851","","","03/31/2016 10:50:44 AM","03/31/2016 10:50:44 AM","03/31/2016","03/21/2016 02:29:06 PM","03/31/2016 10:50:44 AM"
"307435258","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Budget Form - Move Bid Value Field","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=150&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","29","","","<p>Issue 150 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=150&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Move Bid Value Field</a></p>","UAT Feedback","Normal","854","","","03/31/2016 10:52:00 AM","03/31/2016 10:52:00 AM","03/31/2016","03/21/2016 02:28:32 PM","03/31/2016 10:52:00 AM"
"307443296","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Buying Strategy Form - Change Field Names","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=151&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","30","","","<p>Issue 151 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=151&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Buying Strategy Form - Change Field Names</a></p>","UAT Feedback","Normal","855","","","03/31/2016 10:53:10 AM","03/31/2016 10:53:10 AM","03/31/2016","03/29/2016 12:29:44 PM","03/31/2016 10:53:10 AM"
"304949028","[email protected];[email protected]","Ad Group Targeting Subpage - Display: Device Types - Clean Up Display","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=160&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Please see comment in shrepoint","31","","","<p>Issue 160 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=160&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Device Types - Clean Up Display</a></p>","UAT Feedback","Normal","736","","","03/31/2016 10:53:51 AM","03/31/2016 10:53:51 AM","03/31/2016","03/02/2016 04:25:58 PM","03/31/2016 10:53:51 AM"
"319687165","[email protected]","Backend: Implement data refresh for IP Range","318005340","","archive:sprint 13","backend,phase-2","","","","2","False","","32","","","<p><span>• Data Refresh Check box when checked by the user will mark all IP Ranges for the AD Group as Inactive before the upload is performed.</span></p><br/><p><span> • Data Refresh check box when unchecked by the user will make no state changes to the IP Ranges within the AD Group before the upload is performed.</span></p>","Task","Normal","1082","","","04/01/2016 11:51:10 AM","04/01/2016 11:51:10 AM","04/01/2016","04/01/2016 10:45:45 AM","04/01/2016 11:51:10 AM"
"304466223","[email protected];[email protected];[email protected]","General: Remove Responsiveness From Popups","318005340","","archive:sprint 13","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=105&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","Child card was implemented and tested","33","","","<p>Issue 105 - <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=105&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Remove Responsiveness From Popups</a></p>","UAT Feedback","High","729","","","04/18/2016 10:27:39 AM","04/18/2016 10:27:39 AM","04/18/2016","03/03/2016 01:41:50 PM","04/18/2016 10:27:39 AM"
"318080248","[email protected]","Width of popup - Add Horizontal scrolling","321024022","","archive:sprint 14","webui","","","","0","False","","0","","","<p>Steps to reproduce:</p><br/><ul><br/><li>Open popup</li><br/><li>change size of the window</li><br/></ul><br/><p>Current result: There isn't any Horizontal scrolling <a href=""http://screencast.com/t/cS5kxeU7nN"">http://screencast.com/t/cS5kxeU7nN</a> </p><br/><p>Expected result: There is horizontal scrolling if width of popup is bigger than size of window. That allow user to work with popup for any size of window</p>","Defect","Normal","1059","304466223","304466223","04/05/2016 01:29:02 PM","04/05/2016 01:29:02 PM","04/05/2016","03/29/2016 03:39:25 PM","04/05/2016 01:29:02 PM"
"318580569","[email protected];[email protected]","Footer shouldn't be scrollable.","321024022","","archive:sprint 14","webui","","","","2","False","","1","","","","Defect","Normal","1061","302967588","302967588","04/05/2016 02:00:16 PM","04/05/2016 02:00:16 PM","04/05/2016","03/30/2016 10:47:07 AM","04/05/2016 02:00:16 PM"
"321025158","[email protected];[email protected]","Remove responsive from popup with ""browse"" button","321024022","","archive:sprint 14","webui","","","","0","False","","2","","","<p>Steps to reproduce:</p><br/><ul><br/><li>open popup ""Upload Keywords File"" and function ""Upload GeoJSON"" for ""GeoFencing"" tab on ""Location Targeting"" popup</li><br/><li>change size of the window</li><br/></ul><br/><p>Current result: There is responsive <a href=""http://screencast.com/t/U8AOufn4925"">http://screencast.com/t/U8AOufn4925</a> and button ""Browse"" changes on button without word ""Browse""</p><br/><p>Expected result: There isn't responsive for popups</p>","Defect","High","1090","304466223","304466223","04/06/2016 06:26:53 PM","04/06/2016 06:26:53 PM","04/06/2016","04/05/2016 03:04:37 PM","04/06/2016 06:26:53 PM"
"321125141","[email protected];[email protected]","Dashboard page isn't in full screen","321024022","","archive:sprint 14","webui","","","","1","False","","3","","","<p>See more: <a href=""http://screencast.com/t/hJ3jnwujI"">http://screencast.com/t/hJ3jnwujI</a> </p>","Defect","High","1091","304965405","304965405","04/06/2016 07:04:43 PM","04/06/2016 07:04:43 PM","04/06/2016","04/05/2016 05:53:53 PM","04/06/2016 07:04:43 PM"
"321573508","[email protected]","Change message for uploading IP Targeting","321024022","","archive:sprint 14","backend","","","","2","False","","4","","","<p>According to client answers <a href=""https://docs.google.com/document/d/1n9kOz7w6E1NightUwRevNPlyDytX_j8xpltWIK9Gaas/edit"">https://docs.google.com/document/d/1n9kOz7w6E1NightUwRevNPlyDytX_j8xpltWIK9Gaas/edit</a> we should show message as ""<span id=""docs-internal-guid-524b2bdd-ea2d-42b2-def1-bbf58dd4e3f7""><span>“308 IP Range(s) has been added and 10 IP Range(s) has been updated”</span></span></p>","Defect","High","1101","292775312","292775312","04/07/2016 05:02:15 PM","04/07/2016 05:02:15 PM","04/07/2016","04/06/2016 12:07:19 PM","04/07/2016 05:02:15 PM"
"322335343","[email protected]","Data refresh checkbox doesn't work","321024022","","archive:sprint 14","webui","","","","1","False","","5","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to Adgroup targeting subpage</li><br/><li>Click Ip targeting</li><br/><li>Click Upload</li><br/><li>Enable Data refreshed checkbox</li><br/><li>Upload some file with IPs</li><br/></ol><br/><p><strong>Expected result:</strong> old IP ranges are inactive, uploaded IP ranges are active</p>","Defect","Critical","1126","292775312","292775312","04/08/2016 12:08:35 PM","04/08/2016 12:08:35 PM","04/08/2016","04/07/2016 07:40:15 PM","04/08/2016 12:08:35 PM"
"320369356","[email protected]","Deploy for TT Synchronizer","321024022","","archive:sprint 14","backend","","","","3","False","","6","","04/08/2016","<p><a href=""https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend"">https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend</a></p><br/><pre><span><strong>Executive CLI<br />===========<br /></strong></span><strong><em><br class=""Apple-interchange-newline"" />Build</em></strong><br /><span>-----------------------</span></pre><br/><ul><br/><li>{project-root}/. mvn -P prod clean install</pre></li><br/></ul><br/><pre><span><strong><em> </em></strong></span></pre><br/><pre><strong><em>Outpu structure</em></strong><br />-----------------------</pre><br/><ul><br/><li>./executive-cli/target/executive-cli-{version}.jar</li><br/><li>./executive-cli/target/classes/logback.xml</li><br/><li>./executive-cli/target/classes/application.yml</li><br/></ul><br/><pre><br /><span><strong><em>Deployment structure</em></strong><br /></span><span>-------------------------------</span></pre><br/><ul><br/><li>/opt/ad-tech-assets/executive-cli/bin/executive-cli-{version}.jar</li><br/><li>/opt/ad-tech-assets/executive-cli/conf/logging.xml</li><br/><li>/opt/ad-tech-assets/executive-cli/conf/application.yml</li><br/></ul>","Task","Normal","1085","","","04/11/2016 10:50:55 AM","04/11/2016 10:50:55 AM","04/11/2016","04/04/2016 08:31:55 AM","04/11/2016 10:50:55 AM"
"254612014","[email protected]","Backend: Implement budget control mechanism","321024022","","archive:sprint 14","extension,backend,budget,phase-2","","","","5","False","","7","","","","Feature","Normal","8","","","04/11/2016 10:51:02 AM","04/11/2016 10:51:02 AM","04/11/2016","03/21/2016 03:48:47 PM","04/11/2016 10:51:03 AM"
"276018294","[email protected];[email protected]","Backend: CampaignGroup create/update/delete","321024022","","archive:sprint 14","backend,phase-2","","","","5","False","","8","","","<ul><br/><li>User Stories:</li><br/></ul><br/><p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/SitePages/Home.aspx?RootFolder=%2FPrdDev%2Fdmp%2FShared%20Documents%2FMALT%2FMALT%20User%20Stories%20%2D%20Phase%202%2F3%2E%20%28Needs%20Review%29%20Campaign%20Group%2F%28Needs%20Review%29%20Campaign%20Group%2E%20Create%2C%20List%20View%2C%20Edit%2DDetail&FolderCTID=0x012000B0C9AFAB7E1FAA45B2EE2A2CBE8784EB&View=%7B0BBDB8BA%2DF6AA%2D4DB9%2D9D8C%2D9C1C68B7824A%7D"">https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/SitePages/Home.aspx?RootFolder=%2FPrdDev%2Fdmp%2FShared%20Documents%2FMALT%2FMALT%20User%20Stories%20%2D%20Phase%202%2F3%2E%20%28Needs%20Review%29%20Campaign%20Group%2F%28Needs%20Review%29%20Campaign%20Group%2E%20Create%2C%20List%20View%2C%20Edit%2DDetail&FolderCTID=0x012000B0C9AFAB7E1FAA45B2EE2A2CBE8784EB&View=%7B0BBDB8BA%2DF6AA%2D4DB9%2D9D8C%2D9C1C68B7824A%7D</a></p><br/><ul><br/><li><span style=""line-height: 22px;"">Create new migration script for CampaignGroup entity</span></li><br/><li>Implement CampaignGroup endpoint with Get/Create/Update/Delete methods</li><br/></ul>","Feature","Normal","275","","","04/11/2016 10:51:15 AM","04/11/2016 10:51:15 AM","04/11/2016","04/01/2016 11:49:37 AM","04/11/2016 10:51:15 AM"
"321015213","[email protected]","Backend: TT Synchronizer should support date offset in days to be able to pull statistics for n days before today","321024022","","archive:sprint 14","backend","","","","2","False","","9","","","","Feature","Normal","1087","","","04/11/2016 10:51:23 AM","04/11/2016 10:51:23 AM","04/11/2016","04/05/2016 12:02:28 PM","04/11/2016 10:51:23 AM"
"275550584","[email protected];[email protected]","Backend: Creatives. Create/update/delete/associate.","321024022","","archive:sprint 14","backend,phase-2","","","","5","False","","10","","","","Feature","Normal","258","274526798","274526798","04/11/2016 10:51:36 AM","04/11/2016 10:51:36 AM","04/11/2016","03/21/2016 03:01:34 PM","04/11/2016 10:51:36 AM"
"322681744","[email protected]","Backend: domains in domain lists should not be empty or null","321024022","","archive:sprint 14","backend","","","","2","False","","11","","","<p>We need to add validation rules for this cases</p>","Improvement","Normal","1132","","","04/11/2016 10:51:44 AM","04/11/2016 10:51:44 AM","04/11/2016","04/08/2016 12:06:21 PM","04/11/2016 10:51:44 AM"
"322717483","[email protected]","Backend: evict all inconsistent data from dev/qa environments","321024022","","archive:sprint 14","backend","","","","3","False","","12","","","","Task","Normal","1133","","","04/11/2016 10:51:54 AM","04/11/2016 10:51:54 AM","04/11/2016","04/08/2016 02:46:04 PM","04/11/2016 10:51:54 AM"
"323453947","[email protected];[email protected]","Backend: Azkaban job should return correct status","321024022","","archive:sprint 14","backend","","","","2","False","","13","","","","Task","Normal","1142","","","04/11/2016 05:04:34 PM","04/11/2016 05:04:34 PM","04/11/2016","04/11/2016 04:34:36 PM","04/11/2016 05:04:34 PM"
"322748472","[email protected];[email protected]","Broken quick view with real data","321024022","","archive:sprint 14","webui","","","","2","False","","14","","","<p><strong>See more: </strong><a href=""http://screencast.com/t/jzgbB0MCgu"">http://screencast.com/t/jzgbB0MCgu</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to advertiser profile page</li><br/><li>Set person owner</li><br/><li>Set Data manager and Createive manager as ""Abhijeet Chakraverty""</li><br/><li>Save data</li><br/><li>Decrease browser size (7 columns are still displayed. If you decrease it one more pixel 7th column will be moved to next lone)</li><br/></ol><br/><p><strong>Actual result: </strong>data on the last column is cut and collapsed</p><br/><p><strong>Expected result:</strong> no collapsing or cuttin data</p>","Defect","High","1134","304967706","304967706","04/11/2016 07:09:50 PM","04/11/2016 07:09:50 PM","04/11/2016","04/11/2016 10:59:40 AM","04/11/2016 07:09:50 PM"
"323336138","[email protected];[email protected]","Domain list page on advertiser level doesn't have full size","321024022","","archive:sprint 14","webui","","","","1","False","","15","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/44LrgJdmm"">http://screencast.com/t/44LrgJdmm</a> </p><br/><p>The same for Adgroup tab</p>","Defect","High","1138","304965405","304965405","04/11/2016 07:11:06 PM","04/11/2016 07:11:06 PM","04/11/2016","04/11/2016 11:31:13 AM","04/11/2016 07:11:06 PM"
"322667312","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Budget parameters","321024022","","archive:sprint 14","webui","","","","0","False","","16","","","<p><strong>1. The budget of any Ad Group can't be greater than the Campaign's Budget. Use the same rule for Total, Monthly and Daily Budget</strong></p><br/><p>Use <strong>messageses:</strong> ""Budget cannot be greater than the Campaign Budget ($ 474,578.00)."" ""Monthly Budget cannot be greater than the Campaign Budget ($ 474,578.00)."". ""Daily Budget cannot be greater than the Campaign Budget ($ 474,578.00).""</p><br/><p><strong>2. Add Group Create Wizard: Add Validation between total, monthly and daily parameters. </strong>Monthly parameter shouldn't be more than Total, Daily parameter shouldn't de more than total and daily parameters</p><br/><ul><br/><li><strong>Case 1.</strong> Daily more than total - highlighting field daily, error messages for daily field. </li><br/><li><strong>Case 2.</strong> Daily more than monthly - highlighting field daily, error messages for daily fields. </li><br/><li><strong>Case3. </strong>Monthly more than total - highlighting field monthly, error messages for monthly fields. </li><br/></ul><br/><p><strong>Error messaged for Budget fields: </strong></p><br/><ul><br/><li>""Monthly Budget cannot be greater than Budget.""</li><br/><li>""Daily Budget cannot be greater than Budget.""</li><br/><li>""Daily Budget cannot be greater than Monthly Budget.""</li><br/></ul>","Improvement","High","1130","318598755","318598755","04/11/2016 09:47:41 PM","04/11/2016 09:47:41 PM","04/11/2016","04/08/2016 10:37:51 AM","04/11/2016 09:47:41 PM"
"322674740","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Impression Cap","321024022","","archive:sprint 14","webui","","","","0","False","","17","","","<p><strong><span data-mce-mark=""1"">1. the Imp Cap of any Ad Group can't be greater than the Campaign's Imp Cap. - Use this rule for Total, Monthly and Daily Impression Cap</span></strong></p><br/><p><span data-mce-mark=""1"">Use <strong>messageses:</strong> ""Impression Cap cannot be greater than the Campaign Impression Cap ( 474,578)."" ""Monthly Impression Cap cannot be greater than the Campaign Impression Cap ( 474,578)."" ""Daily Impression Cap cannot be greater than the Campaign Impression Cap ( 474,578).""</span></p><br/><p><strong>2. Add Group Create Wizard: Add Validation between total, monthly and daily parameters. </strong>Monthly parameter shouldn't be more than Total, Daily parameter shouldn't de more than total and daily parameters</p><br/><ul><br/><li><strong>Case 1.</strong> Daily more than total - highlighting field daily, error messages for daily field. </li><br/><li><strong>Case 2.</strong> Daily more than monthly - highlighting field daily, error messages for daily field. </li><br/><li><strong>Case3. </strong>Monthly more than total - highlighting field monthly, error messages for monthly field. </li><br/></ul><br/><p><strong>Error messaged for Impression Cap fields: </strong></p><br/><ul><br/><li>""Monthly Impression Cap cannot be greater than Impression Cap.""</li><br/><li>""Daily Impression Cap cannot be greater than Impression Cap.""</li><br/><li>""Daily Impression Cap cannot be greater than Monthly Impression Cap.""</li><br/></ul>","Improvement","High","1129","318595239","318595239","04/11/2016 09:47:41 PM","04/11/2016 09:47:41 PM","04/11/2016","04/08/2016 10:24:12 AM","04/11/2016 09:47:41 PM"
"321606566","[email protected];[email protected];[email protected]","Shouldn't be opportunity to add deactive domain list to adgroup targeting","321024022","","archive:sprint 14","webui","","","","0","False","","18","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Make sure that there is domain list with deacive status</li><br/><li>go to any adgroup targeting page</li><br/><li>Click targeting</li><br/><li>Click Domain list targeting</li><br/><li>Select necessary type of list (the same as the domain list)</li><br/><li>Try to add the domain list</li><br/></ol><br/><p><strong>Actual result:</strong> there is the domain list in a table and user can add it</p><br/><p><strong>Expected result:</strong> there isn't the domain list in available domain lists</p>","Defect","Critical","1102","319150432","319150432","04/11/2016 09:48:19 PM","04/11/2016 09:48:19 PM","04/11/2016","04/06/2016 02:36:55 PM","04/11/2016 09:48:19 PM"
"323336079","[email protected]","Backend: move all campaign management pipelines to separate module","321024022","","archive:sprint 14","backend","","","","2","False","","19","","","","Improvement","Normal","1135","","","04/12/2016 06:23:20 PM","04/12/2016 06:23:20 PM","04/12/2016","04/11/2016 10:47:41 AM","04/12/2016 06:23:20 PM"
"274633387","[email protected]","WebUI: Find a way to pass parameters from Yii to JS","321024022","","archive:sprint 14","webui","","","","3","False","","20","","","","Improvement","Normal","251","","","04/12/2016 06:23:41 PM","04/12/2016 06:23:41 PM","04/12/2016","03/30/2016 12:25:13 PM","04/12/2016 06:23:41 PM"
"292775312","[email protected];[email protected];[email protected]","WebUI: AdGroup subpages - IP Targeting","321024022","","archive:sprint 14","webui,sprint 13,sprint 14","","","","8","False","Child card was fixed","21","","","<p><strong>DOD: Look at the document </strong><a href=""https://docs.google.com/document/d/1wk1PUh8J986B1D6whP6iost3--WWEj_7UDiqcPT1geU/edit"">https://docs.google.com/document/d/1wk1PUh8J986B1D6whP6iost3--WWEj_7UDiqcPT1geU/edit</a> </p><br/><p>Bugs and recomendation: <a href=""https://docs.google.com/document/d/1NgGW5SBUbFexwUMZwJADUrU9MuYYUV1QEgI6Du3pmeM/edit"">https://docs.google.com/document/d/1NgGW5SBUbFexwUMZwJADUrU9MuYYUV1QEgI6Du3pmeM/edit</a> </p>","Feature","Normal","520","306969234","306969234","04/12/2016 06:37:04 PM","04/12/2016 06:37:04 PM","04/12/2016","03/21/2016 03:13:54 PM","04/12/2016 06:37:04 PM"
"324035123","[email protected]","Domain list -Advertiser level: Function of adding new domain doesn't work for whitelist","321024022","","archive:sprint 14","webui","","","","1","False","","22","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open profile page of advertiser domain list - whitelist <a href=""http://malt-qa.uat.multiview.com/advertiser-domain-list/3160/settings"">http://malt-qa.uat.multiview.com/advertiser-domain-list/3160/settings</a> </li><br/><li>try to add new domain</li><br/></ul><br/><p>Current result: New domain cannot be added. There is error <a href=""http://screencast.com/t/CcHPet5t"">http://screencast.com/t/CcHPet5t</a></p><br/><p>Expected result: the function works</p>","Defect","Critical","1145","","","04/12/2016 06:47:23 PM","04/12/2016 06:47:23 PM","04/12/2016","04/12/2016 01:14:38 PM","04/12/2016 06:47:23 PM"
"322133837","[email protected];[email protected]","There isn't validation for BID on UI side","321024022","","archive:sprint 14","webui","","","","0","False","","23","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to create ad goup form</li><br/><li>Pass the firs step</li><br/><li>Set Bid as 35</li><br/><li>Click Next</li><br/><li>Pass third step</li><br/><li>Click Create</li><br/></ol><br/><p><strong>Actual result:</strong> nothing happens and backend error <a href=""http://screencast.com/t/eRsl8GhGLgCC"">http://screencast.com/t/eRsl8GhGLgCC</a> </p><br/><p><strong>Expected result: </strong>there isn't opportinity to go to 3rd step when bid is more 30</p>","Defect","Critical","1123","","","04/12/2016 06:53:13 PM","04/12/2016 06:53:13 PM","04/12/2016","04/07/2016 12:47:15 PM","04/12/2016 06:53:13 PM"
"322661156","[email protected];[email protected]","Backend: Update spring boot version, add malt root pom parent dependency.","321024022","","archive:sprint 14","backend","","","","3","False","","24","","","","Improvement","Normal","1128","","","04/13/2016 10:14:10 AM","04/13/2016 10:14:10 AM","04/13/2016","04/08/2016 10:00:29 AM","04/13/2016 10:14:10 AM"
"321629088","[email protected]","Backend: Add SiFiDictionary in registry classes","321024022","","archive:sprint 14","backend","","","","2","False","","25","","","<p>- Add SiFiDictionary in registry classes</p><br/><p>- Implement equals method in registry classes</p>","Improvement","Normal","1103","","","04/13/2016 11:07:37 AM","04/13/2016 11:07:37 AM","04/13/2016","04/06/2016 03:29:53 PM","04/13/2016 11:07:37 AM"
"321634210","[email protected]","Backend: Check and fix Simpli.fi pipelines","321024022","","archive:sprint 14","backend","","","","2","False","","26","","","","Defect","Normal","1104","","","04/13/2016 11:11:28 AM","04/13/2016 11:11:28 AM","04/13/2016","04/06/2016 03:35:20 PM","04/13/2016 11:11:28 AM"
"318598750","[email protected];[email protected];[email protected];[email protected]","Ad Grop Create Wizard: Validation Ad Group End Date at least 1day + Ad Group Start Date","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=170&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","27","","","<p>Issue 170 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=170&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Validation Ad Group End Date at least 1day + Ad Group Start Date</a><a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=170&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self""><br /></a></p>","UAT Feedback","High","1066","","","04/14/2016 09:24:30 AM","04/14/2016 09:24:30 AM","04/14/2016","04/04/2016 02:56:06 PM","04/14/2016 09:24:30 AM"
"318598755","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Validation Ad Group Budget can't be > than Camp. Budget","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=173&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Improvement card was developed and tested","28","","","<p>Issue 173 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=173&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Validation Ad Group Budget can't be > than Camp. Budget</a></p>","UAT Feedback","High","1069","","","04/14/2016 09:29:29 AM","04/14/2016 09:29:29 AM","04/14/2016","04/04/2016 02:56:29 PM","04/14/2016 09:29:29 AM"
"318595239","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Ad Grp Imp Cap can't be greater the Camp. Imp Cap","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=174&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Improvement card was developed and tested","29","","","<p>Issue 174 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=174&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Ad Grp Imp Cap can't be greater the Camp. Imp Cap</a></p>","UAT Feedback","High","1070","","","04/14/2016 09:58:13 AM","04/14/2016 09:58:13 AM","04/14/2016","04/04/2016 02:56:35 PM","04/14/2016 09:58:13 AM"
"318597356","[email protected];[email protected];[email protected]","New Advertiser create Wizard: Advertiser Service Level changed to Values","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=175&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Fixed","30","","","<p>Issue 175 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=175&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Advertiser Service Level changed to Values</a></p>","UAT Feedback","High","1071","","","04/14/2016 09:58:34 AM","04/14/2016 09:58:34 AM","04/14/2016","04/01/2016 07:46:27 PM","04/14/2016 09:58:34 AM"
"322119502","[email protected];[email protected]","Advertiser Domain List: Advertiser Domain State will not stay Changed ","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=190&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","","31","","","<p>Issue 190 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=190&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Advertiser Domain State will not stay Changed </a></p>","UAT Feedback","High","1113","","","04/14/2016 10:00:30 AM","04/14/2016 10:00:30 AM","04/14/2016","04/07/2016 11:51:42 AM","04/14/2016 10:00:30 AM"
"322107380","[email protected];[email protected]","Domain List List View: Domain List name change does not show up on Domain List View page","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=192&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","","32","","","<p>Issue 192 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=192&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Domain List name change does not show up on Domain List View page</a></p>","UAT Feedback","High","1118","","","04/14/2016 10:00:55 AM","04/14/2016 10:00:55 AM","04/14/2016","04/07/2016 11:52:42 AM","04/14/2016 10:00:55 AM"
"318580663","[email protected];[email protected];[email protected];[email protected]","Ad Group Create Wizard: Validation Error - Start Date Default ≥ Today or Camp SDate","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=169&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","33","","","<p>Issue 169 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=169&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Validation Error - Start Date Default ≥ Today or Camp SDate</a></p>","UAT Feedback","High","1065","","","04/14/2016 10:01:26 AM","04/14/2016 10:01:26 AM","04/14/2016","04/04/2016 02:56:02 PM","04/14/2016 10:01:26 AM"
"324618307","[email protected]","Backend: Refactor steps. Service -> bean","321024022","","archive:sprint 14","backend","","","","3","False","","34","","","","Task","Normal","1157","","","04/14/2016 11:18:34 AM","04/14/2016 11:18:34 AM","04/14/2016","04/13/2016 11:10:53 AM","04/14/2016 11:18:34 AM"
"323336080","[email protected]","Update deployment configuration for new with influxdb settings","321024022","","archive:sprint 14","backend","","","","2","False","","35","","","<p>New setings can be found at:<br />https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend/pull-requests/21/feature-leankit-1115-push-metrics-influxdb/diff</p>","Task","Normal","1137","","","04/14/2016 02:00:52 PM","04/14/2016 02:00:52 PM","04/14/2016","04/11/2016 10:49:55 AM","04/14/2016 02:00:52 PM"
"323332157","[email protected];[email protected]","Backend: design & implement metrics mechanism for spring data repositories","321024022","","archive:sprint 14","backend","","","","3","False","","36","","","","Improvement","Normal","1136","","","04/14/2016 02:01:17 PM","04/14/2016 02:01:17 PM","04/14/2016","04/11/2016 10:48:21 AM","04/14/2016 02:01:17 PM"
"322102402","[email protected];[email protected]","Backend: Push CampaignManagerApi metrics to influxdb.","321024022","","archive:sprint 14","backend","","","","3","False","","37","","","<p>DataLake team have already implemented writer to inlfuxdb.</p><br/><p>We need to adopt their solution to campaign-manager-api application.</p>","Feature","Normal","1115","","","04/14/2016 02:01:24 PM","04/14/2016 02:01:24 PM","04/14/2016","04/07/2016 10:05:24 AM","04/14/2016 02:01:24 PM"
"318597347","[email protected];[email protected];[email protected];[email protected]","Campaing Edit Wizard: Validation Campaign End Edit ","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=172&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","38","","","<p>Issue 172 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=172&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Validation Campaign End Edit</a></p>","UAT Feedback","High","1068","","","04/15/2016 09:33:26 AM","04/15/2016 09:33:26 AM","04/15/2016","04/04/2016 02:56:29 PM","04/15/2016 09:33:26 AM"
"322117610","[email protected];[email protected]","Advertiser List View: New Advertiser - New Advertiser only appears after pressing F5 refresh","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=100&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","39","","","<p>Issue 100 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=100&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">New Advertiser - New Advertiser only appears after pressing F5 refresh</a></p>","UAT Feedback","High","1114","","","04/15/2016 09:34:41 AM","04/15/2016 09:34:41 AM","04/15/2016","04/07/2016 11:52:11 AM","04/15/2016 09:34:41 AM"
"325210228","[email protected];[email protected]","Edit Campaign: Edit Campaign unable to change End Date to Undefined for a Campaign","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=218&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","40","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=218&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 218</a></p>","UAT Feedback","Critical","1175","","","04/15/2016 09:35:19 AM","04/15/2016 09:35:19 AM","04/15/2016","04/14/2016 11:16:28 AM","04/15/2016 09:35:19 AM"
"319148129","[email protected];[email protected];[email protected]","Ad Group Profile Page: 3rd Party Tags Only for Site Retargeting Ad Groups & Keywords for Search","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=178&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","fixed","41","","","<p>Issue 178 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=178&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">3rd Party Tags Only for Site Retargeting Ad Groups & Keywords for Search</a></p>","UAT Feedback","Critical","1077","","","04/15/2016 11:09:21 AM","04/15/2016 11:09:21 AM","04/15/2016","03/31/2016 01:59:28 PM","04/15/2016 11:09:21 AM"
"304935457","[email protected];[email protected]","Ad Group Targeting Subpage - Location Targeting: Flipping between Geotargeting and GeoFencing","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=166&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","","42","","","<p>Issue 166 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=166&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Flipping between Geotargeting and GeoFencing</a></p><br/><p>If we click on the title - then all is ok, but if we click on the radio button - then tab is opened but there is no point. http://screencast.com/t/u3xR2NbeIyzW</p>","UAT Feedback","Critical","739","","","04/15/2016 11:09:59 AM","04/15/2016 11:09:59 AM","04/15/2016","02/26/2016 01:48:32 PM","04/15/2016 11:09:59 AM"
"319150430","[email protected];[email protected]","Advertiser Profile Page: Quick View - Change Field Order","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=72&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","43","","","<p>Issue 72 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=72&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Quick View - Change Field Order</a></p>","UAT Feedback","Critical","1076","","","04/15/2016 11:10:38 AM","04/15/2016 11:10:38 AM","04/15/2016","03/31/2016 01:59:29 PM","04/15/2016 11:10:38 AM"
"325215500","[email protected];[email protected]","Advertiser Profile page Campaign Subpage: Campaign subpage not being displayed for some advertisers.","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=217&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","44","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=217&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 217</a></p><br/><p>Link: <a href=""http://malt.dmp.uat.multiview.com/advertiser/37/campaigns"">http://malt.dmp.uat.multiview.com/advertiser/37/campaigns</a> </p><br/><p>Looks like this error occurs because of apostrophe in advertiser name: <a href=""http://screencast.com/t/0hwS8EIeARQ"">http://screencast.com/t/0hwS8EIeARQ</a> </p>","UAT Feedback","Critical","1173","","","04/15/2016 11:11:15 AM","04/15/2016 11:11:15 AM","04/15/2016","04/14/2016 11:08:03 AM","04/15/2016 11:11:15 AM"
"319150432","[email protected];[email protected];[email protected];[email protected]","Domain List: Change State of Domain Lists and Domains","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=180&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","Fixed","45","","","<p>Issue 180 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=180&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Change State of Domain Lists and Domains</a></p>","UAT Feedback","Critical","1078","","","04/15/2016 11:12:15 AM","04/15/2016 11:12:15 AM","04/15/2016","03/31/2016 01:59:30 PM","04/15/2016 11:12:15 AM"
"319698891","[email protected];[email protected]","Advertiser List View: Ad Group count - does agree with Profile page","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=96&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","Got details from client and able to replicate an issue.","46","","","<p>Issue 96 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=96&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Group count - does agree with Profile page</a></p>","UAT Feedback","High","1083","","","04/15/2016 11:14:27 AM","04/15/2016 11:14:27 AM","04/15/2016","04/04/2016 02:56:29 PM","04/15/2016 11:14:27 AM"
"304967706","[email protected];[email protected]","Advertiser Profile Page: QuickView - Add Quick View Expansion","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=46&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","5","False","fixed","47","","","<p>Issue 46 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=46&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">QuickView - Add Quick View Expansion</a></p><br/><p><span>Quick Views And Table Views </span>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B408DAA8B-D0B5-42D7-BD61-81CE405ECE9B%7D&file=Quick%20Views%20And%20Table%20Views.xlsx&action=default</p>","UAT Feedback","High","749","","","04/15/2016 11:15:04 AM","04/15/2016 11:15:04 AM","04/15/2016","03/03/2016 01:42:14 PM","04/15/2016 11:15:04 AM"
"304967770","[email protected];[email protected]","Advertiser Profile Page: Ad Groups Subpage - Change Columns Order","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=60&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","48","","","<p>Issue 60 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=60&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Groups Subpage - Change Columns Order</a></p>","UAT Feedback","High","756","","","04/15/2016 11:15:28 AM","04/15/2016 11:15:28 AM","04/15/2016","02/29/2016 05:45:16 PM","04/15/2016 11:15:28 AM"
"318595236","[email protected];[email protected];[email protected];[email protected]","Campaign Edit Wizard: Validation Campaing Start Date Edit","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=171&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","49","","","<p>Issue 171 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=171&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Validation Campaing Start Date Edit</a></p>","UAT Feedback","High","1067","","","04/15/2016 11:16:24 AM","04/15/2016 11:16:24 AM","04/15/2016","04/04/2016 02:56:29 PM","04/15/2016 11:16:24 AM"
"302963433","[email protected];[email protected];[email protected]","Campaign Profile Page: Ad Groups Subpage - Change Column Order","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=71&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Fixed","50","","","<p>Issue 71 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=71&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Groups Subpage - Change Column Order</a></p>","UAT Feedback","High","703","","","04/15/2016 11:18:24 AM","04/15/2016 11:18:24 AM","04/15/2016","02/29/2016 10:14:11 AM","04/15/2016 11:18:24 AM"
"304965405","[email protected];[email protected];[email protected]","General: Expand Pages to Full Height","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=2&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","5","False","fixed","51","","","<p>Issue 2 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=2&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Expand Pages to Full Height</a></p>","UAT Feedback","High","753","","","04/15/2016 11:18:51 AM","04/15/2016 11:18:51 AM","04/15/2016","03/03/2016 01:42:09 PM","04/15/2016 11:18:51 AM"
"302967588","[email protected];[email protected]","General: Only Main Workspace Should Scroll","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=3&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","small bug was fixed and tested","52","","","<p>Issue 3 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=3&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Only Main Workspace Should Scroll</a></p>","UAT Feedback","High","700","","","04/15/2016 11:19:11 AM","04/15/2016 11:19:11 AM","04/15/2016","02/29/2016 10:13:54 AM","04/15/2016 11:19:11 AM"
"291029689","[email protected];[email protected];[email protected]","General: Required fields on any edit or create form","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=20&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","53","","","<ul><br/><li><br/><p>Any field that is required on any edit or create form should have an asterisk next to the field name.</p><br/></li><br/></ul>","UAT Feedback","High","500","","","04/15/2016 11:19:37 AM","04/15/2016 11:19:37 AM","04/15/2016","02/08/2016 12:29:48 PM","04/15/2016 11:19:37 AM"
"307441683","[email protected];[email protected]","Ad Group Create Wizard: Summary Step - Undefined Budgets and Impression Caps","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=129&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","54","","","<p>Issue 129 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=129&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Summary Step - Undefined Budgets and Impression Caps</a> </p><br/><ul><br/><li>summary step for create wizard</li><br/><li>settings page of ad group <a href=""http://screencast.com/t/ekb4Ex8xhJ"">http://screencast.com/t/ekb4Ex8xhJ</a> </li><br/><li>header (quick view) on ad group profile page <a href=""http://screencast.com/t/2dDMJCKXFXDd"">http://screencast.com/t/2dDMJCKXFXDd</a> </li><br/></ul>","UAT Feedback","Normal","836","","","04/15/2016 11:24:53 AM","04/15/2016 11:24:53 AM","04/15/2016","03/18/2016 05:56:09 PM","04/15/2016 11:24:53 AM"
"325208322","[email protected];[email protected]","Backend: RestTemplate metrics for URL patterns","321024022","","archive:sprint 14","backend","","","","3","False","","55","","","<p>We need Meters and Timers for RestTemplate request-responses grouped by request URL patterns like:</p><br/><p>URL -> metric-url-part</p><br/><p>.../clients/5629 -> ...clients</p><br/><p>.../clients/5629/campaigns/5629 -> ...clients.campaigns</p><br/><p>.../clients/5629/campaigns/5629/ads -> ...clients.campaigns.ads</p><br/><p>Metrics to add:</p><br/><ul><br/><li><prefix>.response.500.count</li><br/><li><prefix>.response.422.count</li><br/><li><prefix>.<request-method>.response.500.count</li><br/><li><prefix>.<request-method>.response.422.count</li><br/><li><prefix>.<url-part>.count</li><br/><li><prefix>.<url-part>.time</li><br/><li><prefix>.<url-part>.error.count</li><br/><li><prefix>.<url-part>.response.500.count</li><br/><li><prefix>.<url-part>.response.422.count</li><br/><li><prefix>.<url-part>.<request-method>.count</li><br/><li><prefix>.<url-part>.<request-method>.time</li><br/><li><prefix>.<url-part>.<request-method>.error.count</li><br/><li><prefix>.<url-part>.<request-method>.response.500.count</li><br/><li><prefix>.<url-part>.<request-method>.response.400.count</li><br/></ul>","Improvement","Normal","1174","","","04/18/2016 08:35:35 AM","04/18/2016 08:35:35 AM","04/18/2016","04/14/2016 10:19:11 AM","04/18/2016 08:35:35 AM"
"325193294","[email protected];[email protected]","Backend: 'Source' field of audit records for AuditType 'Data' should contain [Entity/Relationship name]","321024022","","archive:sprint 14","backend","","","","3","False","","56","","","<p>Full description can be found here</p><br/><p>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={A7312801-A29F-4388-9F48-2FD7E52B28DD}&file=DMP%20System%20Design.docx&action=default&DefaultItemOpen=1</p>","Defect","Normal","1172","","","04/18/2016 08:36:19 AM","04/18/2016 08:36:19 AM","04/18/2016","04/14/2016 08:49:08 AM","04/18/2016 08:36:19 AM"
"322111580","[email protected];[email protected];[email protected]","Advertiser Profile Page: Settings Sub page Edit box not displaying field selections on load correctly","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=103&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","57","","","<p>Issue 103 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=103&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Settings Sub page Edit box not displaying field selections on load correctly</a></p>","UAT Feedback","High","1116","","","04/18/2016 10:20:29 AM","04/18/2016 10:20:29 AM","04/18/2016","04/13/2016 02:32:20 PM","04/18/2016 10:20:29 AM"
"304940945","[email protected];[email protected]","Ad Group Targeting Subpage - Operating Systems Edit Form: Selected Expansion/Collapsing Not Functioning ","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=161&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","done","58","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=161&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Selected Expansion/Collapsing Not Functioning</a> Issue 161</p>","UAT Feedback","High","737","","","04/18/2016 10:25:33 AM","04/18/2016 10:25:33 AM","04/18/2016","03/03/2016 01:42:13 PM","04/18/2016 10:25:33 AM"
"319154077","[email protected];[email protected]","3rd Party Tags: Tags with Spaces in the name","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=177&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","not need to create script","59","","","<p>Issue 177 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=177&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Tags with Spaces in the name</a></p>","UAT Feedback","High","1079","","","04/18/2016 10:28:14 AM","04/18/2016 10:28:14 AM","04/18/2016","04/04/2016 02:56:29 PM","04/18/2016 10:28:14 AM"
"307441296","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Buying Strategy - Change Field Types","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=152&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Issue has been fixed. Ready for test.","60","","","<p>Issue 152 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=152&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Buying Strategy - Change Field Types</a></p>","UAT Feedback","Normal","856","","","04/18/2016 10:28:52 AM","04/18/2016 10:28:52 AM","04/18/2016","03/29/2016 12:33:43 PM","04/18/2016 10:28:52 AM"
"318582311","[email protected];[email protected]","General: Budget Step - Make Fields Currency Fields","321024022","","archive:sprint 14","webui","","Unclear requirements","","1","False","","61","","","<p>Issue 116 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=116&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Budget Step - Make Fields Currency Fields</a><span><br /></span></p><br/><p>Crads 731, 733, 806</p>","UAT Feedback","High","1062","304468447","304468447","04/18/2016 10:29:37 AM","04/18/2016 10:29:37 AM","04/18/2016","04/04/2016 03:19:28 PM","04/18/2016 10:29:37 AM"
"307436311","[email protected];[email protected]","Ad Group Create Wizard: Buying Strategy Step - Rearrange Fields & Add Sub-section Titles","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=127&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Done","62","","","<p>Issue 127 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=127&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Buying Strategy Step - Rearrange Fields & Add Sub-section Titles</a></p>","UAT Feedback","Normal","834","","","04/18/2016 10:35:08 AM","04/18/2016 10:35:08 AM","04/18/2016","03/23/2016 03:12:12 PM","04/18/2016 10:35:08 AM"
"307436310","[email protected];[email protected]","Ad Group Create Wizard: Buying Strategy Step - Change Field Types","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=125&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","Issue has been fixed. Ready for test.","63","","","<p>Issue 125 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=125&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Buying Strategy Step - Change Field Types</a></p>","UAT Feedback","Normal","832","","","04/18/2016 10:36:08 AM","04/18/2016 10:36:08 AM","04/18/2016","03/23/2016 03:11:36 PM","04/18/2016 10:36:08 AM"
"307435222","[email protected];[email protected]","Campaign Create Form: Budget Validation","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=83&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","fixed and passed UAT","64","","","<p>Issue 83 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=83&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Validation</a></p>","UAT Feedback","Normal","806","","","04/18/2016 10:36:36 AM","04/18/2016 10:43:11 AM","04/18/2016","03/18/2016 05:55:00 PM","04/18/2016 10:36:36 AM"
"291016523","[email protected];[email protected]","General: Width on left Nav Vs. Main Workspace","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=40&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","Ralph gave the answer","65","","","<ul><br/><li><br/><p>The width ratios of the left navigation vs. the main workspace needs to be the same on the major entity profile pages. See example in Word doc.</p><br/></li><br/></ul><br/><p> </p>","UAT Feedback","Normal","503","","","04/18/2016 10:38:10 AM","04/18/2016 10:38:10 AM","04/18/2016","03/14/2016 05:06:59 PM","04/18/2016 10:38:10 AM"
"304466251","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Budget Form - Make Fields Currency Fields","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=149&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","fixed and Passed UAT","66","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=149&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Edit Budget Form - Make Fields Currency Fields</a> Issue 149</p>","UAT Feedback","High","733","","","04/18/2016 10:38:53 AM","04/18/2016 10:38:53 AM","04/18/2016","02/29/2016 10:16:57 AM","04/18/2016 10:38:53 AM"
"319154768","[email protected];[email protected]","Ad Group Profile Page - Keyword Page: Past Keywords Popup - Add Keyword Help Text","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=179&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","","67","","","<p>Issue 179 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=179&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Past Keywords Popup - Add Keyword Help Text</a></p>","UAT Feedback","High","1080","","","04/18/2016 10:39:40 AM","04/18/2016 10:39:40 AM","04/18/2016","04/04/2016 02:56:29 PM","04/18/2016 10:39:40 AM"
"304994667","[email protected];[email protected]","Campaign Profile Page: QuickView - Add Quick View Expansion","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=68&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","5","False","fixed","68","","","<p>Issue 68 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=68&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">QuickView - Add Quick View Expansion</a></p><br/><p>Quick Views And Table Views https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B408DAA8B-D0B5-42D7-BD61-81CE405ECE9B%7D&file=Quick%20Views%20And%20Table%20Views.xlsx&action=default</p>","UAT Feedback","High","760","","","04/18/2016 10:41:50 AM","04/18/2016 10:41:50 AM","04/18/2016","03/03/2016 01:42:16 PM","04/18/2016 10:41:50 AM"
"304468447","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Make Fields Currency Fields","321024022","","archive:sprint 14","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=116&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","fixed and passed UAT","69","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=116&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Budget Step - Make Fields Currency Fields</a> Issue 116</p>","UAT Feedback","High","731","","","04/18/2016 10:42:53 AM","04/18/2016 10:43:18 AM","04/18/2016","02/29/2016 10:16:43 AM","04/18/2016 10:42:53 AM"
"335012817","[email protected]","Simpli.fi Synchronization: Simpli.fi Campaign Budget Control -> Turn AdGroup off when Impressions cap reached","321024022","","archive:sprint 14","backend","","","","0","False","","70","","","","Feature","Normal","1270","315682455","315682455","05/10/2016 12:26:18 PM","05/10/2016 12:26:18 PM","05/10/2016","05/10/2016 12:26:18 PM","05/10/2016 12:26:18 PM"
"335012819","[email protected]","Simpli.fi Synchronization: Simpli.fi Campaign Budget Control -> Turn AdGroup off when Money ($) cap reached","321024022","","archive:sprint 14","","","","","0","False","","71","","","","Feature","Normal","1271","315682455","315682455","05/10/2016 02:08:13 PM","05/10/2016 02:08:13 PM","05/10/2016","05/10/2016 02:08:13 PM","05/10/2016 02:08:13 PM"
"335012822","[email protected]","Simpli.fi Synchronization: Update MALT adgroup status when Simpli.fi Campaign stops","321024022","","archive:sprint 14","","","","","0","False","","72","","","","Feature","Normal","1272","315682455","315682455","05/10/2016 02:09:17 PM","05/10/2016 02:09:17 PM","05/10/2016","05/10/2016 02:09:17 PM","05/10/2016 02:09:17 PM"
"335015953","[email protected]","Simpli.fi Synchronization: Simulate Campaign Timeframe","321024022","","archive:sprint 14","","","","","0","False","","73","","","","Feature","Normal","1273","315682455","315682455","05/10/2016 02:09:32 PM","05/10/2016 02:09:32 PM","05/10/2016","05/10/2016 02:09:32 PM","05/10/2016 02:09:32 PM"
"355774651","[email protected]","CBE-Image 1/#2: Add Account Name and Account Number to Budget Estimator","323413897","","tt quality assurance:merged to develop","webui,budget-builder","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=489&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","2","False","Got answer","0","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClassF64B9F32A7234F38830ED3C76F6F908A""><br/><p>CBE-Image 1/#2: Account Name and Account Number should be populated at location marked in the image in similar manner to MALT heading. See requirements document for more details.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1789","","","07/24/2016 02:09:20 PM","07/24/2016 02:09:20 PM","","07/22/2016 01:13:35 PM",""
"361524494","[email protected];[email protected]","Missing Cost Fields","323413897","","tt quality assurance:merged to develop","webui,backend,segments,blocked","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=544&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","fixed","1","","","<p> </p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass8AC99ACE04884345A85C864B576D7475""><br/><p>External and Internal cost values and terms not included (see types of segments document),</p><br/><p>Not necessary for edit at advertiser level because both are assumed to be $0.00 cpm fee. Only applies for association level.</p><br/><p>Applies to edit form as well.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1841","","","07/25/2016 11:38:11 AM","07/25/2016 11:38:11 AM","","07/19/2016 12:46:21 PM",""
"365784010","[email protected];[email protected];[email protected]","Return Segment management UI sorting to Name and set default sort for ab as Uniquies, desc","323413897","","tt quality assurance:merged to develop","webui,audience,segments","","","","0","False","","2","","","<p><span class=""ms-noWrap""><span class=""ms-noWrap ms-imnSpan""><a class=""ms-subtleLink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/userdisp.aspx?ID=289"">Matt Hunter</a></span></span><span> (</span><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&PageType=4&ID=556&Source=&VersionNo=11264"">7/21/2016 1:13 AM</a><span>):</span></p><br/><p>Anastasiya, please pay attention to the Testing Unit and location fields on the tickets. They should point back to a requirements bundle and location in MALT. This ticket is referring to the list of segments on the Audience Builder, not the segment management UI. The Segment Management UI sort order needs to be changed back to be based on the Name field from A->Z and the sort order of the segments on the Audience Builder should be changed to meet this ticket's description. See new screenshot for example of what should have been updated</p>","UAT Feedback","Critical","1985","361540754","361540754","07/25/2016 12:10:53 PM","07/25/2016 12:10:53 PM","","07/22/2016 09:48:34 AM",""
"354088021","[email protected];[email protected];[email protected]","Ad Group Targeting - IP Targeting: IP Targeting Management Upload message","323413897","","tt quality assurance:merged to develop","webui,ip-targeting,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=386&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","3","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=386&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue</a></p>","UAT Feedback","Low","1580","","","07/25/2016 12:27:33 PM","07/25/2016 12:27:33 PM","","07/19/2016 04:28:21 PM",""
"365794444","[email protected]","Audit Table: Audit table does not log rule or segment creation","323413897","","tt quality assurance:merged to develop","webui,backend,audit,blocked","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=615&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","4","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=615&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 615</a></p>","UAT Feedback","Critical","1988","","","07/25/2016 02:46:14 PM","07/25/2016 02:46:14 PM","","07/25/2016 11:26:55 AM",""
"325825297","[email protected]","Add validation for length of string fields on backend side","326479394","","archive:sprint 15","backend","","","","2","False","","0","","","","Improvement","Normal","1181","","","04/19/2016 11:31:32 AM","04/19/2016 11:31:32 AM","04/19/2016","04/18/2016 08:41:03 AM","04/19/2016 11:31:32 AM"
"326458808","[email protected];[email protected]","Backend: Sites bundle database migration script","326479394","","archive:sprint 15","backend","","","","2","False","","1","","","<p>Requirements:</p><br/><p>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/SitePages/Home.aspx?RootFolder=%2FPrdDev%2Fdmp%2FShared%20Documents%2FMALT%2FMALT%20User%20Stories%20%2D%20Phase%202%2F%28Review%20needed%29%20Sites&FolderCTID=0x012000B0C9AFAB7E1FAA45B2EE2A2CBE8784EB&View=%7B0BBDB8BA%2DF6AA%2D4DB9%2D9D8C%2D9C1C68B7824A%7D</p>","Feature","Normal","1188","","","04/19/2016 11:31:41 AM","04/19/2016 11:31:41 AM","04/19/2016","04/18/2016 08:40:55 AM","04/19/2016 11:31:41 AM"
"324045635","[email protected]","Backend: implement Ad Group status synchronization with Simpli.Fi","326479394","","archive:sprint 15","backend,phase-2","","","","3","False","","2","","","<p>- Implement Ad Group status synchronization with Simpli.Fi.</p><br/><p>- Implement activate Ad Group validation.</p><br/><p>*It is important to note here that unless a Simpi.fi Site Retargeting Ad Group has at least one active segment against that ad group, it cannot be set to an active status. The user can also not set the state of the last segment to inactive when all others are already in that state without first moving the ad group status out of “Active” or adding another active segment to take it’s place first.</p>","Task","Normal","1146","","","04/19/2016 11:31:48 AM","04/19/2016 11:31:48 AM","04/19/2016","04/12/2016 01:43:40 PM","04/19/2016 11:31:48 AM"
"326599834","[email protected]","Backend: RestTemplateMetricsInterceptor settings for deployment","326479394","","archive:sprint 15","backend","","","","0","False","","3","","","<p>https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend/commits/c50c51f038851258cc34cc960664e6c1a15f1b3b</p><br/><p>Add new setting from file campaign-management-api/src/test/resources/application.yml</p><br/><p>section 'restTemplateMetricsInterceptor'</p>","Task","High","1192","","","04/20/2016 02:20:41 PM","04/20/2016 02:20:41 PM","04/20/2016","04/18/2016 04:44:26 PM","04/20/2016 02:20:41 PM"
"326523882","[email protected]","Backend: Add validation according to UAT Feedback","326479394","","archive:sprint 15","backend","","","","2","False","","4","","","<p>- Review UAT Feedback cards</p><br/><p>- Add required validation on backend side</p>","Task","Normal","1190","","","04/20/2016 02:20:49 PM","04/20/2016 02:20:49 PM","04/20/2016","04/18/2016 02:05:52 PM","04/20/2016 02:20:49 PM"
"324074582","[email protected]","Backend: Extract get Ad Group Targeting API methods","326479394","","archive:sprint 15","backend","","","","3","False","","5","","","","Improvement","Normal","1147","","","04/20/2016 03:30:57 PM","04/20/2016 03:30:57 PM","04/20/2016","04/12/2016 03:00:29 PM","04/20/2016 03:30:57 PM"
"327829861","[email protected]","Backend: fix pullSegmentTags job","326479394","","archive:sprint 15","backend","","","","3","False","","6","","","","Defect","Normal","1207","","","04/25/2016 09:44:54 AM","04/25/2016 09:44:54 AM","04/25/2016","04/20/2016 03:49:33 PM","04/25/2016 09:44:54 AM"
"327171949","[email protected]","Backend: move simpli.fi clients downloader job from tt repo to multiview malt repo","326479394","","archive:sprint 15","backend","","","","3","False","","7","","","","Task","Normal","1198","","","04/25/2016 09:45:05 AM","04/25/2016 09:45:05 AM","04/25/2016","04/19/2016 12:56:17 PM","04/25/2016 09:45:05 AM"
"327144954","[email protected];[email protected]","Backend: ExecutiveCLI Jobs isolation and unification","326479394","","archive:sprint 15","backend","","","","3","False","","8","","","<p>Each Spring Batch job defined in Executive CLI module should have separate isolated by @Profile annotation configuration and context definition, like</p><br/><p>Now we have global context definition that are shared between all jobs by default, for example RestClientContext. We should get rid of such global dependencies and have only fully isolated jobs.</p>","Improvement","Normal","1196","365287324","365287324","04/25/2016 09:45:13 AM","07/25/2016 03:02:02 PM","04/25/2016","04/19/2016 12:53:58 PM","04/25/2016 09:45:13 AM"
"326589382","[email protected]","Backend: Fix bug with Ad Group deletion","326479394","","archive:sprint 15","backend","","","","2","False","","9","","","<p><strong>To reproduce:</strong></p><br/><p><strong> Delete /malt/v1/adgroups/4184</strong></p><br/><p><strong><strong>Actual result:</strong> Internal server error</strong></p><br/><p> </p><br/><p> ""com.fasterxml.jackson.databind.JsonMappingException: failed to lazily initialize a collection, could not initialize proxy - no Session (through reference chain: com.multiview.campaign.management.domain.AdGroup[\""adGroupTargeting\""]->com.multiview.campaign.management.domain.targeting.AdGroupTargeting[\""browsers\""])""</p><br/><p><strong>Expected result: Ad Group succesfully deleted</strong></p>","Defect","Normal","1191","","","04/25/2016 09:45:20 AM","04/25/2016 09:45:20 AM","04/25/2016","04/18/2016 03:45:19 PM","04/25/2016 09:45:20 AM"
"327143572","[email protected];[email protected]","Show error message from MALT API in AJAX responses","326479394","","archive:sprint 15","webui","","","","2","False","","10","","","","Improvement","Critical","1193","","","04/27/2016 04:34:20 PM","04/27/2016 04:34:20 PM","04/27/2016","04/19/2016 10:54:45 AM","04/27/2016 04:34:20 PM"
"330870045","[email protected];[email protected]","Campaigns sub page: align of column is broken","326479394","","archive:sprint 15","webui,campaigns","","","","1","False","","11","","","<p><strong>Steps to reproduce</strong></p><br/><ul><br/><li>open Campaign sub page of advertiser profile page</li><br/><li>look at page</li><br/></ul><br/><p><strong>Current result:</strong> Align of columns is incorrect</p><br/><p>Expected result: The columns should have align according to issue 58 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=58&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Campaigns Subpage - Change Columns Order</a></p>","Defect","High","1231","","","04/27/2016 04:34:40 PM","04/27/2016 04:34:40 PM","04/27/2016","04/27/2016 01:13:38 PM","04/27/2016 04:34:40 PM"
"330837653","[email protected];[email protected];[email protected]","Domain Targeting: Search on Multiview tab works incorrect","326479394","","archive:sprint 15","webui,domaintargeting","","","","1","False","","12","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open ad group targeting page</li><br/><li>open domain targeting popup</li><br/><li>open tab multiview </li><br/><li>make a search by existing name</li><br/><li>clear serach</li><br/></ul><br/><p><strong>Current result:</strong> There is incorrect request to base (it is from dev and qa env. <a href=""http://screencast.com/t/ZspNla9YLm"">http://screencast.com/t/ZspNla9YLm</a> )</p><br/><p><strong>Expected result:</strong> request should be correct (it is from UAT <a href=""http://screencast.com/t/yJt2CAv6sfV"">http://screencast.com/t/yJt2CAv6sfV</a> )</p>","Defect","Critical","1229","","","04/27/2016 04:35:21 PM","04/27/2016 04:35:21 PM","04/27/2016","04/27/2016 11:18:58 AM","04/27/2016 04:35:21 PM"
"322185855","[email protected];[email protected]","Start date for adgroup isn't saved when adgroup is active or draft and campaign is inactive","326479394","","archive:sprint 15","webui,backend","","","","0","False","","13","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Find inactive campaign with acive adgroup</li><br/><li>Go to settings page of the active adgroup</li><br/><li>Click edit for first block (with date)</li><br/><li>Change start date</li><br/><li>Click save</li><br/></ol><br/><p><strong>Actual result: </strong>close window but date isn't saved</p><br/><p><strong>Expected result:</strong> close window and saving changed date or validation error at saving</p>","Defect","Normal","1124","","","04/27/2016 04:36:48 PM","04/27/2016 04:36:48 PM","04/27/2016","04/14/2016 03:08:46 PM","04/27/2016 04:36:48 PM"
"287137144","[email protected];[email protected]","WebUI: Do not redirect to API URLs after relogin","326479394","","archive:sprint 15","webui","","","","1","False","","14","","","<ol><br/><li>User is creating new Ad group</li><br/><li>Login expired</li><br/><li>user presses on any button</li><br/><li>User is on login page</li><br/><li>User fills fields login and password and press button login</li><br/></ol><br/><p>Current result: User is on api page</p><br/><p> <a href=""http://screencast.com/t/WruPLVPJ07"">http://screencast.com/t/WruPLVPJ07</a></p><br/><p>Expected result: User is logged in and is on main page</p>","Defect","Normal","420","","","04/27/2016 04:37:28 PM","04/27/2016 04:37:28 PM","04/27/2016","04/12/2016 12:01:51 PM","04/27/2016 04:37:28 PM"
"323349551","[email protected];[email protected]","JS error when user tries to enter keyword using Paste after validation error","326479394","","archive:sprint 15","webui,keywords","","","","2","False","","15","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/YFuazhxKbY9"">http://screencast.com/t/YFuazhxKbY9</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to adgroup with search type</li><br/><li>Go to Keywords sub-page</li><br/><li>Click ""Paste"" button</li><br/><li>Submit empty form</li><br/><li>Enter some keywords using valid format</li><br/><li>Open console</li><br/><li>Click Save</li><br/></ol><br/><p><strong>Actual result:</strong> nothing happens because js error</p><br/><p><strong>Expected result:</strong> no js errors and correct submit form</p>","Defect","Normal","1139","","","04/27/2016 04:38:29 PM","04/27/2016 04:38:29 PM","04/27/2016","04/18/2016 12:36:00 PM","04/27/2016 04:38:29 PM"
"325253169","[email protected];[email protected]","Ad Group Start Date: Delete validation with campaign state","326479394","","archive:sprint 15","backend","","","","0","False","","16","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open ad group settings page in draft status</li><br/><li>try to change start date</li><br/></ul><br/><p><strong>Current result:</strong> There is error message <a href=""http://screencast.com/t/NrNDbCTykU"">http://screencast.com/t/NrNDbCTykU</a></p><br/><p><strong>Expected result:</strong> Star Date of Ad Group should be changeable for draft status</p>","Defect","High","1176","","","04/27/2016 04:39:53 PM","04/27/2016 04:39:53 PM","04/27/2016","04/14/2016 01:32:38 PM","04/27/2016 04:39:53 PM"
"327743072","[email protected];[email protected]","Popup with confirmation message shouldn't be displayed when you not change ","326479394","","archive:sprint 15","webui","","","","1","False","","17","","","<p><strong>see more:</strong> <a href=""http://screencast.com/t/TQgWmX5N4"">http://screencast.com/t/TQgWmX5N4</a> </p><br/><p>To reproduce:</p><br/><ol><br/><li>go to adgroup with active status</li><br/><li>go to settings sub-page</li><br/><li>click change in status</li><br/><li>click Save</li><br/></ol><br/><p><strong>Actual result:</strong> popup with confirmation message is opened</p><br/><p><strong>Expected result: </strong>closing popup</p>","Defect","Normal","1205","","","04/27/2016 04:41:18 PM","04/27/2016 04:41:18 PM","04/27/2016","04/26/2016 10:56:42 AM","04/27/2016 04:41:18 PM"
"324210317","[email protected];[email protected]","Can't set not None goal type for ad group ","326479394","","archive:sprint 15","backend","","","","2","False","","18","","","<p>To reproduce:</p><br/><ol><br/><li>go to edit adgroup buying strategy</li><br/><li>set some goal type (not none)</li><br/><li>fill in all required fields</li><br/><li>Save changes</li><br/></ol><br/><p><strong>Actual result: </strong>nothing happens and there is 422 error with wesponse text ""Goal type is not valid""</p><br/><p><strong>Expected result: </strong>correct saving </p>","Defect","Critical","1154","","","04/27/2016 04:42:30 PM","04/27/2016 04:42:30 PM","04/27/2016","04/12/2016 07:23:47 PM","04/27/2016 04:42:30 PM"
"306387944","[email protected];[email protected]","WebUI: Change error text appearing after uploading file with invalid extension (e.x. images)","326479394","","archive:sprint 15","webui","","","","0","False","","19","","","<p><strong>Actual result:</strong> ""Server Error: Please upload a file"" <a href=""http://screencast.com/t/AaXMRBEVF"">http://screencast.com/t/AaXMRBEVF</a> </p><br/><p><strong>Expected result:</strong> ""Server Error: Please upload a correct file. Keywords must be delimeted by comma or new line. Each keyword should contain no more than 255 characters<strong>.</strong>""</p>","Improvement","Normal","786","","","04/27/2016 04:44:55 PM","04/27/2016 04:44:55 PM","04/27/2016","04/21/2016 10:53:25 AM","04/27/2016 04:44:55 PM"
"318715129","[email protected];[email protected]","Refactoring Keyword Controller","326479394","","archive:sprint 15","webui","","","","3","False","Card 786 was implemented","20","","","","Improvement","Normal","1073","","","04/27/2016 04:45:07 PM","04/27/2016 04:45:07 PM","04/27/2016","03/21/2016 03:13:54 PM","04/27/2016 04:45:07 PM"
"312226965","[email protected];[email protected]","WebUI: GeoTargeting","326479394","","archive:sprint 15","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B1AE7A47C-B2F5-4B61-B867-CD16E540771A%7D&file=MALT%20User%20Stories%20-%20Ad%20Group%20Targeting%20-%20Locations%20Popup.docx&action=default","","","8","False","","21","","","<p>US <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B1AE7A47C-B2F5-4B61-B867-CD16E540771A%7D&file=MALT%20User%20Stories%20-%20Ad%20Group%20Targeting%20-%20Locations%20Popup.docx&action=default"">https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B1AE7A47C-B2F5-4B61-B867-CD16E540771A%7D&file=MALT%20User%20Stories%20-%20Ad%20Group%20Targeting%20-%20Locations%20Popup.docx&action=default</a> </p>","Defect","High","913","","","04/27/2016 07:50:04 PM","04/27/2016 07:50:04 PM","04/27/2016","03/15/2016 04:13:17 PM","04/27/2016 07:50:04 PM"
"327125132","[email protected];[email protected]","Problem with creation new ad group","326479394","","archive:sprint 15","backend","","","","1","False","","22","","","<p><strong>steps:</strong></p><br/><ul><br/><li>open campaign page: <a href=""http://develop.tt.dev.multiview.com/campaign/5484/adgroups"">http://develop.tt.dev.multiview.com/campaign/5484/adgroups</a></li><br/><li>try to create ad group {""Id"":null,""Name"":""ProfileThruCampaign"",""CampaignId"":""5484"",""AdvertiserId"":null,""MultiViewClassificationId"":""2"",""VendorClassificationId"":""4"",""StartDate"":""4/30/16"",""EndDate"":""4/8/17"",""LifetimeSpend"":32451,""MonthlySpend"":2950.09,""DailySpend"":94.61,""AutoAdjustDailySpend"":false,""BiddingTypeId"":""1"",""BiddingValue"":12,""Frequency"":987,""FrequencyPer"":6,""LifetimeImpressions"":678451,""MonthlyImpressions"":61677,""DailyImpressions"":1978,""GoalTypeId"":""4"",""ViewThruEmphasis"":78,""ClickThruEmphasis"":23,""ViewAttributionWindow"":14,""ClickAttributionWindow"":19,""CreatedDateTime"":null,""LastModifiedDateTime"":null,""StatusId"":null,""AutoOptimize"":true,""GoalValue"":8,""LocationTypeId"":1}</li><br/></ul><br/><p><strong>Current result:</strong> There is error {""name"":""Internal Server Error"",""message"":""Backend error"",""code"":0,""status"":500,""type"":""yii\\web\\HttpException""}. Wizard hasn't been closed. But if you open this campaign profile page in another tab you see than ad group was created several times</p><br/><p><strong>MALT API error:</strong> {""status"":500,""errorAttributes"":{""timestamp"":""2016-04-19T04:46:57.556+0000"",""status"":500,""error"":""Internal Server Error"",""exception"":""org.springframework.dao.InvalidDataAcce<br />ssApiUsageException"",""message"":""No EntityManager with actual transaction available for current thread - cannot reliably process 'remove' call; nested exception is javax.persistence.TransactionRequiredException: No EntityManager with actual transaction available for curr<br />ent thread - cannot reliably process 'remove' call"",""path"":""/malt/v1/adgroups""},""meta"":{}}</p>","Defect","High","1194","","","04/29/2016 03:05:36 PM","04/29/2016 03:05:36 PM","04/29/2016","04/19/2016 11:03:03 AM","04/29/2016 03:05:36 PM"
"327136367","[email protected];[email protected]","Backend: db migration scripts should be database independent","326479394","","archive:sprint 15","backend","","","","3","False","","23","","","","Improvement","Normal","1195","","","05/04/2016 10:15:49 AM","05/04/2016 10:15:49 AM","05/04/2016","04/19/2016 12:48:55 PM","05/04/2016 10:15:49 AM"
"329544029","[email protected];[email protected]","Backend: make sure that bulk inserts with spring data jpa repositories enabled in spring batch jobs","326479394","","archive:sprint 15","backend","","","","3","False","","24","","","","Task","Normal","1215","","","05/04/2016 10:16:02 AM","05/04/2016 10:16:02 AM","05/04/2016","04/25/2016 09:44:36 AM","05/04/2016 10:16:02 AM"
"322111582","[email protected];[email protected];[email protected]","Multiview Domain List Create : Multiview Domain List Create inproperly added a blank row","326479394","","archive:sprint 15","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=183&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","The bug was fixed, made hot fix to UAT","25","","","<p>Issue 183 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=183&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Multiview Domain List Create inproperly added a blank row</a></p>","UAT Feedback","High","1119","","","05/04/2016 10:20:11 AM","05/04/2016 10:20:11 AM","05/04/2016","04/07/2016 11:59:00 AM","05/04/2016 10:20:11 AM"
"322115216","[email protected];[email protected]","Domain List List View: Multiview Domain List ""#"" field needs to be ""ID""; ""Count"" needs to be ""Domains"" ","326479394","","archive:sprint 15","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=196&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","26","","","<p><a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=196&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Multiview Domain List ""#"" field needs to be ""ID""; ""Count"" needs to be ""Domains""</a> issue 196</p>","UAT Feedback","High","1121","","","05/04/2016 10:20:44 AM","05/04/2016 10:20:44 AM","05/04/2016","04/07/2016 11:59:27 AM","05/04/2016 10:20:44 AM"
"326483938","[email protected];[email protected]","Ad Group Create: Duplication of Ad Group entry when clicking Create button multipal times","326479394","","archive:sprint 15","webui,spinner","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=216&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","5","False","Got requirements from client","27","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=216&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 216</a></p><br/><p>Should be applied for all async operations.</p>","UAT Feedback","Critical","1189","","","05/04/2016 10:21:41 AM","05/04/2016 10:21:41 AM","05/04/2016","04/18/2016 12:07:51 PM","05/04/2016 10:21:41 AM"
"312879010","","WebUI: Remove border for keyword tables","326479394","","archive:sprint 15","webui","","","","0","False","","28","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/qbHhS6C6"">http://screencast.com/t/qbHhS6C6</a> </p>","Improvement","Low","931","","","05/11/2016 04:52:14 PM","05/11/2016 04:52:14 PM","05/11/2016","05/11/2016 04:52:14 PM","05/11/2016 04:52:14 PM"
"334389531","[email protected];[email protected]","Refactor client validation code","333367630","","archive:sprint 16","webui","","","","2","False","Fixed bugs.","0","","","<p>Doc with problems <a href=""https://docs.google.com/document/d/1vxms0pXQ0dt4Ud2EXiXgY_qo_HrHsLeBTzgvxVQ7lUU/edit"">https://docs.google.com/document/d/1vxms0pXQ0dt4Ud2EXiXgY_qo_HrHsLeBTzgvxVQ7lUU/edit</a> </p>","Improvement","Normal","1256","291016521","291016521","05/11/2016 10:52:51 AM","05/11/2016 10:52:51 AM","05/11/2016","05/05/2016 10:29:43 AM","05/11/2016 10:52:51 AM"
"336839672","[email protected];[email protected]","Cannot add single IP Targeting","333367630","","archive:sprint 16","webui,iptargeting","","","","2","False","","1","","","<p><strong>steps to reproduce: <a href=""http://screencast.com/t/2Bkq6HMWg"">http://screencast.com/t/2Bkq6HMWg</a> </strong></p><br/><ul><br/><li>open targeting sub page <a href=""http://malt-qa.uat.multiview.com/adgroup/6134/targeting"">http://malt-qa.uat.multiview.com/adgroup/6134/targeting</a> </li><br/><li>open targeting popup</li><br/><li>try to add single ip range</li><br/></ul><br/><p><strong>Current result:</strong> There is server error for any action on popup<br /><strong>Expected result:</strong> there is autocomplete for company and domain, and validation for end IP. We should be able to add IP range</p><br/><p> </p>","Defect","Critical","1289","291016521","291016521","05/12/2016 03:52:23 PM","05/12/2016 03:52:23 PM","05/12/2016","05/11/2016 05:23:40 PM","05/12/2016 03:52:23 PM"
"327167490","[email protected]","Backend: Pipelines improvement","333367630","","archive:sprint 16","backend","","","","5","False","","2","","","<p>We should simplify step functions and pipelines hierarchy</p>","Improvement","Normal","1197","","","05/13/2016 12:57:01 PM","05/13/2016 12:57:01 PM","05/13/2016","04/19/2016 12:54:55 PM","05/13/2016 12:57:01 PM"
"336715729","[email protected]","Backend: TradeDesk & Piwik configuration for deployment","333367630","","archive:sprint 16","backend","","","","2","False","","3","","","<p>https://bitbucket.org/thumbtacktech/multiview-dmp-malt-backend/commits/69c19b6b1f46b25182be64c13e3bf1912acf8713</p>","Task","High","1285","","","05/13/2016 12:57:08 PM","05/13/2016 12:57:08 PM","05/13/2016","05/11/2016 10:10:48 AM","05/13/2016 12:57:08 PM"
"328567830","[email protected];[email protected]","Backend: add synchronizer job that pulls first/last seen information from piwik/netfactor","333367630","","archive:sprint 16","backend","","","","3","False","","4","","","","Feature","Normal","1209","315700192","315700192","05/13/2016 12:57:14 PM","05/13/2016 12:57:14 PM","05/13/2016","04/21/2016 08:34:20 PM","05/13/2016 12:57:14 PM"
"276018282","[email protected];[email protected]","Backend: Campaing update/delete - Trade Desk","333367630","","archive:sprint 16","backend,phase-2","","","","3","False","","5","","","<p>https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/4.%20(Needs%20Review)%20Campaign/Create/Trade%20Desk/Malt%20User%20Stories%20Trade%20Desk%20Campaign%20Create%20v0.2%20Draft.pdf</p>","Feature","Normal","265","315697661","315697661","05/13/2016 12:57:22 PM","05/13/2016 12:57:22 PM","05/13/2016","04/25/2016 11:31:29 AM","05/13/2016 12:57:22 PM"
"276002581","[email protected]","Backend: Campaign create - Trade Desk","333367630","","archive:sprint 16","backend,phase-2","","","","5","False","","6","","","<p>https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/4.%20(Needs%20Review)%20Campaign/Create/Trade%20Desk/Malt%20User%20Stories%20Trade%20Desk%20Campaign%20Create%20v0.2%20Draft.pdf</p>","Feature","Normal","264","315697661","315697661","05/13/2016 12:57:28 PM","05/13/2016 12:57:28 PM","05/13/2016","04/25/2016 11:31:24 AM","05/13/2016 12:57:28 PM"
"326475064","[email protected];[email protected]","Backend: Sites bundle (create/edit/delete)","333367630","","archive:sprint 16","backend","","","","3","False","","7","","","<p>Requirements:</p><br/><p>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/SitePages/Home.aspx?RootFolder=%2FPrdDev%2Fdmp%2FShared%20Documents%2FMALT%2FMALT%20User%20Stories%20%2D%20Phase%202%2F%28Review%20needed%29%20Sites&FolderCTID=0x012000B0C9AFAB7E1FAA45B2EE2A2CBE8784EB&View=%7B0BBDB8BA%2DF6AA%2D4DB9%2D9D8C%2D9C1C68B7824A%7D</p>","Feature","Normal","1187","315700192","315700192","05/13/2016 12:57:40 PM","05/13/2016 12:57:40 PM","05/13/2016","04/18/2016 08:40:57 AM","05/13/2016 12:57:40 PM"
"335023341","[email protected];[email protected]","Trade Desk Synchronization: Update MALT adgroup status when Trade Desk Ad Group stops","333367630","","archive:sprint 16","backend","","","","3","False","","8","","","","Feature","Normal","1277","315697661","315697661","05/16/2016 08:47:29 AM","05/16/2016 08:47:29 AM","05/16/2016","05/12/2016 08:39:02 AM","05/16/2016 08:47:29 AM"
"334388525","[email protected]","Backend: add configurable switch for simpli.fi and trade desk pipelines","333367630","","archive:sprint 16","backend","","","","2","False","","9","","","","Improvement","High","1255","","","05/16/2016 08:47:49 AM","05/16/2016 08:47:49 AM","05/16/2016","05/05/2016 10:21:05 AM","05/16/2016 08:47:49 AM"
"336845889","[email protected];[email protected]","JS error when user tries to enter keyword using Paste","338556369","https://thumbtack.leankit.com/Boards/View/250969254/323349551","archive:sprint 17","webui,keywords","","","","1","False","","0","","","<p><strong>To reproduce: </strong><a href=""http://screencast.com/t/lVG0YiQ32ElB"">http://screencast.com/t/lVG0YiQ32ElB</a> </p><br/><ol><br/><li>Go to adgroup with search type</li><br/><li>Go to Keywords sub-page</li><br/><li>Click ""Paste"" button</li><br/><li>Enter some keyword</li><br/><li>Click Add</li><br/></ol><br/><p><strong>Actual result:</strong> nothing happens because 422 error [{""field"":""Name"",""message"":""Keyword cannot be blank.""}]</p><br/><p><strong>Expected result:</strong> no errors and correct submit form</p>","Defect","High","1290","291016521","291016521","05/16/2016 04:35:36 PM","05/16/2016 04:35:36 PM","05/16/2016","05/11/2016 05:37:31 PM","05/16/2016 04:35:36 PM"
"337295785","[email protected];[email protected]","Cancel and close buttons don't work when user change a field and not unfocus","338556369","","archive:sprint 17","webui,domainlist","","","","1","False","","1","","","<p><strong>Note: </strong>it's applied for any popup with new validation</p><br/><p><strong>steps to reproduce for domain: </strong><a href=""http://screencast.com/t/hn1pDBebSc"">http://screencast.com/t/hn1pDBebSc</a> </p><br/><ul><br/><li>open domain list profile page <a href=""http://malt-qa.uat.multiview.com/global-domain-list/3083/settings"">http://malt-qa.uat.multiview.com/global-domain-list/3083/settings</a> </li><br/><li>click on button edit</li><br/><li>change name and click on button cancel</li><br/></ul><br/><p><strong>Current result:</strong> the name od domain list is changed on page but not in base</p><br/><p><strong>Expected result:</strong> The name of domain list shouldn't be changed as on profile page and in base</p><br/><p><strong>Important.</strong> <a href=""http://screencast.com/t/T7FOVZP3bAId"">http://screencast.com/t/T7FOVZP3bAId</a> If we haven't saved changing of name and have deactivated Domain List then the name has changed too </p>","Defect","Normal","1293","291016521","291016521","05/16/2016 04:35:45 PM","05/16/2016 04:35:45 PM","05/16/2016","03/29/2016 05:23:24 PM","05/16/2016 04:35:45 PM"
"337295776","[email protected];[email protected]","Hyper link with state disappears on Domain list profile page","338556369","","archive:sprint 17","webui,domain","","","","1","False","","2","","","<p><strong>Steps to reproduce: </strong><a href=""http://screencast.com/t/U5fiKUrZ73wq"">http://screencast.com/t/U5fiKUrZ73wq</a></p><br/><ul><br/><li>open profile page of domain list <a href=""http://malt-qa.uat.multiview.com/global-domain-list/3083/settings"">http://malt-qa.uat.multiview.com/global-domain-list/3083/settings</a> </li><br/><li>open change state for domain popup</li><br/><li>change state and click on button cancel or close/ on click on button cancel or close without changing of state</li><br/></ul><br/><p><strong>Current result: </strong>Popup has closed and Hyper link with state disappears</p><br/><p><strong>Expected result: </strong>Hyper link with state should be presented always in the table</p><br/><p> </p>","Defect","High","1292","291016521","291016521","05/16/2016 04:36:01 PM","05/16/2016 04:36:01 PM","05/16/2016","05/12/2016 10:25:39 AM","05/16/2016 04:36:01 PM"
"336724263","[email protected];[email protected]","Reporting Preparation: Setup iFrames","338556369","","archive:sprint 17","webui","","","","2","False","","3","","","","Feature","Normal","1286","315697652","315697652","05/18/2016 07:22:31 PM","05/18/2016 07:22:31 PM","05/18/2016","05/11/2016 11:38:39 AM","05/18/2016 07:22:31 PM"
"315735221","[email protected];[email protected];[email protected]","WebUI: Metrics Aggregation - Simpli.fi - Campaign level metrics","338556369","","archive:sprint 17","webui","","","","5","False","Tested one more time with timeframe filter metrics aggregation card","4","","","<p>advertiser 2124, adgroup 2012</p>","Feature","Normal","994","315682460","315682460","05/18/2016 07:25:32 PM","05/18/2016 07:25:32 PM","05/18/2016","05/05/2016 12:57:31 PM","05/18/2016 07:25:32 PM"
"315735220","[email protected];[email protected];[email protected]","WebUI: Metrics Aggregation - Simpli.fi - AdGroup level metrics","338556369","","archive:sprint 17","webui","","","","3","False","Tested one more time with timeframe filter metrics aggregation card","5","","","<p>advertiser 2124, adgroup 2012</p>","Feature","Normal","993","315682460","315682460","05/18/2016 07:25:40 PM","05/18/2016 07:25:40 PM","05/18/2016","05/05/2016 12:57:31 PM","05/18/2016 07:25:40 PM"
"315732084","[email protected];[email protected];[email protected]","WebUI: Metrics Aggregation - Simpli.fi - Time Frame Filters","338556369","","archive:sprint 17","webui","","","","5","False","","6","","","","Feature","Normal","997","315682460","315682460","05/18/2016 07:25:47 PM","05/18/2016 07:25:47 PM","05/18/2016","05/05/2016 12:57:31 PM","05/18/2016 07:25:47 PM"
"315732083","[email protected];[email protected];[email protected]","WebUI: Metrics Aggregation - Simpli.fi - Advertiser level metrics","338556369","","archive:sprint 17","webui","","","","5","False","Tested one more time with timeframe filter metrics aggregation card","7","","","<p>advertiser 2124, adgroup 2012</p>","Feature","Normal","996","315682460","315682460","05/18/2016 07:25:56 PM","05/18/2016 07:25:56 PM","05/18/2016","05/05/2016 12:57:31 PM","05/18/2016 07:25:56 PM"
"315732082","[email protected];[email protected];[email protected]","WebUI: Metrics Aggregation - Simpli.fi - Keywords metrics","338556369","","archive:sprint 17","webui","","","","3","False","","8","","","","Feature","Normal","991","315682460","315682460","05/18/2016 07:26:04 PM","05/18/2016 07:26:04 PM","05/18/2016","05/05/2016 12:57:31 PM","05/18/2016 07:26:04 PM"
"325877222","[email protected];[email protected]","3rd Party Tag: function ""Add Shared 3rd ..."" should work only for active tag","338556369","","archive:sprint 17","webui","","","","1","False","","9","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>open page <a href=""http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags"">http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags#</a> and open ""add share..."" look at list</li><br/><li>open page <a href=""http://malt-qa.uat.multiview.com/advertiser/4376/third-party-tags"">http://malt-qa.uat.multiview.com/advertiser/4376/third-party-tags#</a> and deactivate one tag</li><br/><li>open page <a href=""http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags"">http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags#</a> and open ""add share..."" look at list</li><br/></ul><br/><p><strong>Current result:</strong> There is active and inactive tags</p><br/><p><strong>Expected result:</strong> There should be only active tags in list as there ia <span>“*Only shared tags with an active state available”</span></p>","Defect","High","1186","","","05/18/2016 07:29:52 PM","05/18/2016 07:29:52 PM","05/18/2016","04/18/2016 12:17:38 PM","05/18/2016 07:29:52 PM"
"325830668","[email protected];[email protected]","3rd Party Segment: function ""At Create, Copy to Clipboard"" doesn't work in IE","338556369","","archive:sprint 17","webui","","","","3","False","","10","","","<p>The same sutation with for adding shared tag for function ""copy javascript to clipboard after adding""</p><br/><p>steps:</p><br/><ul><br/><li>open 3rd party tags sub page <a href=""http://malt-qa.uat.multiview.com/advertiser/4376/third-party-tags,"">http://malt-qa.uat.multiview.com/advertiser/4376/third-party-tags,</a> <a href=""http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags"">http://malt-qa.uat.multiview.com/adgroup/4092/third-party-tags</a></li><br/><li>create new tag - with chosing in additional part - ""Javascript Tag""</li><br/></ul><br/><p><strong>Current result: </strong>Javascript Tag hasn't been copy to Clipboard just after creation automatically</p><br/><p><strong>Expected result; </strong> Javascript Tag has been copy to Clipboard just after creation automatically</p>","Defect","High","1183","","","05/18/2016 07:29:59 PM","05/18/2016 07:29:59 PM","05/18/2016","04/18/2016 12:16:50 PM","05/18/2016 07:29:59 PM"
"324035102","[email protected];[email protected]","Domain List: Don't allow to change ""Auto...."" checkbox for Whitelist","338556369","","archive:sprint 17","webui,domain-lists","","","","1","False","","11","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>open domain list profile page for whitelist <a href=""http://malt-qa.uat.multiview.com/global-domain-list/2060/settings,"">http://malt-qa.uat.multiview.com/global-domain-list/2060/settings,</a> <a href=""http://malt-qa.uat.multiview.com/advertiser-domain-list/3160/settings"">http://malt-qa.uat.multiview.com/advertiser-domain-list/3160/settings</a></li><br/><li>click edit</li><br/></ul><br/><p><strong>Current result: </strong>Check box is available for edit. Use can check it and click save, there is error message from backend <a href=""http://screencast.com/t/GJB4Tweq"">http://screencast.com/t/GJB4Tweq</a> </p><br/><p><strong>Expected result:</strong> Checkbox isn't available for edit for whitelist domain list</p><br/><p> </p>","Defect","High","1144","","","05/18/2016 07:38:14 PM","05/18/2016 07:38:14 PM","05/18/2016","04/18/2016 12:30:55 PM","05/18/2016 07:38:14 PM"
"325836488","[email protected];[email protected]","No validation for Bid amount at creating keyword when it is 1000 and larger","338556369","","archive:sprint 17","backend,webui","","","","2","False","Fixed","12","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to Adgroup with Search Multiview type</li><br/><li>Go to Keyword tab</li><br/><li>Click Single keyword</li><br/><li>Enter any valid keyword</li><br/><li>Enter bid account larger than 1000</li><br/><li>Click Add</li><br/></ol><br/><p><strong>Actual result:</strong> Internal server error</p><br/><p><strong>Expected result:</strong> There is validation error ""You can't add bid account larger than 999.99""</p>","Defect","Normal","1184","","","05/19/2016 11:13:24 AM","05/19/2016 11:13:24 AM","05/19/2016","04/18/2016 08:41:01 AM","05/19/2016 11:13:24 AM"
"336858449","[email protected];[email protected]","Script error for filter for keywords","338556369","","archive:sprint 17","webui,keywords","","","","1","False","","13","","","<p>steps to reproduce:</p><br/><ul><br/><li>open page <a href=""http://malt-qa.uat.multiview.com/adgroup/6134/keywords"">http://malt-qa.uat.multiview.com/adgroup/6134/keywords </a></li><br/><li>open fileter popup and make a filter by Impressions, CTR, CPC, State</li><br/><li>save it</li><br/></ul><br/><p><strong>Current result:</strong> The fileter works but there is error in console <a href=""http://screencast.com/t/vBYVDNd035Ea"">http://screencast.com/t/vBYVDNd035Ea</a> <br /><strong>Expected result:</strong> Filter works without erorr in console</p>","Defect","High","1291","","","05/19/2016 11:14:00 AM","05/19/2016 11:14:00 AM","05/19/2016","05/11/2016 05:56:14 PM","05/19/2016 11:14:00 AM"
"339074548","[email protected];[email protected]","Remove vertical scroll in IE","338556369","","archive:sprint 17","webui,reporting","","","","1","False","","14","","","<p>See more: <a href=""http://screencast.com/t/alWcVpY5yugb"">http://screencast.com/t/alWcVpY5yugb</a> </p>","Defect","Normal","1304","","","05/19/2016 11:19:13 AM","05/19/2016 11:19:13 AM","05/19/2016","05/17/2016 01:28:55 PM","05/19/2016 11:19:13 AM"
"315697690","[email protected];[email protected];[email protected];[email protected]","WebUI: Site - Create - MultiView Level","338556369","","archive:sprint 17","webui","","","","3","False","","15","","","","Feature","Normal","987","315700192","315700192","05/20/2016 11:36:40 AM","05/20/2016 11:36:40 AM","05/20/2016","05/11/2016 11:35:29 AM","05/20/2016 11:36:40 AM"
"315700243","[email protected];[email protected];[email protected];[email protected]","WebUI: Site - Create - Advertiser Level","338556369","","archive:sprint 17","webui","","","","3","False","","16","","","","Feature","Normal","988","315700192","315700192","05/20/2016 11:37:24 AM","05/20/2016 11:37:24 AM","05/20/2016","05/11/2016 11:35:29 AM","05/20/2016 11:37:24 AM"
"315700244","[email protected];[email protected];[email protected];[email protected]","WebUI: Site - List View - MultiView Level","338556369","","archive:sprint 17","webui","","","","1","False","","17","","","","Feature","Normal","989","315700192","315700192","05/20/2016 11:37:31 AM","05/20/2016 11:37:31 AM","05/20/2016","05/11/2016 11:35:29 AM","05/20/2016 11:37:31 AM"
"315704616","[email protected];[email protected];[email protected];[email protected]","WebUI: Site - List View - Advertiser Level","338556369","","archive:sprint 17","webui","","","","1","False","","18","","","","Feature","Normal","990","315700192","315700192","05/20/2016 11:37:38 AM","05/20/2016 11:37:38 AM","05/20/2016","05/11/2016 11:35:29 AM","05/20/2016 11:37:38 AM"
"337899858","[email protected];[email protected];[email protected];[email protected]","WebUI: Site - Edit","338556369","","archive:sprint 17","webui","","","","2","False","","19","","","","Feature","Normal","1296","315700192","315700192","05/20/2016 11:37:44 AM","05/20/2016 11:37:44 AM","05/20/2016","05/13/2016 01:39:20 PM","05/20/2016 11:37:44 AM"
"339828511","[email protected];[email protected]","Client Validation: Create Advertiser Popup - Error message for AC has been shown","338556369","","archive:sprint 17","webui,advertiserpopup","","","","1","False","","20","","","<p><strong>steps to reproduce: </strong></p><br/><ul><br/><li>open create advertiser popup</li><br/><li>choose Person and got to field AM and go out of field without choosing of parameter</li><br/></ul><br/><p><strong>current result:</strong> error message isn't displaed</p><br/><p><strong>expected result: </strong>error message should be dispaled</p>","Defect","High","1306","291016521","291016521","05/20/2016 11:38:40 AM","05/20/2016 11:38:40 AM","05/20/2016","05/18/2016 07:11:19 PM","05/20/2016 11:38:40 AM"
"340230519","[email protected]","Remove vertical scroll in IE on Overview pages and reporting advertiser page","338556369","","archive:sprint 17","webui","","","","1","False","","21","","","<p>http://screencast.com/t/TT6euo105y</p>","Defect","High","1311","","","05/20/2016 11:44:01 AM","05/20/2016 11:44:01 AM","05/20/2016","05/19/2016 11:17:59 AM","05/20/2016 11:44:01 AM"
"339838610","[email protected];[email protected]","Client validation: Ad Group ","338556369","","archive:sprint 17","webui,adgroup","","","","1","False","","22","","","<p><strong>steps to reproduce: http://screencast.com/t/6oicspfknXeH</strong></p><br/><ul><br/><li>open create ad group popup 2 step</li><br/><li>fill one of the fields frequency/ per field</li><br/><li>validaton hasn't be shown for correlation field</li><br/><li>user can go to next field with one parameter</li><br/></ul><br/><p><strong>Current result:</strong> ad group hasn't be created on 4 step - there isn't message for UI, but 422 error in network</p><br/><p><strong>Expected result:</strong> error message is shown for this fields, user cannot navigate to next step</p>","Defect","High","1307","291016521","291016521","05/20/2016 11:44:26 AM","05/20/2016 11:44:26 AM","05/20/2016","05/18/2016 07:17:59 PM","05/20/2016 11:44:26 AM"
"340217676","[email protected];[email protected]","Client validation: Problem with validation for Start and End Date for campaign and ad group","338556369","","archive:sprint 17","webui,dates","","","","1","False","","23","","","<p>steps to reproduce: <a href=""http://screencast.com/t/0fqtyanvQg"">http://screencast.com/t/0fqtyanvQg</a> <a href=""http://screencast.com/t/EfSXf1Szlr4"">http://screencast.com/t/EfSXf1Szlr4</a> </p><br/><ul><br/><li>open create campaign popup or ad group wizard</li><br/><li>input start date at yesterday and end date as today</li><br/></ul><br/><p><strong>Current result:</strong> There isn't error message for start date, at there is incorrect error message for Rnd Date</p><br/><p><strong>Expected result: </strong>There should be error message for Start Date ""Start Date cannot be in the past"" (correct message shoul be in the code). There shouldn't be error message for End Date in such case as End Date is 1 day after Start Date.</p>","Defect","High","1308","291016521","291016521","05/20/2016 11:44:37 AM","05/20/2016 11:44:37 AM","05/20/2016","05/19/2016 10:55:59 AM","05/20/2016 11:44:37 AM"
"340225657","[email protected];[email protected]","Client validation for ad group wizard doesn't work for Goal value","338556369","","archive:sprint 17","webui,adgroup","","","","1","False","","24","","","<p><strong>steps to reproduce: <a href=""http://screencast.com/t/vWnwt41m"">http://screencast.com/t/vWnwt41m</a> </strong></p><br/><ul><br/><li>open wizard and go to 3 step</li><br/><li>choose Goals any expect None</li><br/><li>go to and out of fiel ""Goal Value""</li><br/></ul><br/><p><strong>Current result:</strong> There isn't clien validation for this field. User can go to next step without filling of this field. But if user goes from 4 to 3 step and go to and out of fiel ""Goal Value"" then client validation works, but user still may go to 4 step.</p><br/><p><strong>Expected result:</strong> client validation works and user cannot go to next/prev step with error messages on current step.</p>","Defect","High","1310","291016521","291016521","05/20/2016 11:44:47 AM","05/20/2016 11:44:47 AM","05/20/2016","05/19/2016 11:11:03 AM","05/20/2016 11:44:47 AM"
"340225650","[email protected];[email protected]","Client validation doesn't work for budget and impressions field inside ad group wizard","338556369","","archive:sprint 17","webui,adgrooup","","","","1","False","","25","","","<p><strong>steps to reproduce: <a href=""http://screencast.com/t/zqjEP0Terr2"">http://screencast.com/t/zqjEP0Terr2</a> </strong></p><br/><ul><br/><li>open wizard, go to 2 step</li><br/><li>enter lifetime, monthly and daily parameters as 56,60,70</li><br/></ul><br/><p><strong>Current result:</strong> There are client validation for this field in such case. User can navigate to next step</p><br/><p><strong>Expected result:</strong> there should be client validation for this field (massages and rules are in the code). If we return from 2 to 1 step and go thru this field one more time then client validation work for this field.</p>","Defect","High","1309","291016521","291016521","05/20/2016 11:44:56 AM","05/20/2016 11:44:56 AM","05/20/2016","05/19/2016 11:01:56 AM","05/20/2016 11:44:56 AM"
"338562826","[email protected];[email protected]","Validation: Error messages disappear if another field is in focus or state is changed.","338556369","","archive:sprint 17","webui","","","","2","False","","26","","","<p>Steps to reproduce: It is actuall for all popups</p><br/><ol><br/><li>Navigate to Edit Advertiser pop-up</li><br/><li>Make Advertiser Name field empty</li><br/><li>Note that error message will appear</li><br/><li>Change Service Level to any</li><br/></ol><br/><p>Expected result: Error message is still dispalyed.</p><br/><p>Actual result: Error message is disappeared.</p>","Defect","High","1302","291016521","291016521","05/20/2016 11:45:03 AM","05/20/2016 11:45:03 AM","05/20/2016","05/18/2016 07:11:20 PM","05/20/2016 11:45:03 AM"
"334912848","[email protected]","Backend: extend audit logging with new entries.","338556369","","archive:sprint 17","backend","","","","5","False","","27","","","<ul><br/><li>Keyword/keyword categories – add/remove/change</li><br/><li>Segments (Retargeting(1<sup>st</sup> and 2<sup>nd</sup>) and 3<sup>rd</sup> party) – add/remove/change</li><br/><li>Budget – add/remove/change</li><br/><li>Dates – add/remove/change</li><br/><li>Impression caps – add/remove/change</li><br/><li>MALT org structure (Advertiser, Campaign Group, etc) – add/remove/change</li><br/><li>Graphics/creative – add/remove/change</li><br/><li>Auto Optimization – add/remove/change</li><br/><li>Browsers – add/remove/change</li><br/><li>Advertiser/Campaign/Adgroup status – add/remove/change</li><br/><li>Advertiser/Campaign/Adgroup type – add/remove/change</li><br/><li>Advertiser/Campaign/Adgroup name – add/remove/change</li><br/><li>Contextual Categories – add/remove/change</li><br/><li>Dayparting – add/remove/change</li><br/><li>Site contextual – add/remove/change</li><br/><li>Device types – add/remove/change</li><br/><li>Exchanges – add/remove/change</li><br/><li>IP range – add/remove/change</li><br/><li>Location/geo – add/remove/change</li><br/><li>Operating systems – add/remove/change</li><br/><li>Pacing/Spend type (throttle) – add/remove/change</li><br/><li>Recency – add/remove/change</li><br/><li>Media type (video vs display) – add/remove/change</li><br/><li>Viewability – add/remove/change</li><br/><li>Website filtering – add/remove/change</li><br/><li>Active/User access to MALT – add/remove/change (Cyndi – This might require access to an IT system to create this report. )</li><br/></ul><br/><p>https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc={A7312801-A29F-4388-9F48-2FD7E52B28DD}&file=DMP%20System%20Design.docx&action=default&DefaultItemOpen=1</p>","Improvement","Normal","1260","","","05/23/2016 09:44:00 AM","05/23/2016 09:44:00 AM","05/23/2016","05/06/2016 01:25:00 PM","05/23/2016 09:44:00 AM"
"340288789","[email protected]","Create table with list of jar binaries and it's classification by service/task","338556369","","archive:sprint 17","backend","","","","1","False","","28","","","<p><span>DOD</span><br /><span>list of all actual jars binaries</span><br /><span>list where jar must be deployed</span><br /><span>list of commandline arguments of each jar, how to start it</span><br /><span>list of jar dependencies, from wich service they depends</span></p>","Task","High","1317","","","05/23/2016 09:44:09 AM","05/23/2016 09:44:09 AM","05/23/2016","05/19/2016 03:02:53 PM","05/23/2016 09:44:09 AM"
"276010343","[email protected]","Backend: AdGroup create - Trade Desk","338556369","","archive:sprint 17","backend,phase-2","","","","2","False","","29","","","","Feature","Normal","266","315687607","315687607","05/23/2016 09:44:16 AM","05/23/2016 09:44:16 AM","05/23/2016","05/16/2016 08:48:38 AM","05/23/2016 09:44:16 AM"
"276015307","[email protected]","Backend: AdGroup profile & settings - Trade Desk","338556369","","archive:sprint 17","backend,phase-2","","","","5","False","","30","","","","Feature","Normal","267","315687609","315687609","05/23/2016 09:44:24 AM","05/23/2016 09:44:24 AM","05/23/2016","05/16/2016 08:48:45 AM","05/23/2016 09:44:24 AM"
"336117637","[email protected]","Backend: AdGroup - Simpli.Fi: Run of Network Ad Groups","338556369","","archive:sprint 17","backend","","","","5","False","","31","","","","Feature","Normal","1281","335043828","335043828","05/23/2016 09:44:30 AM","05/23/2016 09:44:30 AM","05/23/2016","05/16/2016 08:49:27 AM","05/23/2016 09:44:30 AM"
"340254648","[email protected]","Backend: update budget control service for Simpli.Fi pull daily budget/impressions","338556369","","archive:sprint 17","backend","","","","3","False","","32","","","","Improvement","Normal","1316","315682455","315682455","05/25/2016 10:02:49 AM","05/25/2016 10:02:49 AM","05/25/2016","05/19/2016 01:30:12 PM","05/25/2016 10:02:49 AM"
"324118366","[email protected];[email protected];[email protected]","Autocomplete for company name\domain in ip range should show only companies from current Ad Group","338556369","","archive:sprint 17","webui,ip-targeting","","","","1","False","","33","","","","Improvement","Low","1149","","","05/25/2016 06:12:16 PM","05/25/2016 06:12:16 PM","05/25/2016","05/18/2016 03:40:00 PM","05/25/2016 06:12:16 PM"
"295775426","[email protected];[email protected]","WebUI: There shouldn't be a free space if the button isn't shown","338556369","","archive:sprint 17","webui","","","","5","False","","34","","","<p>Steps to reproduce:</p><br/><p>1. Login as Read User - open advertiser list page / campaign list page</p><br/><p>2. Login as Admin User - open advertiser ad group sub page</p><br/><p>Current result: Button ""new"" isn't shown and there is free space <a href=""http://screencast.com/t/jPeYtjZ2j"">http://screencast.com/t/jPeYtjZ2j</a></p><br/><p>Expected result: Button ""new"" isn't shown and there isn't free space </p><br/><p>http://screencast.com/t/De9lAY5xT3</p><br/><p> </p>","Defect","High","544","","","05/25/2016 06:12:29 PM","05/25/2016 06:12:29 PM","05/25/2016","05/19/2016 05:09:24 PM","05/25/2016 06:12:29 PM"
"315111744","[email protected];[email protected];[email protected]","WebUI: Creatives - Create DSP Hosted Creatives for Simpli.fi Ad Groups","338556369","","archive:sprint 17","webui,sprint 13,sprint 14","","","","8","False","","35","","","<p>DOD for type Wizard Creatives Simpli.Fi <a href=""https://docs.google.com/document/d/1Yu9qRCMKqf6WDskIbjVHEla6mWWculNiG_4tSCCU3hg/edit"">https://docs.google.com/document/d/1Yu9qRCMKqf6WDskIbjVHEla6mWWculNiG_4tSCCU3hg/edit#</a> <a href=""https://docs.google.com/document/d/1rfJ4gCGkoCtj6OYH-xuECGY77qe2vWpPfjWBdAzBo50/edit""><br /></a></p>","Feature","Normal","957","274526798","274526798","05/25/2016 06:12:38 PM","05/25/2016 06:12:38 PM","05/25/2016","03/21/2016 03:51:30 PM","05/25/2016 06:12:38 PM"
"315700230","[email protected];[email protected]"," WebUI: Creatives - Create 3rd Party Hosted Creatives for Simpli.fi Ad Groups","338556369","","archive:sprint 17","webui","","","","3","False","","36","","","","Feature","Normal","978","274526798","274526798","05/25/2016 06:12:46 PM","05/25/2016 06:12:46 PM","05/25/2016","04/18/2016 12:14:38 PM","05/25/2016 06:12:46 PM"
"315704605","[email protected];[email protected]","WebUI: Creatives - Edit 3rd Party Hosted Creatives for Simpli.fi Ad Groups","338556369","","archive:sprint 17","webui","","","","3","False","","37","","","","Feature","Normal","979","274526798","274526798","05/25/2016 06:12:53 PM","05/25/2016 06:12:53 PM","05/25/2016","04/29/2016 01:29:25 PM","05/25/2016 06:12:53 PM"
"315706106","[email protected];[email protected]","WebUI: Creatives - Edit DSP Hosted Creatives for Simpli.fi Ad Groups","338556369","","archive:sprint 17","webui","","","","8","False","","38","","","","Feature","Normal","976","274526798","274526798","05/25/2016 06:13:00 PM","05/25/2016 06:13:00 PM","05/25/2016","04/29/2016 01:28:53 PM","05/25/2016 06:13:00 PM"
"315735219","[email protected]","WebUI: Metrics Aggregation - Simpli.fi - Creatives metrics","338556369","","archive:sprint 17","webui","","","","3","False","","39","","","","Feature","Normal","992","315682460","315682460","05/25/2016 06:13:06 PM","05/25/2016 06:13:06 PM","05/25/2016","05/05/2016 12:57:31 PM","05/25/2016 06:13:06 PM"
"315693266","[email protected];[email protected]","WebUI: Creatives - Creative List View for Simpli.fi Ad Groups","338556369","","archive:sprint 17","webui,sprint 15","","","","3","False","Already merged in dev along with all related features.","40","","","","Feature","Normal","977","274526798","274526798","05/25/2016 06:13:12 PM","05/25/2016 06:13:12 PM","05/25/2016","04/14/2016 07:33:47 PM","05/25/2016 06:13:12 PM"
"335024261","[email protected];[email protected]","Trade Desk Synchronization: Simulate Ad Group Time Frame","338556369","","archive:sprint 17","backend","","","","3","False","","41","","","","Feature","Normal","1278","315697661","315697661","05/27/2016 10:28:43 AM","05/27/2016 10:28:43 AM","05/27/2016","05/12/2016 08:39:10 AM","05/27/2016 10:28:43 AM"
"342704220","[email protected];[email protected]","Backend: TradeDesk Synchronization Job - testing instructions","338556369","","archive:sprint 17","backend","","","","3","False","","42","","","","Task","Normal","1363","315697661","315697661","05/30/2016 11:11:01 AM","05/30/2016 11:11:01 AM","05/30/2016","05/25/2016 10:08:34 AM","05/30/2016 11:11:01 AM"
"276005198","[email protected]","Backend: AdGroup targeting. Browsers, device types, operating systems - Trade Desk","338556369","","archive:sprint 17","backend,phase-2","","","","3","False","","43","","","","Feature","Normal","270","315687609","315687609","05/30/2016 11:11:07 AM","05/30/2016 11:11:07 AM","05/30/2016","05/16/2016 08:49:09 AM","05/30/2016 11:11:07 AM"
"327711403","[email protected]","Backend: pull Simpli.Fi hierarchy to separate DB schema on dev environment","338556369","","archive:sprint 17","backend","","","","5","False","","44","","","","Task","Normal","1200","","","05/30/2016 11:11:19 AM","05/30/2016 11:11:19 AM","05/30/2016","04/20/2016 09:22:44 AM","05/30/2016 11:11:19 AM"
"338516002","","Backend: Creative - Synchronize facebook trackings with Simpli.fi","338556369","","archive:sprint 17","backend,phase-2","","","","1","False","","45","","","","Task","Normal","1301","","","05/30/2016 04:36:04 PM","05/30/2016 04:36:04 PM","05/30/2016","05/30/2016 04:36:04 PM","05/30/2016 04:36:04 PM"
"343863936","[email protected]","Backend: executive-cli - fix issues with exit codes","344612990","","archive:sprint 18","backend","","","","3","False","","0","","","<p>We have different scenarios when:</p><br/><ul><br/><li>exception happens in before step</li><br/><li>exception hapens in Spring Batch pipeline (writer for example)</li><br/><li>ExecutiveCli:112 fails with NPE, because JobExecution is null</li><br/></ul><br/><p>We need to investigate this situations and be sure that all exceptions causes exit code that differs from 0 that makes impression like everything is ok.</p>","Defect","Normal","1367","","","05/31/2016 08:10:01 AM","05/31/2016 08:10:01 AM","05/31/2016","05/27/2016 10:41:00 AM","05/31/2016 08:10:01 AM"
"344605046","[email protected]","Backend: Trade Desk Campaign changes.","344612990","","archive:sprint 18","backend","","","","1","False","","1","","","<p>1. spendPrioritizationEnables -> isSpendPrioritizationEnables</p><br/><p>2. facebookIntegrationForm -> </p><br/><p>facebookAdvertiserAddress, facebookAdvertiserWebsite</p><br/><p>3. facebookAdvertiserAddress should contain no less then 20 characters.</p>","Task","Normal","1371","","","05/31/2016 08:10:13 AM","05/31/2016 08:10:13 AM","05/31/2016","05/30/2016 04:35:31 PM","05/31/2016 08:10:13 AM"
"344062608","[email protected];[email protected]","Backend: Adgroup Buying Strategy adjustments","344612990","","archive:sprint 18","backend","","","","0","False","","2","","","<p>Related to feedback cards <em><strong>833, 857, 859, 1244. </strong></em>See details in sub-tasks.</p>","Defect","High","1368","","","06/01/2016 10:31:23 AM","06/01/2016 10:31:23 AM","06/01/2016","05/27/2016 08:23:01 PM","06/01/2016 10:31:23 AM"
"336117639","[email protected];[email protected]","Backend: Ad Group - Simpli.Fi: Targeting: Radius Targeting","344612990","","archive:sprint 18","backend","","","","5","False","","3","","","","Feature","Normal","1282","335043828","335043828","06/02/2016 09:28:16 AM","06/02/2016 09:28:16 AM","06/02/2016","05/18/2016 07:02:32 PM","06/02/2016 09:28:16 AM"
"304987323","","Advertiser Profile Page: Campaigns Subpage - Move state and search filters to left","344612990","","archive:sprint 18","webui,campaigns","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=56&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","0","False","","4","","","<p>Issue 56 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=56&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Campaigns Subpage - Move state and search filters to left</a></p>","UAT Feedback","Normal","759","","","06/02/2016 02:33:37 PM","06/02/2016 02:33:37 PM","06/02/2016","06/02/2016 02:33:37 PM","06/02/2016 02:33:37 PM"
"346540584","","Advertiser Site Create: Site URL verification Server Error message","344612990","","archive:sprint 18","webui,site-popup,sites,piwik","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=269&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","5","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=269&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 269</a></p>","UAT Feedback","Critical","1384","","","06/06/2016 09:32:04 AM","06/06/2016 09:32:04 AM","06/06/2016","06/03/2016 12:28:13 PM","06/06/2016 09:32:04 AM"
"346540586","","MultiView Site Create: MultiView Site URL verification, Server Error","344612990","","archive:sprint 18","webui,site-popup,sites,piwik","","Defect","","0","False","","6","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=270&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 270</a></p>","UAT Feedback","Critical","1385","","","06/06/2016 09:32:59 AM","06/06/2016 09:32:59 AM","06/06/2016","06/03/2016 12:28:22 PM","06/06/2016 09:32:59 AM"
"307437863","[email protected]","Ad Group Create Wizard: Budget Step - Add Sub-Section Titles","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=123&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Tested by client. Passed","7","","","<p>Issue 123 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=123&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Add Sub-Section Titles</a></p>","UAT Feedback","Normal","830","","","06/14/2016 12:07:35 PM","06/14/2016 03:31:33 PM","06/14/2016","03/11/2016 06:56:38 PM","06/14/2016 12:07:35 PM"
"282468370","[email protected];[email protected];[email protected]","WebUI: Improve sorting of the table by run dates","344612990","","archive:sprint 18","webui","","","","3","False","","8","","","<p>steps to reproduce:</p><br/><p>1. open campaign lists page (or ad groups lists page) http://malt-web.dev.multiview.com/advertiser/348/campaigns<br />2. Sort the table by run dates</p><br/><p>http://screencast.com/t/dE0Fpu6m8P<br />Current result: There is a sorting by start date</p><br/><p>Expected result: If start date is equal then sorting should be by end date</p>","Improvement","Low","383","","","06/07/2016 11:45:36 AM","06/07/2016 11:45:36 AM","06/07/2016","05/23/2016 04:18:00 PM","06/07/2016 11:45:36 AM"
"312219598","[email protected];[email protected];[email protected]","WebUI: Don't allow to user to unset value of Recency Type (set it as empty)","344612990","","archive:sprint 18","webui","","","","2","False","","9","","","<ol><br/><li dir=""ltr""><br/><p dir=""ltr""><span>Should we allow user to unset value of Recency Type (set it as empty) if before this one was previously set as '1 week' for example ?</span><span><br class=""kix-line-break"" /></span><span>On Simpli.fy user can't do this, but it looks like a bug.</span></p><br/></li><br/></ol><br/><p><span id=""docs-internal-guid-13674032-7377-b6f4-20c7-b6e998749fc6""><span>Answer: </span><span>Make it like in simplify.</span></span></p>","Defect","High","912","","","06/07/2016 11:45:38 AM","06/07/2016 11:45:38 AM","06/07/2016","05/20/2016 04:08:40 PM","06/07/2016 11:45:38 AM"
"312861075","[email protected];[email protected];[email protected]","WebUI: Don't allow to scroll header of the table and search field on targeting popups","344612990","","archive:sprint 18","webui","","","","3","False","","10","","","<p><strong>Steps to reproduce:</strong></p><br/><p>1. Open page <a href=""http://malt-web.dev.multiview.com/adgroup/4056/targeting"">http://malt-web.dev.multiview.com/adgroup/4056/targeting</a></p><br/><p>2. OPen popup Site Contextual Targeting, Domain Targeting, Location - GeoTargeting - DMAs</p><br/><p>3. Scroll popup with long table</p><br/><p><strong>Current result:</strong> The header and search field are scrolled</p><br/><p><strong>Expected result: </strong><span>The header and search field aren't scrolled as on <span> Location - GeoTargeting - CRCs tab</span></span></p>","Defect","High","927","","","06/07/2016 11:45:41 AM","06/07/2016 11:45:41 AM","06/07/2016","05/23/2016 01:24:32 PM","06/07/2016 11:45:41 AM"
"312884862","[email protected];[email protected];[email protected]","WebUI: cursor shouldn't be changed to move it over text in DataPicker table on IE","344612990","","archive:sprint 18","webui","","","","1","False","","11","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/hSb8KCIS"">http://screencast.com/t/hSb8KCIS</a> </p>","Defect","Low","932","","","06/07/2016 11:45:43 AM","06/07/2016 11:45:43 AM","06/07/2016","05/20/2016 04:09:17 PM","06/07/2016 11:45:43 AM"
"315727687","[email protected]","WebUI: Camapgin - TradeDesk - Create Form (includes trade desk advertiser details)","344612990","","archive:sprint 18","webui,campaign-popup,TradeDesk","","","","8","False","","12","","06/06/2016","<p>https://docs.google.com/document/d/1-y9SrvBxX8_4rj5NKbG80HaeXWYQjN8ZMby-ICwAPnI/edit#</p>","Feature","Normal","1002","315687607","315687607","06/07/2016 11:45:44 AM","06/07/2016 11:45:44 AM","06/07/2016","05/24/2016 12:27:59 PM","06/07/2016 11:45:44 AM"
"315735814","[email protected]","WebUI: Camapgin - TradeDesk - Profile Page","344612990","","archive:sprint 18","webui,campaign,TradeDesk","","","","3","False","","13","","06/06/2016","","Feature","Normal","1003","315687607","315687607","06/07/2016 11:45:59 AM","06/07/2016 11:45:59 AM","06/07/2016","05/24/2016 12:27:59 PM","06/07/2016 11:45:59 AM"
"325791910","[email protected];[email protected];[email protected]","Cursor should be hand when user moves it over Dataparting cell and text","344612990","","archive:sprint 18","webui,dayparting","","","","1","False","","14","","","<p>See more: <a href=""http://screencast.com/t/6wovvOY1ZkD"">http://screencast.com/t/6wovvOY1ZkD</a> </p>","Defect","Low","1180","","","06/07/2016 11:46:03 AM","06/07/2016 11:46:03 AM","06/07/2016","05/20/2016 04:11:32 PM","06/07/2016 11:46:03 AM"
"325793812","[email protected];[email protected];[email protected]","Need to define day time for 4 and 8 in DayParting","344612990","","archive:sprint 18","webui,dayparting","","","","1","False","","15","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/ZDU59e3tf"">http://screencast.com/t/ZDU59e3tf</a> </p><br/><p> </p>","Defect","Low","1179","","","06/07/2016 11:46:05 AM","06/07/2016 11:46:05 AM","06/07/2016","05/19/2016 12:47:11 PM","06/07/2016 11:46:05 AM"
"328921072","[email protected];[email protected]","IP Targeting Popup","344612990","","archive:sprint 18","webui,ip-targeting","","","","5","False","","16","","","<p>According to answers of client <a href=""https://docs.google.com/spreadsheets/d/1H5WfX4leMYUeIFX0_0LyOeuUUU9uYRM8T2eQkZrlres/edit#gid=0"">https://docs.google.com/spreadsheets/d/1H5WfX4leMYUeIFX0_0LyOeuUUU9uYRM8T2eQkZrlres/edit#gid=0</a> </p>","Improvement","High","1211","","","06/07/2016 11:46:10 AM","06/07/2016 11:46:10 AM","06/07/2016","05/20/2016 02:53:39 PM","06/07/2016 11:46:10 AM"
"330906218","[email protected];[email protected];[email protected]","Search by id number work by entrance not by exact value ","344612990","","archive:sprint 18","webui,general","","","","3","False","","17","","","<p><strong>Steps to reproduce:</strong></p><br/><ul><br/><li>open page or popup with search field</li><br/><li>make a serch by exact id with several letters after it (for example, ID=46, input in the search 46hgdddg)</li><br/></ul><br/><p><strong> Current result:</strong> There is row with entity with ID(Account) 46 <a href=""http://screencast.com/t/qz2yxETY"">http://screencast.com/t/qz2yxETY</a> <a href=""http://screencast.com/t/naY7AyyBH"">http://screencast.com/t/naY7AyyBH</a> </p><br/><p><strong>Expected result:</strong> There shouldn't be results of the search</p>","Defect","Normal","1233","","","06/07/2016 11:46:14 AM","06/07/2016 11:46:14 AM","06/07/2016","05/23/2016 06:39:53 PM","06/07/2016 11:46:14 AM"
"333910897","[email protected];[email protected];[email protected]","JS error at removing OS from an OS list","344612990","","archive:sprint 18","webui,os-targeing","","","","1","False","","18","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/p8yiGYFBgR6t"">http://screencast.com/t/p8yiGYFBgR6t</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to targeting subpage for an adgroup</li><br/><li>Click OS targeting</li><br/><li>Add some OSes</li><br/><li>Open console</li><br/><li>Try to remove some OS from list</li><br/></ol><br/><p><strong>Actual result:</strong> js error</p><br/><p><strong>Expected result:</strong> no errors</p>","Defect","Normal","1253","","","06/07/2016 11:46:22 AM","06/07/2016 11:46:22 AM","06/07/2016","05/19/2016 12:44:28 PM","06/07/2016 11:46:22 AM"
"333917702","[email protected];[email protected];[email protected]","Nan is displayed at inputting dot in budget field","344612990","","archive:sprint 18","webui,campaign","","","","2","False","","19","","","<p><strong>See video:</strong> <a href=""http://screencast.com/t/x6qckC1C8ep"">http://screencast.com/t/x6qckC1C8ep</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>input in budget (float type with rounding at unfocus) field a dot '.'</li><br/><li>unfocus field</li><br/></ol><br/><p><strong>Actual result</strong>: NaN word is in the field (at saving Budget is Unlimited)</p><br/><p><strong>Expected result:</strong> nothinf is in the field after unfocusing</p>","Defect","Low","1254","","","06/07/2016 11:46:26 AM","06/07/2016 11:46:26 AM","06/07/2016","05/23/2016 06:39:35 PM","06/07/2016 11:46:26 AM"
"336809258","[email protected];[email protected]","WebUI: Search finds nothing if there are special symbols in Advertiser's name","344612990","","archive:sprint 18","webui,general","","","","2","False","","20","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Navigate to ""Advertisers"" page</li><br/><li>Create an advertiser with ""ad_ver_tiser"" name</li><br/><li>Enter ""ad_"" to search field</li><br/></ol><br/><p><strong>Expected result:</strong> ""ad_ver_tiser"" is found</p><br/><p><strong>Actual result:</strong> Nothing is found</p><br/><p><strong>Note:</strong> This bug reproduces with such symbols as ""%"", ""["" as well</p>","Defect","Normal","1287","","","06/07/2016 11:46:30 AM","06/07/2016 11:46:30 AM","06/07/2016","05/19/2016 12:43:44 PM","06/07/2016 11:46:30 AM"
"342119486","[email protected]","WebUI: TradeDesk Campaign - Advertiser porfile","344612990","","archive:sprint 18","webui,campaigns,TradeDesk","","","","3","False","","21","","06/06/2016","<p>https://docs.google.com/document/d/18gq4diBwvKleLTzicUHFokfm_Mf6EKEOxcd4DM2GVGo/edit#</p>","Feature","Normal","1332","315687607","315687607","06/07/2016 11:46:36 AM","06/07/2016 11:46:36 AM","06/07/2016","05/24/2016 12:50:55 PM","06/07/2016 11:46:36 AM"
"342128874","[email protected];[email protected];[email protected]","WebUI: Creative fixes","344612990","","archive:sprint 18","webui,creatives,creative-wizard,creative-edit","","","","5","False","","22","","","<p>Full list of bugs in this document.<br /><a href=""https://docs.google.com/document/d/1KmeIm7HPuh1ulQ5QYTNrzLOn2UGxhbPt__YZ0zFxxTc/edit"">https://docs.google.com/document/d/1KmeIm7HPuh1ulQ5QYTNrzLOn2UGxhbPt__YZ0zFxxTc/edit<br /><br />C</a>hecklist from QA<br /><a href=""https://docs.google.com/spreadsheets/d/1euqeHzAHhwnJa2a8YYfZ-lAtkIQLOXlfNaFYaG651vE/edit#gid=1245348008"" target=""_blank"">https://docs.google.com/spreadsheets/d/1euqeHzAHhwnJa2a8YYfZ-lAtkIQLOXlfNaFYaG651vE/edit#gid=1245348008</a></p>","Defect","Critical","1333","","","06/07/2016 11:46:43 AM","06/07/2016 11:46:43 AM","06/07/2016","05/24/2016 01:40:42 PM","06/07/2016 11:46:43 AM"
"276002586","[email protected]","Backend: AdGroup targeting. Dayparting, domains, locations - Trade Desk","344612990","","archive:sprint 18","backend,phase-2","","","","3","False","","23","","","","Feature","Normal","271","315687609","315687609","06/09/2016 10:35:13 AM","06/09/2016 10:35:13 AM","06/09/2016","05/24/2016 04:07:48 PM","06/09/2016 10:35:13 AM"
"328932873","[email protected]","Domain list: ""Automatically Set New Ad Groups To Include At Create"" function should work only for active Domain Lists","344612990","","archive:sprint 18","domain-targeting,backend","","","","1","False","","24","","","<p><strong>steps to reproduce:</strong></p><br/><ul><br/><li>for domain blacklist function is ""on""</li><br/><li>domain list has been deactivated</li><br/><li>create new ad group</li><br/></ul><br/><p><strong> Current result:</strong> domain list is automatically add for targeting of new Ad Group</p><br/><p><strong>Expected result:</strong> Only active domain lists should be added automatically to new ad group targeting </p><br/><p>According to the answer of client <a href=""https://docs.google.com/spreadsheets/d/1H5WfX4leMYUeIFX0_0LyOeuUUU9uYRM8T2eQkZrlres/edit#gid=0"">https://docs.google.com/spreadsheets/d/1H5WfX4leMYUeIFX0_0LyOeuUUU9uYRM8T2eQkZrlres/edit#gid=0</a> </p>","Defect","High","1210","","","06/09/2016 10:35:20 AM","06/09/2016 10:35:20 AM","06/09/2016","05/30/2016 10:56:21 AM","06/09/2016 10:35:20 AM"
"348444343","[email protected]","Backend: Trade Desk end date should be end of day.","344612990","","archive:sprint 18","backend","","","","1","False","","25","","","","Task","Normal","1427","","","06/09/2016 10:35:25 AM","06/09/2016 10:35:25 AM","06/09/2016","06/08/2016 02:00:28 PM","06/09/2016 10:35:25 AM"
"348412204","[email protected]","Backend: Add validation for Trade Desk advertiser.","344612990","","archive:sprint 18","backend","","","","1","False","","26","","","<p>""ErrorDetails"": [<br /> {<br /> ""Property"": ""Advertiser.AttributionClickLookbackWindowInSeconds"",<br /> ""Reasons"": [<br /> ""The property 'AttributionClickLookbackWindowInSeconds' must not be null and must have a value greater than '0' and no greater than '7776000'.""<br /> ]<br /> },<br /> {<br /> ""Property"": ""Advertiser.AttributionImpressionLookbackWindowInSeconds"",<br /> ""Reasons"": [<br /> ""The property 'AttributionImpressionLookbackWindowInSeconds' must not be null and must have a value greater than '0' and no greater than '7776000'.""<br /> ]<br /> }<br /> ]</p><br/><p>===================================================</p><br/><p>""ErrorDetails"": [<br /> {<br /> ""Property"": ""Advertiser.FacebookAttributes.AdvertiserWebSite"",<br /> ""Reasons"": [<br /> ""AdvertiserWebSite must be in the form of http(s)://<url>""<br /> ]<br /> }<br /> ]</p>","Task","Normal","1425","","","06/09/2016 10:35:34 AM","06/09/2016 10:35:34 AM","06/09/2016","06/08/2016 10:49:43 AM","06/09/2016 10:35:34 AM"
"348456263","[email protected]","Backend: Change advertiser DomainAddress field validation.","344612990","","archive:sprint 18","backend","","","","2","False","","27","","","<p><span>MV answer:</span></p><br/><p>Let's just change this field to be a normal text entry field with standard url validations instead of being tied to a site record. This will make migration more simple as well.</p>","Task","Normal","1428","","","06/09/2016 10:35:39 AM","06/09/2016 10:35:39 AM","06/09/2016","06/08/2016 02:14:57 PM","06/09/2016 10:35:39 AM"
"347088946","","Site URL Verification, incorrectly accepted URL","344612990","","archive:sprint 18","sites,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=275&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","0","False","","28","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=275&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 275</a></p>","UAT Feedback","Critical","1394","","","06/09/2016 11:40:24 AM","06/09/2016 11:40:24 AM","06/09/2016","06/09/2016 11:40:24 AM","06/09/2016 11:40:24 AM"
"332573187","[email protected];[email protected];[email protected]","Ad Group Keywords: Pasting Keywords with Bid","344612990","","archive:sprint 18","webui,backend,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=236&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","3","False","","29","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=236&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 236</a></p><br/><p>Look at issue 254 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=254&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Using Comma to identify bid amount for keywords.</a><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=228&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE""><br /></a></p><br/><p> </p>","UAT Feedback","Critical","1242","","","06/14/2016 10:22:52 AM","06/14/2016 10:22:52 AM","06/14/2016","05/18/2016 05:11:53 PM","06/14/2016 10:22:52 AM"
"322116794","[email protected];[email protected]","Ad Group Targeting Subpage: Domain Targeting - Count in summary incorrect","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=195&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","30","","","<p>Issue 195 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=195&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Domain Targeting - Count in summary incorrect</a></p>","UAT Feedback","Critical","1111","","","06/14/2016 10:32:39 AM","06/14/2016 10:32:39 AM","06/14/2016","04/07/2016 11:35:48 AM","06/14/2016 10:32:39 AM"
"323976460","[email protected];[email protected]","General: All List View Tables - Add Sort By Symbol at Default","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=215&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","31","","","<p>Issue 215 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=215&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">All List View Tables - Add Sort By Symbol at Default</a></p>","UAT Feedback","High","1143","","","06/14/2016 11:26:37 AM","06/14/2016 11:26:37 AM","06/14/2016","04/15/2016 06:19:22 PM","06/14/2016 11:26:37 AM"
"322107364","[email protected];[email protected]","Ad Group Domain Targeting: Add Domain Count for unique count of domains","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=212&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","32","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=212&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Add Domain Count for unique count of domains</a> Issue 212</p>","UAT Feedback","High","1112","","","06/14/2016 11:27:26 AM","06/14/2016 11:27:26 AM","06/14/2016","04/07/2016 11:50:16 AM","06/14/2016 11:27:26 AM"
"322111571","[email protected];[email protected]","Ad Group Domain Targeting: Adjust columns in selected and available list views.","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=210&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","33","","","<p>Issue 210 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=210&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Adjust columns in selected and available list views.</a></p>","UAT Feedback","High","1108","","","06/14/2016 11:32:42 AM","06/14/2016 11:32:42 AM","06/14/2016","04/07/2016 12:00:34 PM","06/14/2016 11:32:42 AM"
"322115190","[email protected];[email protected];[email protected]","Ad Group Domain Targeting: Saved lists should not be lost when list type is not selected","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=209&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","","34","","","<p>Issue 209 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=209&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Saved lists should not be lost when list type is not selected</a></p>","UAT Feedback","High","1107","","","06/14/2016 11:33:36 AM","06/14/2016 11:33:36 AM","06/14/2016","04/07/2016 12:01:16 PM","06/14/2016 11:33:36 AM"
"321553690","[email protected];[email protected]","Domain List Details/Edit: Ad Groups Table - Change placeholder in search box","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=204&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","35","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=204&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 204</a></p>","UAT Feedback","High","1098","","","06/14/2016 11:34:32 AM","06/14/2016 11:34:32 AM","06/14/2016","04/07/2016 12:07:29 PM","06/14/2016 11:34:32 AM"
"321557077","[email protected];[email protected]","Domain List Details/Edit: Ad Groups Table - Change Status Field","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=203&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","36","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=203&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 203</a></p>","UAT Feedback","High","1097","","","06/14/2016 11:35:13 AM","06/14/2016 11:35:13 AM","06/14/2016","04/12/2016 03:42:34 PM","06/14/2016 11:35:13 AM"
"321557263","[email protected];[email protected]","Ad Group Domain Targeting Popup: Ad ""Selected"" in green font next to the selected Domain List Targeting Type","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=207&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","37","","","<p>Шыыгу 207 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=207&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad ""Selected"" in green font next to the selected Domain List Targeting Type</a></p>","UAT Feedback","High","1092","","","06/14/2016 11:36:22 AM","06/14/2016 11:36:22 AM","06/14/2016","04/07/2016 12:02:57 PM","06/14/2016 11:36:22 AM"
"321553684","[email protected];[email protected]","Domain List Details/Edit: Domains Table - Align the table column headers to the alignment of the values","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=201&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","38","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=201&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 201</a></p>","UAT Feedback","High","1095","","","06/14/2016 11:44:43 AM","06/14/2016 11:44:43 AM","06/14/2016","04/07/2016 12:03:55 PM","06/14/2016 11:44:43 AM"
"321552268","[email protected];[email protected]","Domain List Create Form: Change Create Form Title","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=200&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","39","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=200&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 200</a></p>","UAT Feedback","High","1094","","","06/14/2016 11:45:25 AM","06/14/2016 11:45:25 AM","06/14/2016","04/07/2016 12:03:19 PM","06/14/2016 11:45:25 AM"
"321552265","[email protected];[email protected]","Domain List Create Form: List Type field should have a ""Required"" asterisk","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=199&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","40","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=199&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 199</a></p>","UAT Feedback","High","1093","","","06/14/2016 11:46:21 AM","06/14/2016 11:46:21 AM","06/14/2016","04/07/2016 12:02:14 PM","06/14/2016 11:46:21 AM"
"321553693","[email protected];[email protected]","Domain List List View: Change Column Order","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=198&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","41","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=198&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 198</a></p>","UAT Feedback","High","1100","","","06/14/2016 11:47:14 AM","06/14/2016 11:47:14 AM","06/14/2016","04/07/2016 12:01:58 PM","06/14/2016 11:47:14 AM"
"307441690","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Details Form - Rearrange Field Locations","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=141&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Client tested","42","","","<p>Issue 141 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=141&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Details Form - Rearrange Field Locations</a></p>","UAT Feedback","Normal","846","","","06/14/2016 11:48:52 AM","06/14/2016 11:48:52 AM","06/14/2016","03/29/2016 12:31:13 PM","06/14/2016 11:48:52 AM"
"304938280","[email protected];[email protected]","Ad Group Targeting Subpage - Location Targeting: GeoTargeting - Expansion Buttons Broken","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=167&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","5","False","Going to be implemented together with 913","43","","","<p>Issue 167 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=167&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">GeoTargeting - Expansion Buttons Broken</a></p><br/><p> </p>","UAT Feedback","High","740","","","06/14/2016 11:50:50 AM","06/14/2016 11:50:50 AM","06/14/2016","03/03/2016 01:42:10 PM","06/14/2016 11:50:50 AM"
"319144615","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Add Sub-Section Titles","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=123&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","44","","","<p>Issue 123 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=123&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Add Sub-Section Titles</a></p><br/><p>Pay attention for Edit Budget form Issue 143 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=143&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Add Sub-Section Titles</a> (card 848)</p><br/><p>Correct Summary step</p><br/><p> </p>","UAT Feedback","Normal","1074","307437863","307437863","06/14/2016 11:54:49 AM","06/14/2016 11:54:49 AM","06/14/2016","04/15/2016 01:22:08 PM","06/14/2016 11:54:49 AM"
"307437873","[email protected];[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Details Form - Add Clear Button To End Date ","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=140&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Made required improvement","45","","","<p>Issue 140 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=140&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Details Form - Add Clear Button To End Date</a></p>","UAT Feedback","Normal","845","","","06/14/2016 11:58:06 AM","06/14/2016 11:58:07 AM","06/14/2016","03/24/2016 04:13:42 PM","06/14/2016 11:58:06 AM"
"307438699","[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Details Form - Show All Fields","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=139&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","","46","","","<p>Issue 139 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=139&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Details Form - Show All Fields</a></p><br/><p>It is connected with Issue 141 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=141&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Details Form - Rearrange Field Locations</a>. See comment in 141 Issue</p><br/><p> </p>","UAT Feedback","High","844","","","06/14/2016 11:59:35 AM","06/14/2016 11:59:35 AM","06/14/2016","04/15/2016 01:43:14 PM","06/14/2016 11:59:35 AM"
"307437857","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Details Step - Add Clear Button To End Date","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=110&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Made required improvement","47","","","<p>Issue 110 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=110&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Details Step - Add Clear Button To End Date</a></p>","UAT Feedback","Normal","816","","","06/14/2016 12:01:19 PM","06/14/2016 12:01:20 PM","06/14/2016","03/23/2016 03:10:19 PM","06/14/2016 12:01:19 PM"
"318591505","[email protected];[email protected]","Ad Group Create Wizard: Number Navigational Steps","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=106&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","fix bug and update branch","48","","","<p>Issue 106 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=106&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Number Navigational Steps</a></p>","UAT Feedback","Normal","1064","307428943","307428943","06/14/2016 12:02:36 PM","06/14/2016 12:02:36 PM","06/14/2016","04/15/2016 01:42:04 PM","06/14/2016 12:02:36 PM"
"307428943","[email protected];[email protected]","Ad Group Create Wizard: Number Navigational Steps","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=106&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","tested by client","49","","","<p>issue 106 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=106&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Number Navigational Steps</a></p><br/><p><br />Change navigational steps to be numbered with colored text, not box fill like currently being done. See attached image for desired results for passed, current, and inactive steps. Also, explanation clarified/updated in requirements documentation.</p>","UAT Feedback","Normal","814","","","06/14/2016 12:02:54 PM","06/14/2016 12:02:54 PM","06/14/2016","03/16/2016 02:15:47 PM","06/14/2016 12:02:54 PM"
"319144621","[email protected];[email protected]","Advertiser Profile Page: Campaigns Subpage - Undefined end dates displaying wrong","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=87&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","fixed","50","","","<p>Issue 87 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=87&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Campaigns Subpage - Undefined end dates displaying wrong</a></p><br/><p>Pay attention on Campaign Quick View - this rule should work and for quick view. Shouldn't work for settings page - on setting page should be real value for End date (if doesn't defined - ""Undefined"")</p><br/><p> </p>","UAT Feedback","Normal","1075","307438658","307438658","06/14/2016 12:03:35 PM","06/14/2016 12:03:35 PM","06/14/2016","04/15/2016 01:43:55 PM","06/14/2016 12:03:35 PM"
"318575068","[email protected];[email protected]","Advertiser Profile Page: Campaigns Subpage - Increase Search Box Width","344612990","","archive:sprint 18","webui","","Change request","","1","False","","51","","","<p>Issue 57 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=57&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Campaigns Subpage - Increase Search Box Width</a></p>","UAT Feedback","Normal","1063","306985702","306985702","06/14/2016 12:06:31 PM","06/14/2016 12:06:31 PM","06/14/2016","04/15/2016 01:21:07 PM","06/14/2016 12:06:31 PM"
"306985702","[email protected]","Advertiser Profile Page: Campaigns Subpage - Increase Search Box Width","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=57&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","Passed by client","52","","","<p>Issue 57 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=57&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Campaigns Subpage - Increase Search Box Width</a></p>","UAT Feedback","Normal","799","","","06/14/2016 12:08:26 PM","06/14/2016 03:32:08 PM","06/14/2016","03/11/2016 06:48:55 PM","06/14/2016 12:08:26 PM"
"307438658","[email protected]","Advertiser Profile Page Campaigns Subpage - Undefined end dates displaying wrong","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=87&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","Passed by client","53","","","<p>Issue 87 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=87&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Campaigns Subpage - Undefined end dates displaying wrong</a></p>","UAT Feedback","Normal","811","","","06/14/2016 12:08:32 PM","06/14/2016 03:32:35 PM","06/14/2016","03/10/2016 05:20:51 PM","06/14/2016 12:08:32 PM"
"307435257","[email protected]","Ad Group Profile Page - Settings : Edit Budget Form - Add Sub-Section Titles","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=143&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","54","","","<p>Issue 143 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=143&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Budget Form - Add Sub-Section Titles</a></p>","UAT Feedback","Normal","848","","","06/14/2016 12:08:36 PM","06/14/2016 03:31:03 PM","06/14/2016","03/24/2016 04:40:22 PM","06/14/2016 12:08:36 PM"
"291016521","[email protected];[email protected];[email protected]","General: Any field on edit or create form that has validation highlight red","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=21&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","5","False","We added separated card about client validation for keywords filter","55","","","<ul><br/><li><br/><p>Any field on edit or create form that has validation against it (ex. Must be a currency or a specific date format) should highlight red to show error when user gets out of field.</p><br/></li><br/><li>Issue 21 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=21&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Highlight field red where validation fails</a></li><br/></ul><br/><p><a href=""https://docs.google.com/document/d/1vxms0pXQ0dt4Ud2EXiXgY_qo_HrHsLeBTzgvxVQ7lUU/edit"">https://docs.google.com/document/d/1vxms0pXQ0dt4Ud2EXiXgY_qo_HrHsLeBTzgvxVQ7lUU/edit</a> - document with bugs</p><br/><p> </p>","UAT Feedback","Normal","501","","","06/14/2016 12:09:46 PM","06/14/2016 12:09:46 PM","06/14/2016","03/29/2016 05:23:24 PM","06/14/2016 12:09:46 PM"
"291025270","[email protected]","General: Use of the Browser Back Button","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=19&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","passed by client","56","","","<ul><br/><li><br/><p>When using the browser “back” button, it should not go back to the last subpage the user was on. Instead, it should go back to the last full page the user was on. Example: If user navigates from Advertiser List View to Advertiser Profile Page, they will land on the overview subpage. They then selected in the left navigation to go to the DMP subpage from the overview subpage. The user then hits the browser “back” button. It currently would take them back to the overview subpage. It should not. It should have taken them back to the Advertiser List View.</p><br/></li><br/></ul>","UAT Feedback","High","499","","","06/14/2016 12:10:55 PM","06/14/2016 12:10:55 PM","06/14/2016","02/08/2016 12:27:05 PM","06/14/2016 12:10:55 PM"
"307434151","","Campaign Profile Page: Ad Groups Subpage - shift state and search filters","344612990","","archive:sprint 18","webui,adgroups","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=69&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","","57","","","<p>69 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=69&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Ad Groups Subpage - shift state and search filters</a></p>","UAT Feedback","Normal","804","","","06/14/2016 02:23:02 PM","06/14/2016 02:23:02 PM","06/14/2016","06/09/2016 10:32:41 PM","06/14/2016 02:23:02 PM"
"304994680","[email protected];[email protected];[email protected]","Advertiser create form: Only show coorelating owner fields","344612990","","archive:sprint 18","webui,advertiser-popup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=35&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Client gave the answer","58","","","<p>Issue 35 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=35&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Only show coorelating owner fields</a></p>","UAT Feedback","Low","763","","","06/14/2016 02:41:37 PM","06/14/2016 02:41:37 PM","06/14/2016","06/02/2016 02:32:32 PM","06/14/2016 02:41:37 PM"
"347802749","[email protected];[email protected];[email protected]","Show loader during the creation of the TD campaign","344612990","","archive:sprint 18","webui","","","","0","False","","59","","","","Defect","Normal","1401","","","06/14/2016 07:23:03 PM","06/14/2016 07:23:03 PM","06/14/2016","06/07/2016 09:53:52 AM","06/14/2016 07:23:03 PM"
"346659498","[email protected];[email protected];[email protected];[email protected]","Goal value should be empty when user changes goal type","344612990","","archive:sprint 18","adgroup-wizard,adgroup-edit,webui","","","","1","False","","60","","","<p><strong>See more:</strong> <a href=""http://screencast.com/t/WgnsPZN8w08"">http://screencast.com/t/WgnsPZN8w08</a> </p><br/><p><strong>To reproduce:</strong></p><br/><ol><br/><li>Open create or edit popup, Budget strategy step</li><br/><li>Select some not-none goal type </li><br/><li>Enter some goal value</li><br/><li>Select another not-none goal</li><br/><li>Look at goal value</li><br/></ol><br/><p><strong>Actual result:</strong> value which we set fo previous goal type</p><br/><p><strong>Expected result:</strong> empty field goal value</p>","Defect","High","1390","","","06/14/2016 07:44:20 PM","06/14/2016 07:44:20 PM","06/14/2016","06/03/2016 04:53:45 PM","06/14/2016 07:44:20 PM"
"347831218","[email protected];[email protected];[email protected]","Location Targeting Popup: Search doesn't work at all","344612990","","archive:sprint 18","webui,location-targeting","","","","2","False","","61","","","","Defect","High","1403","","","06/14/2016 07:44:39 PM","06/14/2016 07:44:39 PM","06/14/2016","06/07/2016 12:06:39 PM","06/14/2016 07:44:39 PM"
"325854967","[email protected];[email protected];[email protected]","Error about Day Parting cannot be empty isn't shown for user if all time sets as off ","344612990","","archive:sprint 18","webui,dayparting-targeting","","","","3","False","","62","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to adgroup targeting page</li><br/><li>Click Edit for Date Part</li><br/><li>Set all cells as Off</li><br/><li>Click Save</li><br/></ol><br/><p><strong>Actual result:</strong> nothing happens</p><br/><p><strong>Expected result:</strong> error about user need to set least one cell</p><br/><p><strong>Note:</strong> when user tries to set all off cells this state is saved on frintend side</p>","Defect","Normal","1185","","","06/14/2016 07:45:35 PM","06/14/2016 07:45:35 PM","06/14/2016","05/25/2016 06:45:11 PM","06/14/2016 07:45:35 PM"
"320507085","[email protected];[email protected];[email protected]","There isn't opportunity to reset data manager and created manager at editing advirtiser","344612990","","archive:sprint 18","webui,advertiser,backend","","","","2","False","","63","","","<p><strong>To reproduce:</strong></p><br/><ol><br/><li>Go to advirtiser profile page</li><br/><li>Click settings tab</li><br/><li>Click edit</li><br/><li>Set Person as Owner</li><br/><li>Select any person</li><br/><li>Set Data and Created managers</li><br/><li>Click save</li><br/><li>CLick edit again</li><br/><li>Set empty line as Data and Created managers</li><br/><li>Save</li><br/></ol><br/><p><strong>Actual result:</strong> Data and Created managers exist and equal previous values</p><br/><p><strong>Expected result:</strong> no Data and Created managers</p>","Defect","Normal","1086","","","06/14/2016 07:46:32 PM","06/14/2016 07:46:32 PM","06/14/2016","05/23/2016 01:23:50 PM","06/14/2016 07:46:32 PM"
"350718344","","Ad Group Targeting: Whitelist and Blacklist selected subsections should not change height.","344612990","","archive:sprint 18","webui,domain-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=211&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","0","False","","64","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=211&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 211</a></p>","UAT Feedback","High","1460","322102396","322102396","06/16/2016 10:52:20 AM","06/16/2016 10:52:20 AM","06/16/2016","06/14/2016 07:29:12 PM","06/16/2016 10:52:20 AM"
"322102396","[email protected];[email protected]","Ad Group Domain Targeting: Whitelist and Blacklist selected subsections should not change height. ","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=211&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","passed by client","65","","","<p><a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=211&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Whitelist and Blacklist selected subsections should not change height.</a> Issue 211</p>","UAT Feedback","High","1110","","","06/16/2016 11:17:37 AM","06/16/2016 11:17:37 AM","06/16/2016","04/07/2016 11:58:30 AM","06/16/2016 11:17:37 AM"
"307441694","[email protected];[email protected];[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Buying Strategy - Add Auto-Optimize","344612990","","archive:sprint 18","webui,adgroup-edit","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=155&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","fixed","66","","","<p>issue 155 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=155&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Buying Strategy - Add Auto-Optimize</a></p>","UAT Feedback","Normal","859","","","06/17/2016 10:18:22 AM","06/17/2016 10:18:22 AM","06/17/2016","05/20/2016 04:25:08 PM","06/17/2016 10:18:22 AM"
"307438682","[email protected];[email protected]","Ad Group Create Wizard: Budget Step - Change field layout","344612990","","archive:sprint 18","webui,adgroup-wizard","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=122&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","fixed","67","","","<p>Issue 122 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=122&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Budget Step - Change field layout</a></p><br/><p>Change Impression Frequency and per hours fields to display like updated requirements, ""[Impression Frequency text input] per [per hours text input] hours"" with the Impression Frequency title over top labeling the impression frequency input. See attachment for desired look.</p>","UAT Feedback","Normal","829","","","06/17/2016 10:18:58 AM","06/17/2016 10:18:58 AM","06/17/2016","06/01/2016 03:30:26 PM","06/17/2016 10:18:58 AM"
"307438712","[email protected];[email protected];[email protected]","Ad Group Profile Page - Settings: Edit Buying Strategy - Change Goal Value","344612990","","archive:sprint 18","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=153&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","fixed","68","","","<p>Issue 153 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=153&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Edit Buying Strategy - Change Goal Value</a></p>","UAT Feedback","Normal","857","","","06/17/2016 10:20:35 AM","06/17/2016 10:20:35 AM","06/17/2016","05/20/2016 04:24:45 PM","06/17/2016 10:20:35 AM"
"307435247","[email protected];[email protected];[email protected]","Ad Group Create Wizard : Buying Strategy Step - Change Goal Value","344612990","","archive:sprint 18","webui,adgroup-wizard","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=126&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","fixed","69","","","<p>Issue 126 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=126&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Buying Strategy Step - Change Goal Value</a></p>","UAT Feedback","Normal","833","","","06/17/2016 10:21:02 AM","06/17/2016 10:21:02 AM","06/17/2016","05/20/2016 04:24:10 PM","06/17/2016 10:21:02 AM"
"307434191","[email protected];[email protected];[email protected]","Advertiser List View: New Advertiser button - Server Error (An Internal error occurred)","344612990","","archive:sprint 18","webui,advertisers,backend","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=97&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","Client gave the answer","70","","","<p>Issue 97 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=97&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">New Advertiser button - Server Error (An Internal error occurred)</a></p><br/><p>According to answere - leghts of account number should be 12 characters</p>","UAT Feedback","Critical","812","","","06/17/2016 10:21:55 AM","06/17/2016 10:21:55 AM","06/17/2016","06/09/2016 11:23:08 AM","06/17/2016 10:21:55 AM"
"307435251","[email protected];[email protected]","Ad Group Profile Page - Settings: Display - Frequency Display","344612990","","archive:sprint 18","webui,adgroup","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=134&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Fixed","71","","","<p>Issue 134 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=134&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Display - Frequency Display</a></p><br/><p>Instead of showing Frequency (impressions) and Per (hours) separate, show field as ""Frequency: X impressions per X hours"". Show ""Frequency: Undefined"" if blank.</p>","UAT Feedback","Normal","839","","","06/17/2016 10:22:30 AM","06/17/2016 10:22:30 AM","06/17/2016","06/01/2016 03:30:26 PM","06/17/2016 10:22:30 AM"
"307435250","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Summary Step - Frequency Display","344612990","","archive:sprint 18","webui,adgroup-wizard","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=130&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","fixed","72","","","<p>Issue 130 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=130&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Summary Step - Frequency Display</a></p><br/><p>Instead of showing Frequency (impressions) and Per (hours) separate, show field as ""Frequency: X impressions per X hours"". Show ""Frequency: Undefined"" if blank.</p>","UAT Feedback","Normal","837","","","06/17/2016 10:22:56 AM","06/17/2016 10:22:56 AM","06/17/2016","06/01/2016 03:30:26 PM","06/17/2016 10:22:56 AM"
"348985228","[email protected];[email protected];[email protected]","Advertiser Edit Popup: Account number","344612990","","archive:sprint 18","webui,backend,advertiser,account","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=285&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","2","False","","73","","","<p>Issue <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=285&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">285</a></p>","UAT Feedback","Critical","1431","","","06/17/2016 10:23:15 AM","06/17/2016 10:23:15 AM","06/17/2016","06/09/2016 11:56:01 AM","06/17/2016 10:23:15 AM"
"331372321","[email protected];[email protected]","Settings Subpage - Budget : Frequency displayed as days instead of hours","344612990","","archive:sprint 18","webui,adgroup","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=222&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","1","False","","74","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=222&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 222</a></p>","UAT Feedback","High","1234","","","06/17/2016 10:24:49 AM","06/17/2016 10:24:49 AM","06/17/2016","05/19/2016 05:08:36 PM","06/17/2016 10:24:49 AM"
"349012956","[email protected]","Backend: Device type bid adjustment.","352404639","","archive:sprint 19","backend","","","","2","False","","0","","","","Task","Normal","1436","","","06/20/2016 09:30:55 AM","06/20/2016 09:30:55 AM","06/20/2016","06/09/2016 01:40:21 PM","06/20/2016 09:30:55 AM"
"349015657","[email protected]","Backend: Ad Group. Recency.","352404639","","archive:sprint 19","backend","","","","3","False","","1","","","","Feature","Normal","1434","","","06/20/2016 09:31:45 AM","06/20/2016 09:31:45 AM","06/20/2016","06/09/2016 01:39:15 PM","06/20/2016 09:31:45 AM"
"349012953","[email protected]","Backend: Ad Group. Trade Desk quick search.","352404639","","archive:sprint 19","backend","","","","2","False","","2","","","","Task","Normal","1435","","","06/20/2016 09:32:24 AM","06/20/2016 09:32:24 AM","06/20/2016","06/09/2016 01:39:50 PM","06/20/2016 09:32:09 AM"
"347554353","[email protected]","Backend: creation of creative with dimensions that are absent in simpi.fi fails with inappropriate exception. Should look like validation one.","352404639","","archive:sprint 19","backend","","","","2","False","","3","","","","Defect","Normal","1399","","","06/20/2016 09:32:52 AM","06/20/2016 09:32:52 AM","06/20/2016","06/06/2016 09:55:30 PM","06/20/2016 09:32:52 AM"
"348985252","[email protected]","Backend: Postal Code validation.","352404639","","archive:sprint 19","backend","","","","1","False","","4","","","","Task","Normal","1432","","","06/20/2016 09:33:18 AM","06/20/2016 09:33:18 AM","06/20/2016","06/09/2016 11:09:02 AM","06/20/2016 09:33:18 AM"
"349663460","[email protected]","Backend: GoalType Simpli.Fi synchronization not working","352404639","","archive:sprint 19","backend","","","","1","False","","5","","","","Defect","Normal","1443","","","06/20/2016 09:34:07 AM","06/20/2016 09:34:07 AM","06/20/2016","06/10/2016 06:44:10 PM","06/20/2016 09:34:07 AM"
"332590708","[email protected];[email protected];[email protected]","Ad Group Targeting: Ad Group Targeting: Location Targeting - Search DMA - Region","352404639","","archive:sprint 19","webui,location-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=238&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","ready to test","6","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/start.aspx#/Lists/Actions%20%20Issues/Grouped%20by%20Category.aspx#InplviewHash00bc075e-9444-4f3e-9efd-d07a4fcc0bcb=WebPartID%3D%7B00BC075E--9444--4F3E--9EFD--D07A4FCC0BCB%7D-FilterField1%3DAssigned%255Fx0020%255FTo0-FilterValue1%3DAnastasiya%2520Lutonina-FilterFields2%3DIssue%255Fx0020%255FStatus-FilterValues2%3DActive%253B%2523Test%2520Failed"" target=""_blank"">I</a>ssue 238 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=238&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Ad Group Targeting: Location Targeting - Search DMA - Region</a></p>","UAT Feedback","Normal","1250","","","06/20/2016 09:49:30 PM","06/20/2016 09:49:30 PM","06/20/2016","05/30/2016 04:34:02 PM","06/20/2016 09:49:30 PM"
"352943336","[email protected];[email protected];[email protected]","Checkboxes in DMA location targeting don't change state at click them","352404639","","archive:sprint 19","location-targeting,webui","","","","0","False","","7","","","<p>To reproduce:</p><br/><ol><br/><li>got to Location targeting popup</li><br/><li>go to DMA tab</li><br/><li>click any checkbox</li><br/></ol><br/><p><strong>Actual result:</strong> location was changed but checbox is still disply as '+' (as unchecked)</p><br/><p><strong>Expected result:</strong> heckbox state displays as checked</p>","Defect","Critical","1525","","","06/21/2016 02:22:47 PM","06/21/2016 02:22:47 PM","06/21/2016","06/20/2016 11:14:28 AM","06/21/2016 02:22:47 PM"
"347839687","[email protected];[email protected];[email protected]","Creative fixes","352404639","","archive:sprint 19","webui,creative-edit,creative-wizard","","","","3","False","","8","","","","Defect","High","1404","","","06/21/2016 02:31:47 PM","06/21/2016 02:31:47 PM","06/21/2016","06/08/2016 03:01:01 PM","06/21/2016 02:31:47 PM"
"340230736","[email protected];[email protected]","Site: Issues","352404639","","archive:sprint 19","webui,site,site-popup,sites","","","","5","False","test passed","9","","","","Defect","Critical","1312","","","06/21/2016 04:01:51 PM","06/21/2016 04:01:51 PM","06/21/2016","05/20/2016 10:39:02 AM","06/21/2016 04:01:51 PM"
"324711477","[email protected];[email protected];[email protected]","Optimize long loading DMA searching","352404639","","archive:sprint 19","webui,contextual-tergeting","","","","3","False","","10","","","","Improvement","Normal","1165","","","06/21/2016 05:12:05 PM","06/21/2016 05:12:05 PM","06/21/2016","06/09/2016 02:36:00 PM","06/21/2016 05:12:05 PM"
"347912711","[email protected];[email protected]","TD Campaign","352404639","","archive:sprint 19","webui,TD-campaign","","","","0","False","","11","","","","Defect","Normal","1417","","","06/21/2016 05:15:07 PM","06/21/2016 05:15:07 PM","06/21/2016","06/14/2016 10:49:01 AM","06/21/2016 05:15:07 PM"
"351312543","[email protected];[email protected];[email protected]","TD Campaign","352404639","","archive:sprint 19","webui,TD-campaign","","","","0","False","","12","","","","Defect","Normal","1485","","","06/21/2016 05:23:22 PM","06/21/2016 05:23:22 PM","06/21/2016","06/15/2016 06:36:56 PM","06/21/2016 05:23:22 PM"
"350715587","[email protected];[email protected]","TD Campaing","352404639","","archive:sprint 19","backend,campaign-popup","","","","0","False","","13","","","","Defect","Normal","1458","","","06/21/2016 05:52:01 PM","06/21/2016 05:52:01 PM","06/21/2016","06/14/2016 11:39:05 PM","06/21/2016 05:52:01 PM"
"315758210","[email protected]","WebUI: Actions/Conversions - Create Tracker","352404639","","archive:sprint 19","webui","","","","5","False","Requirements have been finalized","14","","06/20/2016","<p>https://docs.google.com/document/d/1OsQdeUR5ERe6YrVGq-oqSPFtdH5060s0zDV64fVbXxc/edit</p>","Feature","Normal","1013","315682462","315682462","06/21/2016 06:07:42 PM","06/21/2016 06:07:42 PM","06/21/2016","05/30/2016 05:35:41 PM","06/21/2016 06:07:42 PM"
"315758211","[email protected]","WebUI: Actions/Conversions - Edit Tracker","352404639","","archive:sprint 19","webui","","","","5","False","Requirements have been finalized","15","","06/20/2016","<p>https://docs.google.com/document/d/1OsQdeUR5ERe6YrVGq-oqSPFtdH5060s0zDV64fVbXxc/edit</p>","Feature","Normal","1014","315682462","315682462","06/21/2016 06:07:58 PM","06/21/2016 06:07:58 PM","06/21/2016","05/30/2016 05:35:42 PM","06/21/2016 06:07:58 PM"
"315760600","[email protected]","WebUI: Actions/Conversions - List View","352404639","","archive:sprint 19","webui","","","","2","False","Requirements have been finalized","16","","06/20/2016","<p>https://docs.google.com/document/d/1OsQdeUR5ERe6YrVGq-oqSPFtdH5060s0zDV64fVbXxc/edit</p>","Feature","Normal","1015","315682462","315682462","06/21/2016 06:08:16 PM","06/21/2016 06:08:16 PM","06/21/2016","05/30/2016 05:35:43 PM","06/21/2016 06:08:16 PM"
"346040649","[email protected];[email protected]","WebUI: Actions/Conversions - Campaign assignment","352404639","","archive:sprint 19","webui","","","","3","False","","17","","06/20/2016","<p>https://docs.google.com/document/d/1OsQdeUR5ERe6YrVGq-oqSPFtdH5060s0zDV64fVbXxc/edit</p>","Feature","Normal","1381","315682462","315682462","06/21/2016 06:08:30 PM","06/21/2016 06:08:30 PM","06/21/2016","06/02/2016 02:17:17 PM","06/21/2016 06:08:30 PM"
"324122271","[email protected];[email protected];[email protected]","An internal error occurred when user clicks cancel during uploading file with ip ranges","352404639","","archive:sprint 19","webui,ip-targeting","","","","2","False","","18","","","<p>To reproduce:</p><br/><ol><br/><li>go to ad group page</li><br/><li>click targeting</li><br/><li>click edit ip tarheting</li><br/><li>click uplad tab</li><br/><li>click browse and choose a file with valid data</li><br/><li>click upload</li><br/><li>click cancel when file is uploading</li><br/></ol><br/><p><strong>Actual result: </strong>popup with text ""An internal error occurred""</p><br/><p><strong>Expected result:</strong> file uploading is canceled</p>","Defect","Normal","1150","","","06/21/2016 06:15:37 PM","06/21/2016 06:15:37 PM","06/21/2016","06/09/2016 02:14:02 PM","06/21/2016 06:15:37 PM"
"334433354","[email protected];[email protected];[email protected]","Change formula for counting item amount Fix proggramatic revenue value","352404639","","archive:sprint 19","invoices,webui","","","","1","False","","19","","","<p>Here is the formula we use to calculate the item net amount taking into account the header discount:</p><br/><p>CAST(CASE WHEN oh.Total - oh.Tax + oh.Discount = 0 THEN 0 ELSE (oli.SubTotal) - (((oli.SubTotal)</p><br/><p> / (oh.Total - oh.Tax + oh.Discount)) * oh.Discount) END AS Decimal(18, 2)) AS Item_Net_Amount_Post_Discount</p><br/><p>The confusing part is that you have to add back in the discount to the order total when calculating what percent the line amount is of the total invoice amount</p>","Defect","High","1258","","","06/21/2016 06:18:17 PM","06/21/2016 06:18:17 PM","06/21/2016","06/16/2016 09:03:03 AM","06/21/2016 06:18:17 PM"
"353558344","[email protected];[email protected];[email protected]","Locations aren't displayed on action edit popup on UAT enviroment","352404639","","archive:sprint 19","","","","","0","False","","20","","","","Defect","Normal","1549","","","06/21/2016 08:45:42 PM","06/21/2016 08:45:42 PM","06/21/2016","06/21/2016 03:12:14 AM","06/21/2016 08:45:42 PM"
"335049118","[email protected];[email protected];[email protected]","Ad Group - Simpli.fi: Run of Network Ad Groups","352404639","","archive:sprint 19","webui","","","","2","False","Was tested on UAT after deploy of correction of API","21","","06/27/2016","","Feature","Normal","1279","335043828","335043828","06/22/2016 10:22:52 AM","06/22/2016 10:22:52 AM","06/22/2016","05/30/2016 05:26:59 PM","06/22/2016 10:22:52 AM"
"345440624","[email protected];[email protected]","Backend: Actions/Conversions","352404639","","archive:sprint 19","backend","","","","5","False","","22","","","<p>https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/7.%20(Needs%20Review)%20Actions/MALT%20US%20Actions%20v1.0.pdf</p>","Feature","Normal","1374","315682462","315682462","06/22/2016 12:26:30 PM","06/22/2016 12:26:30 PM","06/22/2016","06/01/2016 01:51:58 PM","06/22/2016 12:26:30 PM"
"350845637","[email protected];[email protected]","Check and verify TradeDesk Synchronization Testing Instructions on UAT","352404639","","archive:sprint 19","backend","","","","2","False","","23","","","","Task","High","1476","","","06/23/2016 01:01:21 PM","06/23/2016 01:01:21 PM","06/23/2016","06/14/2016 05:39:33 PM","06/23/2016 01:01:21 PM"
"349974891","[email protected];[email protected]","Budget - Impression Cap Error","352404639","","archive:sprint 19","adgroup-wizard,adgroup-edit,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=302&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","1","False","Fixed","24","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=302&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 302</a></p>","UAT Feedback","High","1446","","","06/24/2016 10:00:51 AM","06/24/2016 10:00:51 AM","06/24/2016","06/13/2016 12:53:38 PM","06/24/2016 10:00:51 AM"
"354160843","[email protected];[email protected]","Remove auto-optimize field for Ad Group Simpli.fi","352404639","","archive:sprint 19","webui,adgroup,adgroup-wizard,adgroup-edit","","","","1","False","","25","","","<p>According to Matt email we should remove this field from UI, but not foget to get it as ""Off"" to Simpli.Fi</p><br/><ul><br/><li>remove from create wizard</li><br/><li>remove from edit Buying Strategy popup</li><br/><li>remove from settings page of ad group</li><br/></ul>","Improvement","Critical","1593","","","06/24/2016 11:24:22 AM","06/24/2016 11:24:22 AM","06/24/2016","06/22/2016 04:46:52 PM","06/24/2016 11:24:22 AM"
"351327894","[email protected];[email protected];[email protected]","There is loading indicator when user checks some domain in targeting popup","352404639","","archive:sprint 19","webui,domain-targeting","","","","2","False","","26","","","<p>See more: <a href=""http://screencast.com/t/rbMZMVUAB7q"">http://screencast.com/t/rbMZMVUAB7q</a> </p>","Defect","Normal","1488","","","06/24/2016 11:24:33 AM","06/24/2016 11:24:33 AM","06/24/2016","06/20/2016 07:38:18 PM","06/24/2016 11:24:33 AM"
"355666772","[email protected]","Backend: TD Ad Group fixes","352404639","","archive:sprint 19","backend,phase-2","","","","1","False","","27","","","<p>- BidAdjusted -> BidAdjustment</p><br/><p>- Fix bug with recency validation</p>","Defect","Normal","1612","","","06/27/2016 10:40:05 AM","06/27/2016 10:40:05 AM","06/27/2016","06/27/2016 09:31:12 AM","06/27/2016 10:40:05 AM"
"347089513","[email protected];[email protected];[email protected]","List Column missing URL","352404639","","archive:sprint 19","sites,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=274&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","","","3","False","Additionally fixed #1554","28","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=274&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 274</a></p>","UAT Feedback","Critical","1395","","","06/27/2016 11:41:40 AM","06/27/2016 11:41:40 AM","06/27/2016","06/06/2016 04:10:20 PM","06/27/2016 11:41:40 AM"
"345990740","[email protected];[email protected];[email protected]"," Ad Group Keywords: No max bid on keywords","352404639","","archive:sprint 19","webui,keywords-targeting","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=247&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","1","False","","29","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=247&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 247</a><span><br /></span></p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td class=""ms-formlabel"" valign=""top"" nowrap=""nowrap"" width=""113px""><span class=""ms-h3 ms-standardheader"">Description</span></td><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClass31C335842BA04286B1A767B7A5D74710""><br/><p>Should be a cap or a warning that will not allow you to bid above <span style=""text-decoration: line-through;"">$35</span> $49.99 on a keyword. <span style=""text-decoration: line-through;"">I was able to enter $270.00</span> Presently the message limit incorrectly displays $999.99 should be $49.99 as the limit.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","High","1377","","","06/27/2016 11:42:20 AM","06/27/2016 11:42:20 AM","06/27/2016","06/17/2016 05:45:19 PM","06/27/2016 11:42:20 AM"
"349966603","[email protected];[email protected]","Budget Step - Lifetime Budget field required field for Simpli.fi Ad Groups","352404639","","archive:sprint 19","adgroup-wizard,adgroup-edit,webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=296&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Completed","30","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=296&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 296</a></p>","UAT Feedback","Critical","1450","","","06/27/2016 11:43:32 AM","06/27/2016 11:43:32 AM","06/27/2016","06/13/2016 12:56:40 PM","06/27/2016 11:43:32 AM"
"355112837","[email protected];[email protected]","Fixes for 1251 card","352404639","","archive:sprint 19","webui","","","","0","False","","31","","","","Defect","Normal","1603","332585845","332585845","06/27/2016 05:45:42 PM","06/27/2016 05:45:42 PM","06/27/2016","06/24/2016 07:58:14 AM","06/27/2016 05:45:42 PM"
"345396676","[email protected];[email protected];[email protected]","Backend: Simpli.Fi - AdGroup - AutoOptimize","352404639","","archive:sprint 19","backend","","","","0","False","","32","","","<p>Set AutoOptimize field in Simpli.Fi AdGroup on create/update when Simpli.Fi add support of the field to API.</p>","Improvement","Normal","1373","","","06/27/2016 08:39:19 PM","06/27/2016 08:39:19 PM","06/27/2016","06/01/2016 09:40:28 AM","06/27/2016 08:39:19 PM"
"354148403","[email protected];[email protected];[email protected]","Backend: Simpli.Fi - AdGroup - Remove AutoOptimize field","352404639","","archive:sprint 19","backend","","","","2","False","","33","","06/24/2016","<p>Set to False when send to Simpli.Fi</p>","Improvement","Normal","1592","","","06/27/2016 08:39:26 PM","06/27/2016 08:39:26 PM","06/27/2016","06/22/2016 04:41:56 PM","06/27/2016 08:39:26 PM"
"348412641","[email protected];[email protected]","Backend: Cascade deactivation should not change status of draft ad groups.","352404639","","archive:sprint 19","backend","","","","1","False","","34","","","<p>MALT API error. URL: http://multiview-dmp-2-dev.thumbtack.lo:8080/malt/v1/advertisers/15394/deactivate; Request: ; Response: {""status"":500,""errorAttributes"":{""timestamp"":""2016-06-08T05:06:13.243+0000"",""status"":500,""error"":""Internal Server Error"",""exception"":""com.multiview.campaign.management.api.vendors.simpli.fi.exceptions.VendorException"",""message"":""{\""errors\"":[\""Could not pause the Campaign\""]}"",""path"":""/malt/v1/advertisers/15394/deactivate"",""errors"":{""simpliFi"":[""Could not pause the Campaign""]}},""meta"":{}};</p>","Defect","Normal","1424","","","06/27/2016 08:41:01 PM","06/27/2016 08:41:01 PM","06/27/2016","06/08/2016 10:47:11 AM","06/27/2016 08:41:01 PM"
"353631546","[email protected];[email protected]","Cannot set End date as Undefined for Td Campaign","352404639","","archive:sprint 19","backend,TD-campaign","","","","0","False","","35","","","<p>MALT API error. URL: http://multiview-dmp-2-dev.thumbtack.lo:8080/malt/v1/campaigns/10636; Request: {""endDate"":"""",""lifetimeBudget"":234,""isSpendPrioritizationEnables"":false,""actionIds"":[]}; Response: {""status"":500,""errorAttributes"":{""timestamp"":""2016-06-21T11:43:23.797+0000"",""status"":500,""error"":""Internal Server Error"",""exception"":""java.lang.NullPointerException"",""message"":null,""path"":""/malt/v1/campaigns/10636""},""meta"":{}};</p>","Defect","High","1556","","","06/27/2016 08:41:34 PM","06/27/2016 08:41:34 PM","06/27/2016","06/21/2016 05:53:07 PM","06/27/2016 08:41:34 PM"
"347802765","[email protected];[email protected];[email protected]","Advertiser Profile: Use text field for 'Domain Address' in additional fields","352404639","","archive:sprint 19","webui","","","","1","False","changes were made","36","","","","Improvement","Normal","1402","","","06/27/2016 08:41:36 PM","06/27/2016 08:41:36 PM","06/27/2016","06/07/2016 09:57:58 AM","06/27/2016 08:41:36 PM"
"349310247","[email protected];[email protected];[email protected];[email protected]","Get rid of Owner and Service Tier properties of Advertiser entity","352404639","","archive:sprint 19","webui,backend","","","","3","False","Crad was tested one more time","37","","","<div>The request and some background are as follows:</div><br/><ul><br/><li>The initial purpose of MALT was to replace ANQ.</li><br/><li>ANQ has 3 elements:<ol><br/><li>Customer Management</li><br/><li>Invoice Management</li><br/><li>Campaign Configuration</li><br/></ol></li><br/><li>Since the beginning of the project when the initial entities (like ""Advertisers"") were defined, the purpose (short term and long term) of MALT was scaled back to only include the 3rd element, ""Campaign Configuration""</li><br/><li>What this means is that we have had to find other solutions to the first two elements, ""Customer Management"" and ""Invoice Management"".</li><br/><li><strong><span>Problem:</span></strong> We initially included a few attributes of the ""Customer Management"" element into the Advertiser entity requirements. These include Ownership (Owner type, team, account manager, data manager, creative manager) and Service Level fields.</li><br/><li><strong><span>Solution</span>:</strong> I would like to have those fields removed from MALT.</li><br/><li><strong><span>Expected Impact:</span></strong> Very Small; very little regression necessary</li><br/><li><strong><span>Known </span><span>Impacted Components:</span></strong><ol><br/><li>The owner and service level columns on the advertiser list view page</li><br/><li>The ownership section and service level field on the advertiser create popup</li><br/><li>The ownership section and service level field on the advertiser edit popup</li><br/><li>The ownership and service level details on the advertiser profile page quick view</li><br/></ol></li><br/></ul><br/><p> </p><br/><p> </p><br/><p> </p><br/><div><br/><div><br/><div><br/><p><span style=""font-family: Calibri, sans-serif; font-size: medium;""><span><span style=""color: black; font-family: 'Times New Roman', serif; font-size: small;""><span>Thanks,</span></span></span></span></p><br/><div><span style=""font-family: Calibri, sans-serif; font-size: medium;""><span><span style=""color: black; font-family: 'Times New Roman', serif; font-size: small;""><span> </span></span></span></span></div><br/><div><span style=""font-family: Calibri, sans-serif; font-size: medium;""><span><span style=""color: black; font-family: 'Times New Roman', serif; font-size: small;""><span><strong>Matt Hunter</strong></span></span></span></span></div><br/></div><br/></div><br/></div>","Task","Normal","1437","","","06/27/2016 08:47:08 PM","06/27/2016 08:47:08 PM","06/27/2016","06/10/2016 05:26:39 PM","06/27/2016 08:47:08 PM"
"337289786","[email protected];[email protected];[email protected];[email protected]","Create performance script","352404639","","archive:sprint 19","webui","","","","0","False","","38","","","","Task","Normal","1294","","","06/27/2016 10:38:25 PM","06/27/2016 10:38:25 PM","06/27/2016","05/12/2016 11:07:06 AM","06/27/2016 10:38:25 PM"
"351827179","[email protected];[email protected];[email protected]","Ad Group Keywords - Keyword Bid","352404639","","archive:sprint 19","webui,keywords","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=321&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","3","False","","39","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=321&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 321</a></p><br/><table class=""ms-formtable"" width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0""><br/><tbody><br/><tr><br/><td class=""ms-formlabel"" valign=""top"" nowrap=""nowrap"" width=""113px""><span class=""ms-h3 ms-standardheader"">Description</span></td><br/><td id=""SPFieldNote"" class=""ms-formbody"" valign=""top"" width=""350px""><br/><div class=""ms-rtestate-field""><br/><div dir=""""><br/><div class=""ExternalClassB5FCAB6C7CB4496AB455149EBCA8EA07""><br/><p>You should not have to have a bid for each keyword when uploading the keywords through the paste option or the upload option. This is an unneccesary step and should be through at default. See attached screenshot. We should be able to upload with or without the keyword bid.</p><br/></div><br/></div><br/></div><br/></td><br/></tr><br/></tbody><br/></table>","UAT Feedback","Critical","1504","","","06/28/2016 10:48:46 AM","06/28/2016 10:48:46 AM","06/28/2016","06/17/2016 02:25:54 PM","06/28/2016 10:48:46 AM"
"349976347","[email protected];[email protected];[email protected];[email protected]"," Buying Strategy - Field Addition - Ad Group Pacing","352404639","","archive:sprint 19","adgroup,webui,backend","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=301&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","2","False","Tested","40","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=301&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 301</a></p>","UAT Feedback","Critical","1447","","","06/28/2016 11:32:34 AM","06/28/2016 11:32:34 AM","06/28/2016","06/13/2016 12:54:59 PM","06/28/2016 11:32:34 AM"
"319148132","[email protected];[email protected]","Advertiser Profile Page: Invoice Page Reformatted","352404639","","archive:sprint 19","webui","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=176&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","5","False","","41","","","<p>Issue 176 <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=176&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"">Invoice Page Reformatted</a></p>","UAT Feedback","High","1081","","","06/28/2016 11:33:20 AM","06/28/2016 11:33:20 AM","06/28/2016","04/04/2016 02:56:29 PM","06/28/2016 11:33:20 AM"
"307437846","[email protected];[email protected];[email protected]","General: Include commas in all numbers over 999 - Display","352404639","","archive:sprint 19","webui,general","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=85&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Unclear requirements","","2","False","fixed","42","","","<p>Issue 85 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=85&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Include commas in all numbers over 999 - Display</a></p>","UAT Feedback","Normal","808","","","06/28/2016 11:37:50 AM","06/28/2016 11:37:50 AM","06/28/2016","06/09/2016 10:33:45 PM","06/28/2016 11:37:50 AM"
"307438692","[email protected];[email protected];[email protected]","Ad Group Create Wizard: Summary Step - Undefined End Dates","352404639","","archive:sprint 19","webui,adgroup-wizard","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=128&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","","43","","","<p>Issue 128 <a class=""ms-listlink"" href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/listform.aspx?PageType=4&ListId=%7BD1D8DFCB%2DACC9%2D4B2B%2DBEBF%2D829FCB15C7C4%7D&ID=128&ContentTypeID=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_self"">Summary Step - Undefined End Dates</a></p>","UAT Feedback","Normal","835","","","06/28/2016 11:38:57 AM","06/28/2016 11:38:57 AM","06/28/2016","06/09/2016 10:34:09 PM","06/28/2016 11:38:57 AM"
"335046715","[email protected];[email protected];[email protected]","Ad Group - Simpli.fi: Targeting: Radius Targeting","352404639","","archive:sprint 19","webui","","","","8","False","integrations","44","","06/27/2016","<pre><a href=""http://feature1287searchlike.tt.dev.multiview.com/"">http://feature1287searchlike.tt.dev.multiview.com</a></pre>","Feature","Normal","1280","335043828","335043828","06/28/2016 12:48:58 PM","06/28/2016 12:48:58 PM","06/28/2016","05/30/2016 05:27:00 PM","06/28/2016 12:48:58 PM"
"349981272","","Ad Group Settings - Scheduling not Showing","352404639","","archive:sprint 19","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=294&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Defect","","0","False","","45","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=294&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 294</a></p>","UAT Feedback","Critical","1452","","","06/28/2016 02:02:11 PM","06/28/2016 02:02:11 PM","06/28/2016","06/11/2016 01:49:45 PM","06/28/2016 02:02:11 PM"
"353600279","[email protected]","Backend: Cannot create Simpli.fi Ad Group","352404639","","archive:sprint 19","backend","","","","1","False","","46","","","","Defect","Normal","1551","","","06/28/2016 02:57:40 PM","06/28/2016 02:57:40 PM","06/28/2016","06/21/2016 04:21:37 PM","06/28/2016 02:57:40 PM"
"353467386","[email protected]","Cannot create simplifi campaign on UAT","352404639","","archive:sprint 19","","","","","0","False","","47","","","","Defect","Critical","1534","","","06/29/2016 09:07:50 AM","06/29/2016 09:07:50 AM","06/29/2016","06/21/2016 04:15:35 AM","06/29/2016 09:07:50 AM"
"332585845","[email protected];[email protected];[email protected]","Ad Group Targeting: Ad Group Location Targeting - Add Unselect All Button for Locations","352404639","","archive:sprint 19","webui,geo-targeting","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=239&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Child card was tested","48","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=239&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 239</a></p>","UAT Feedback","Normal","1251","","","06/29/2016 01:44:05 PM","06/29/2016 01:44:05 PM","06/29/2016","06/09/2016 10:44:16 PM","06/29/2016 01:44:05 PM"
"332570598","[email protected];[email protected];[email protected]","Campaign Create Form / Campaign Edit Form / Ad Group Create Wizard / Campaign Edit Form: One Day Run Necessary","352404639","","archive:sprint 19","webui","https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=230&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE","Change request","","1","False","Backend made changes","49","","","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Lists/Actions%20%20Issues/DispForm.aspx?ID=230&ContentTypeId=0x010018BB564B2A7A014E8AEEF9B49AE8A4BE"" target=""_blank"">Issue 230</a></p>","UAT Feedback","High","1246","","","06/30/2016 10:20:12 AM","06/30/2016 10:20:12 AM","06/30/2016","05/18/2016 05:11:54 PM","06/30/2016 10:20:12 AM"
"356912403","[email protected]","Create migration script to update association table ","352404639","","archive:sprint 19","","","","","1","False","","50","","","<p>We need to add following columns in pA_Association table:</p><br/><ul><br/><li>Duraion (integer)</li><br/><li>Impessions (integer)</li><br/><li>Cost (currency)</li><br/></ul>","Task","Normal","1672","","","07/01/2016 11:51:10 AM","07/01/2016 11:51:10 AM","07/01/2016","06/29/2016 06:07:56 PM","07/01/2016 11:51:10 AM"
"355553014","[email protected];[email protected]","Backend: Set Username from FE to AuditLog","352404639","","archive:sprint 19","backend","","","","3","False","","51","","","<p>Now System is hardcoded.</p>","Improvement","Normal","1610","","","07/01/2016 11:51:28 AM","07/01/2016 11:51:28 AM","07/01/2016","06/25/2016 08:38:38 PM","07/01/2016 11:51:28 AM"
"351363828","[email protected]","Give SSH access to UAT to Pavel Prokhorov","352404639","","archive:sprint 19","","","","","0","False","","52","","","","Task","Normal","1489","","","07/01/2016 11:51:59 AM","07/01/2016 11:51:59 AM","07/01/2016","06/15/2016 04:43:57 PM","07/01/2016 11:51:59 AM"
"342803954","[email protected]","Grant access to UAT","352404639","","archive:sprint 19","","","","","0","False","","53","","","<p>Pavel Prokhorov needs access to UAT.</p>","Task","Normal","1366","","","07/01/2016 11:52:13 AM","07/01/2016 11:52:13 AM","07/01/2016","05/25/2016 04:44:08 PM","07/01/2016 11:52:13 AM"
"344786741","[email protected];[email protected]","Backend: Simpli.Fi Video Creatives","352404639","","archive:sprint 19","backend,creatives","","","","0","False","","54","","","<p>https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/2.%20Creatives/Create%20Form/Simpli.fi/Simpli.fi/Create%20View/MALT%20US%20Simpli.fi%20Video%20Creative%20Create%20and%20Edit%20v1.0.pdf</p>","Feature","Normal","1372","274526798","274526798","07/08/2016 10:51:24 AM","07/08/2016 10:51:24 AM","07/08/2016","05/31/2016 08:08:22 AM","07/08/2016 10:51:24 AM"
"356273573","[email protected];[email protected]","Cannot activate Search Ad Group Simpli.Fi","357851670","","archive:sprint 20","backend,adgroup","","","","0","False","","0","","","<p>http://malt-qa.uat.multiview.com/adgroup/10317/settings</p>","Defect","High","1627","357322763","357322763","07/01/2016 01:40:51 PM","07/01/2016 01:40:51 PM","07/01/2016","06/28/2016 12:47:05 PM","07/01/2016 01:40:51 PM"
"354666398","[email protected];[email protected]","Backend: Radius targeting coordinates determining issue","357851670","","archive:sprint 20","radius-targeting,backend","","","","0","False","","1","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Enter ""Allentown"" to search field</li><br/><li>Choose the one from Pennsylvania</li><br/><li>Leave radius with default value</li><br/><li>Click search</li><br/></ol><br/><p><strong>Expected result:</strong> <strong id=""docs-internal-guid-c8e99efc-7caf-370d-5d42-dafb98851db1"" style=""font-weight: normal;""><span style=""font-size: 14.666666666666666px; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"">Simplifi’s output for this query http://prntscr.com/bjx0iw </span></strong></p><br/><p><strong>Actual Result:</strong> <strong id=""docs-internal-guid-c8e99efc-7caf-370d-5d42-dafb98851db1"" style=""font-weight: normal;""><span style=""font-size: 14.666666666666666px; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"">List of allentown cities appears (</span><a style=""text-decoration: none;"" href=""http://prntscr.com/bjx07k""><span style=""font-size: 14.666666666666666px; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"">http://prntscr.com/bjx07k</span></a><span style=""font-size: 14.666666666666666px; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"">)</span></strong></p>","Defect","High","1598","","","07/01/2016 01:40:57 PM","07/01/2016 01:40:57 PM","07/01/2016","06/23/2016 03:57:21 PM","07/01/2016 01:40:57 PM"
"356802638","[email protected];[email protected];[email protected];[email protected];[email protected]","Targeting fixes","357851670","","archive:sprint 20","webui","","","","0","False","","2","","","<p><a href=""https://docs.google.com/document/d/1_YebGK17ov7DBtO4ZRdU8VEuRCLhVykudG6ZZ8cDdpc/edit"">https://docs.google.com/document/d/1_YebGK17ov7DBtO4ZRdU8VEuRCLhVykudG6ZZ8cDdpc/edit</a></p><br/><p>Branch should be based on 1007</p>","Feature","Normal","1650","","","07/01/2016 01:40:45 PM","07/08/2016 11:05:12 AM","07/01/2016","06/29/2016 11:41:55 AM","07/01/2016 01:40:45 PM"
"315753249","[email protected];[email protected]","WebUI: AdGroup - TradeDesk - Settings Page","357851670","","archive:sprint 20","webui","","","","5","False","","3","","06/30/2016","<p>Document with defects <a href=""https://docs.google.com/document/d/1vBRod-pXgPgm7Ypmr9F1IGme2vTMlnRQp_kGryK3X-4/edit"">https://docs.google.com/document/d/1vBRod-pXgPgm7Ypmr9F1IGme2vTMlnRQp_kGryK3X-4/edit</a> </p>","Feature","Normal","1006","","","07/01/2016 01:41:04 PM","07/01/2016 01:41:04 PM","07/01/2016","05/30/2016 05:42:27 PM","07/01/2016 01:41:04 PM"
"315758649","[email protected];[email protected];[email protected];[email protected];[email protected]","WebUI: AdGroup - TradeDesk - Targeting","357851670","","archive:sprint 20","webui","","","","8","False","","4","","06/30/2016","<p><a href=""https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/6.%20%20Ad%20Group/Trade%20Desk/Additional%20changes%20to%20adjust%20Ad%20Group%20for%20Trade%20Desk%20v1.0.pdf"">https://multiview.sharepoint.com/PrdDev/dmp/Shared%20Documents/MALT/MALT%20User%20Stories%20-%20Phase%202/6.%20%20Ad%20Group/Trade%20Desk/Additional%20changes%20to%20adjust%20Ad%20Group%20for%20Trade%20Desk%20v1.0.pdf</a></p><br/><p><a href=""https://docs.google.com/document/d/1_YebGK17ov7DBtO4ZRdU8VEuRCLhVykudG6ZZ8cDdpc/edit"">https://docs.google.com/document/d/1_YebGK17ov7DBtO4ZRdU8VEuRCLhVykudG6ZZ8cDdpc/edit</a> - Doc with bugs</p>","Feature","Normal","1007","315687609","315687609","07/01/2016 01:41:11 PM","07/01/2016 01:41:11 PM","07/01/2016","05/30/2016 05:42:30 PM","07/01/2016 01:41:11 PM"
"315758647","[email protected];[email protected]","WebUI: AdGroup - TradeDesk - Create Form","357851670","","archive:sprint 20","webui","","","","5","False","","5","","06/30/2016","<p>DOD <a href=""https://docs.google.com/document/d/1fr5Fn4Fom9CBo-0k1f5wwxB18GJdwlqUDQ865dEMbkI/edit"">https://docs.google.com/document/d/1fr5Fn4Fom9CBo-0k1f5wwxB18GJdwlqUDQ865dEMbkI/edit#</a> </p><br/><p>Document with defects <a href=""https://docs.google.com/document/d/1vBRod-pXgPgm7Ypmr9F1IGme2vTMlnRQp_kGryK3X-4/edit"">https://docs.google.com/document/d/1vBRod-pXgPgm7Ypmr9F1IGme2vTMlnRQp_kGryK3X-4/edit</a> </p>","Feature","Normal","1004","315687609","315687609","07/01/2016 01:41:19 PM","07/01/2016 01:41:19 PM","07/01/2016","05/30/2016 05:41:38 PM","07/01/2016 01:41:19 PM"
"295795102","[email protected];[email protected]","WebUI: Calculate Impression Cap and Budget for Advertiser and Campaign list view","357851670","","archive:sprint 20","webui,advertiser,quick-view,advertisers,list-view","https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B69F72EFC-D564-4B8B-839F-D092D2E8E751%7D&file=Advertiser%20Profile%20Page.docx&action=default","","","2","False","","6","","","<p> <a href=""http://malt-web.dev.multiview.com/advertiser/list"">http://malt-web.dev.multiview.com/advertiser/list</a></p><br/><p>See <a href=""https://multiview.sharepoint.com/PrdDev/dmp/_layouts/15/WopiFrame.aspx?sourcedoc=%7B69F72EFC-D564-4B8B-839F-D092D2E8E751%7D&file=Advertiser%20Profile%20Page.docx&action=default"" target=""_blank"">US </a> Advertiser all information is in it</p><br/><p>This task came from feedback №504. <br />We need additional information about how calculate when some campaign's ImpressionTotal is null.<br />The first option is calculate sum of it's ad group's lifetime impresssions.<br />The second - calculate ad group's lifetime impressions for all campaigns.</p><br/><p><strong>From <a href=""https://mail.google.com/mail/u/0/#inbox/15577453d7e4a4b5"" target=""_blank"">email </a>of Matt </strong></p><br/><ul><br/><li>When an advertiser doesn't have any campaigns, Impression Cap and Budget should read as ""N/A"".</li><br/><li>When an advertiser does have campaigns, the Impression Cap and Budget should show the adjusted values of each.</li><br/></ul><br/><p>Also make Programmetic Revenue to be shown in list page when it is exists <a href=""http://develop.tt.dev.multiview.com/advertiser/1/overview"">http://develop.tt.dev.multiview.com/advertiser/1/overview</a> (for more information Asked Dmitriy Zaporozhets)</p>","Defect","High","545","351840368","351840368","07/01/2016 01:41:24 PM","07/01/2016 01:41:24 PM","07/01/2016","06/24/2016 09:10:34 AM","07/01/2016 01:41:24 PM"
"353621879","[email protected];[email protected];[email protected]","TD Campaign Settings: Display ""Unlimited""","357851670","","archive:sprint 20","webui,TD-campaign","","","","0","False","","7","","","<p><a href=""http://screencast.com/t/DwNHvtHtAgi"">http://screencast.com/t/DwNHvtHtAgi</a></p><br/><p>for Budget and Impressions should be Unlimited (for Daily and Lifatime) if they are undefined</p>","Defect","Normal","1552","351840368","351840368","07/01/2016 01:41:32 PM","07/01/2016 01:41:32 PM","07/01/2016","06/27/2016 12:30:32 PM","07/01/2016 01:41:32 PM"
"356780850","[email protected];[email protected]","Backend: TD Ad Group","357851670","","archive:sprint 20","backend,phase-2","","","","5","False","","8","","","","Defect","Normal","1640","","","07/01/2016 01:41:43 PM","07/01/2016 01:41:43 PM","07/01/2016","06/29/2016 09:23:51 AM","07/01/2016 01:41:43 PM"
"317085962","[email protected];[email protected];[email protected];[email protected]","WebUI: Show undefined Budget and Imp Cap as ""Unlimited""","357851670","","archive:sprint 20","webui","","","","1","False","fixed","9","","","<p>According to meeting with client we should use rule ""<span>For Budgets and Impressions that are undefined, display values as ""Unlimited"" instead of blank.""</span></p><br/><p><span>This rule doesn't work for list pages <a href=""http://malt-web.dev.multiview.com/advertiser/3256/campaigns"">http://malt-web.dev.multiview.com/advertiser/3256/campaigns</a>, <a href=""http://malt-web.dev.multiview.com/advertiser/3256/adgroups"">http://malt-web.dev.multiview.com/advertiser/3256/adgroups</a>, campaign/*/adgroup </span></p>","Improvement","High","1049","351840368","351840368","07/01/2016 01:41:53 PM","07/01/2016 01:41:53 PM","07/01/2016","06/21/2016 05:41:07 PM","07/01/2016 01:41:53 PM"
"355770662","[email protected]","WebUI: Radius Targeting - Remove doesn't work correctly","357851670","","archive:sprint 20","","","","","0","False","","10","","","<p>Steps to reproduce: </p><br/><ol><br/><li><span id=""docs-internal-guid-ecc78a0d-914f-9b78-8e9b-c85d35cee208"">http://screencast.com/t/v6d63MNg</span></li><br/></ol><br/><p>Expected result: None of cities should be added.</p><br/><p>Actual result: Cities that marked as unselected are added to selected cities list</p>","Defect","High","1620","","","07/01/2016 06:30:03 PM","07/01/2016 06:30:03 PM","07/01/2016","06/29/2016 01:33:31 PM","07/01/2016 06:30:03 PM"
"356273571","[email protected]","Cannot change state of Click-to-Call creative","357851670","","archive:sprint 20","backend,creative","","","","0","False","","11","","","<p><a href=""http://malt-qa.uat.multiview.com/adgroup/10318/overview"">http://malt-qa.uat.multiview.com/adgroup/10318/overview</a></p><br/><p>not it is changed but error in network 422 [{""field"":""ClickTracking"",""message"":""Landing Page URL must be in the form of 'http://'""}] </p><br/><p><a href=""https://app-playground.simpli.fi/companies/5629/clients/36082/campaigns/184782/edit_campaign#/editCampaign/workflow"">https://app-playground.simpli.fi/companies/5629/clients/36082/campaigns/184782/edit_campaign#/editCampaign/workflow</a> </p>","Defect","High","1626","","","07/05/2016 11:46:35 AM","07/05/2016 11:46:35 AM","07/05/2016","06/28/2016 12:46:11 PM","07/05/2016 11:46:35 AM"
"358519767","[email protected]","TD Ad Group: DayParting","357851670","","archive:sprint 20","TD-adgroup,dayparting-targeting,backend","","","","0","False","","12","","","<p>Bid is parameter with 3 digits after point. Corret in Base.</p>","Defect","High","1713","","","07/05/2016 11:46:55 AM","07/05/2016 11:46:55 AM","07/05/2016","07/04/2016 06:49:21 PM","07/05/2016 11:46:55 AM"
"351269910","[email protected]","Attribution window fields don't update","357851670","","archive:sprint 20","simpli.fi,backend","","","","1","False","API was updated","13","","","<p><strong>Steps to reproduce:</strong></p><br/><ol><br/><li>Create an adgroup with Goal Type = CPA,<span style=""color: #666666; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: #f7f7f7;"">View Attribution Window</span> = 19, <span style=""color: #666666; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: #f7f7f7;"">Click Attribution Window</span> = 11</li><br/><li>Go to corresponding page in simpli.fi playground</li><br/></ol><br/><p><strong>Expected result:</strong> Values should be set in simpli.fi</p><br/><p><strong>Actual result:</strong> Default values in simpi.fi</p>","Defect","Normal","1480","","","07/05/2016 11:47:12 AM","07/05/2016 11:47:12 AM","07/05/2016","06/27/2016 09:51:26 AM","07/05/2016 11:47:12 AM"
"357416609","[email protected]","Backend: Trade Desk blacklist bid","357851670","","archive:sprint 20","backend","","","","1","False","","14","","","","Defect","Normal","1687","","","07/05/2016 11:47:29 AM","07/05/2016 11:47:29 AM","07/05/2016","06/30/2016 04:41:28 PM","07/05/2016 11:47:29 AM"
"357842980","[email protected];[email protected]","AD TD: Dayparting - correct ID of Days","357851670","","archive:sprint 20","backend","","","","0","False","","15","","","<p><a href=""http://screencast.com/t/BuONjUcQ"">http://screencast.com/t/BuONjUcQ</a> <a href=""http://screencast.com/t/mTWvS8HIpqyd"">http://screencast.com/t/mTWvS8HIpqyd</a> </p>","Defect","High","1705","","","07/05/2016 05:35:11 PM","07/05/2016 05:35:11 PM","07/05/2016","07/01/2016 01:09:59 PM","07/05/2016 05:35:11 PM"