-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCase, Title.txt
1033 lines (1033 loc) · 18.8 KB
/
Case, Title.txt
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
Too hard to sign in
Today's cases not loading
onboarding issues
reset password
Leads not working
Export/import data failed
PDF not loading
Sync
setup
Visual diagram for Alta
Export/import data failed
Sync out of date
downloads
setup
Reports
Can't send fax
Searching notes
Users information incorrect
collections/billing
training
Duplciation in records
Event/Task
Searching notes
Need to migrate data
Sharing calendar
Expense report set up
Duplciation in records
Asking about platform builder
Reset login information
Opportunity missing
questions about security
Email not sending
chat is not available
Total Cases Created
case
security issue
Add Notifications
Cases not loading
Today's cases not loading
HR issue
Reports missing
Multiple day events
Service cloud issue
Export/import data failed
Cases not loading
Adding Opportunity
Expense reports missing
chat is not available
Adding contacts
Cases not loading
Customer requested onboarding
Multiple day events
Turn off Notifications
Mass delete
Asking about platform builder
Too hard to sign in
Deleting fields
Too hard to sign in
training
PDF not loading
PDF not loading
Products not listed correctly
Help
importing failed
onboarding issues
training
case
chat is not available
Opportunity missing
Users not imported
Emails not showing up
Customer requested onboarding
training
Cases not loading
Performance issue
Sales wave setup
deleted screens
Can't login to org
collections/billing
Service cloud issue
Customer requested onboarding
downloads
Insurance description incorrect
Emails not showing up
Sync out of date
Offline
deleted screens
Service cloud issue
Export/import data failed
Sharing calendar
information transferred
Add Notifications
onboarding issues
Can't login
Sales wave setup
Notifications not working
Service cloud issue
Deleting fields
Multiple day events
Customer requested onboarding
Event/Task
Need to migrate data
Export/import data failed
Sales wave setup
PDF not loading
Insurance description incorrect
Export/import data failed
case
App not updating
completing an event
Sales wave setup
Insurance description incorrect
Sync out of date
Duplciation in records
Expense reports missing
Can't retrieve PDF
Can't send fax
Email not sending
Reports
Export/import data failed
Reports
Sharing calendar
Leads not working
setup
case
Sharing of Reports
Products not listed correctly
Alta business cards missing
Sharing of Reports
Emails not showing up
Users information incorrect
importing failed
Need to migrate data
Can't login to org
completing an event
General questions
Can't retrieve PDF
Help
Sync
Service cloud issue
deleted screens
App not updating
Export/import data failed
Deleting Leads
Mass delete
Notifications not working
Service cloud issue
Deleting contacts
Deleting Users
Accounts failed
chat is not available
completing an event
Visual diagram for Alta
Reports
Information missing
Offline
Leads not working
case
Visual diagram for Alta
Sharing calendar
Insurance description incorrect
Add Notifications
Help
Can't login to org
Log and Emails
Help
Can't login to org
Mass delete
Turn off Notifications
Cases not loading
Sales wave setup
Opportunity owner can't be transferred
Sales wave setup
Asking about platform builder
Mass delete
case
training
Too hard to sign in
collections/billing
General questions
downloads
Need to migrate data
Sharing calendar
Opportunity missing
Email not sending
Sharing of Reports
information transferred
General questions
Expense report set up
reset password
Customer requested onboarding
Reset login information
Access request for Outlook
Products not listed correctly
Need to migrate data
Log and Emails
Offline
Offline
Alta business cards missing
Phone incorrect
Visual diagram for Alta
Can't login
Alta business cards missing
Deleting Leads
Questions about Leads
Service cloud issue
Duplciation in records
General questions
Service cloud issue
Event/Task
PDF not loading
Too hard to sign in
Multiple day events
Users information incorrect
Add Notifications
Opportunity owner can't be transferred
Mass delete
Sharing calendar
Add Notifications
HR issue
Opportunity missing
information transferred
Mass delete
Visual diagram for Alta
reset password
Export/import data failed
Leads not working
Total Cases Created
Performance issue
setup
Sharing of Reports
Offline
Adding Opportunity
Sync
Multiple day events
Sharing calendar
training
Turn off Notifications
Can't send fax
Information missing
Users not imported
Adding Leads
Cases not loading
Insurance description incorrect
Phone incorrect
Export/import data failed
HR issue
setup
Today's cases not loading
Searching notes
Reset login information
Adding contacts
Phone incorrect
Expense reports missing
Mass delete
Cases not loading
case
Multiple day events
Alta business cards missing
Working Offline
Sharing of Reports
Accounts failed
Opportunity missing
chat is not available
Adding Opportunity
setup
information transferred
Sales wave setup
case
downloads
Deleting contacts
security leak
Reset login information
completing an event
App not updating
Phone incorrect
Can't login to org
information transferred
Customer requested onboarding
Phone incorrect
Leads not working
Notifications not working
Opportunity missing
setup
deleted screens
Sync out of date
Sharing calendar
Asking about platform builder
Insurance description incorrect
App not updating
Add Notifications
Too hard to sign in
Multiple day events
setup
Email not sending
Sharing of Reports
Help
Information missing
Visual diagram for Alta
Today's cases not loading
Help
Opportunity missing
Information missing
Working Offline
Service cloud issue
Information missing
Sales wave setup
Alta business cards missing
Adding contacts
Sales wave setup
questions about security
Sharing of Reports
Need to migrate data
Expense reports missing
Multiple day events
security leak
Offline
Access request for Outlook
Too hard to sign in
Deleting Users
Accounts failed
Deleting Users
PDF not loading
collections/billing
App not updating
Expense report set up
Access request for Outlook
Users information incorrect
Sharing of Reports
Leads not working
Add Notifications
Products not listed correctly
reset password
Can't login
Searching notes
Opportunity missing
Turn off Notifications
training
Sync out of date
Need to migrate data
Log and Emails
Email not sending
Users information incorrect
Questions about Leads
Deleting contacts
collections/billing
Sharing calendar
Sync
Users information incorrect
Sync out of date
Deleting contacts
Today's cases not loading
Sync out of date
Event/Task
Sync out of date
Today's cases not loading
Sales wave setup
Today's cases not loading
Leads not working
Reports
Expense reports missing
downloads
Can't login to org
Performance issue
collections/billing
Event/Task
Export/import data failed
Can't login to org
Phone incorrect
Deleting Leads
Sharing calendar
Total Cases Created
Deleting fields
Deleting contacts
Searching notes
Alta business cards missing
Today's cases not loading
Users not imported
Email not sending
Phone incorrect
Sharing of Reports
Visual diagram for Alta
questions about security
PDF not loading
Event/Task
App not updating
Accounts failed
Sync
Searching notes
General questions
deleted screens
Too hard to sign in
Emails not showing up
training
Products not listed correctly
Reset login information
App not updating
Sharing of Reports
Need to migrate data
Notifications not working
Sharing of Reports
Event/Task
Event/Task
Questions about Leads
Deleting contacts
Can't login
security issue
Need to migrate data
Offline
App not updating
Reports
Reports missing
HR issue
Total Cases Created
Expense reports missing
Expense report set up
Information missing
Sync out of date
Can't login to org
Insurance description incorrect
Products not listed correctly
setup
Add Notifications
information transferred
Duplciation in records
Notifications not working
Products not listed correctly
Notifications not working
Duplciation in records
chat is not available
Deleting contacts
Export/import data failed
Alta business cards missing
Adding Leads
Products not listed correctly
Notifications not working
questions about security
Service cloud issue
Adding Leads
Users information incorrect
Expense reports missing
completing an event
security issue
Emails not showing up
Multiple day events
Access request for Outlook
case
Service cloud issue
Service cloud issue
Sharing of Reports
Total Cases Created
Reset login information
Phone incorrect
Questions about Leads
Reports missing
Performance issue
Can't login to org
Multiple day events
Cases not loading
Deleting fields
Opportunity missing
collections/billing
Information missing
information transferred
Insurance description incorrect
Opportunity owner can't be transferred
onboarding issues
App not updating
Performance issue
Can't send fax
onboarding issues
importing failed
Event/Task
Deleting Users
Insurance description incorrect
Cases not loading
Reports missing
Can't retrieve PDF
Adding contacts
Deleting Users
Expense report set up
security issue
Too hard to sign in
Can't login
Can't login to org
Deleting contacts
Sharing of Reports
Add Notifications
Performance issue
Asking about platform builder
Sync
Insurance description incorrect
chat is not available
onboarding issues
downloads
Need to migrate data
Reports
Opportunity missing
Sync out of date
Asking about platform builder
Accounts failed
Sharing of Reports
collections/billing
Too hard to sign in
Today's cases not loading
importing failed
information transferred
Reports
Emails not showing up
onboarding issues
Turn off Notifications
Working Offline
Email not sending
Reports missing
chat is not available
Expense report set up
Users not imported
questions about security
information transferred
importing failed
Adding contacts
questions about security
Emails not showing up
Adding Leads
Sharing calendar
Cases not loading
deleted screens
Total Cases Created
Performance issue
Insurance description incorrect
deleted screens
Phone incorrect
Log and Emails
Adding contacts
Export/import data failed
security issue
Accounts failed
PDF not loading
Alta business cards missing
Expense reports missing
Insurance description incorrect
security leak
Cases not loading
Can't login
Opportunity missing
Deleting Leads
Multiple day events
Duplciation in records
Notifications not working
downloads
Log and Emails
Users information incorrect
Users not imported
Notifications not working
Too hard to sign in
Multiple day events
Customer requested onboarding
General questions
Working Offline
Opportunity owner can't be transferred
Export/import data failed
setup
Today's cases not loading
Cases not loading
App not updating
Cases not loading
Deleting Leads
Accounts failed
Add Notifications
Help
Can't send fax
Sharing calendar
PDF not loading
training
Questions about Leads
Sharing of Reports
Phone incorrect
Today's cases not loading
Duplciation in records
Adding contacts
Multiple day events
Customer requested onboarding
Emails not showing up
Information missing
Expense report set up
Questions about Leads
case
Event/Task
Opportunity owner can't be transferred
Can't send fax
Can't login to org
Adding Opportunity
information transferred
Sharing of Reports
Phone incorrect
Export/import data failed
onboarding issues
security leak
Questions about Leads
Users not imported
Visual diagram for Alta
Opportunity owner can't be transferred
Event/Task
HR issue
Working Offline
Help
Accounts failed
Adding Leads
Asking about platform builder
reset password
Can't retrieve PDF
Expense report set up
Cases not loading
Multiple day events
security leak
Insurance description incorrect
General questions
Reports missing
Accounts failed
Email not sending
Asking about platform builder
Deleting fields
Log and Emails
completing an event
Need to migrate data
HR issue
Service cloud issue
Asking about platform builder
Deleting fields
Products not listed correctly
Sync
Customer requested onboarding
Deleting fields
Deleting Users
Searching notes
Total Cases Created
Reset login information
Emails not showing up
information transferred
Reports missing
HR issue
Insurance description incorrect
deleted screens
Searching notes
Working Offline
Opportunity owner can't be transferred
Event/Task
Add Notifications
onboarding issues
security issue
Working Offline
collections/billing
Today's cases not loading
Turn off Notifications
Add Notifications
Emails not showing up
Mass delete
Leads not working
Add Notifications
Help
Turn off Notifications
Opportunity missing
HR issue
Sync out of date
Adding Opportunity
Phone incorrect
General questions
General questions
Questions about Leads
Total Cases Created
deleted screens
Questions about Leads
Adding Leads
Event/Task
Products not listed correctly
Mass delete
completing an event
Need to migrate data
Today's cases not loading
questions about security
Adding Leads
Accounts failed
Opportunity owner can't be transferred
setup
Working Offline
Can't login to org
completing an event
Insurance description incorrect
Information missing
Service cloud issue
Information missing
Searching notes
Expense reports missing
Access request for Outlook
Turn off Notifications
General questions
Working Offline
Add Notifications
Expense reports missing
importing failed
Duplciation in records
Reset login information
Reports
Notifications not working
Reports missing
downloads
Deleting Leads
Asking about platform builder
Users information incorrect
information transferred
case
Leads not working
Opportunity owner can't be transferred
Opportunity owner can't be transferred
Searching notes
Asking about platform builder
Working Offline
Alta business cards missing
Reset login information
App not updating
security leak
downloads
Deleting Leads
Can't login to org
Event/Task
PDF not loading
Duplciation in records
Users information incorrect
Service cloud issue
Products not listed correctly
Can't login to org
Mass delete
Insurance description incorrect
Export/import data failed
deleted screens
Multiple day events
Total Cases Created
Visual diagram for Alta
Leads not working
Leads not working
Phone incorrect
Accounts failed
Phone incorrect
Questions about Leads
Deleting contacts
Can't login to org
onboarding issues
Sync out of date
Sharing calendar
Customer requested onboarding
completing an event
Multiple day events
Questions about Leads
Adding Leads
General questions
Accounts failed
reset password
Insurance description incorrect
Opportunity owner can't be transferred
Opportunity owner can't be transferred
Alta business cards missing
Can't send fax
Today's cases not loading
chat is not available
security issue
Visual diagram for Alta
collections/billing
Can't send fax
training
Access request for Outlook
Sales wave setup
Offline
Deleting contacts
Deleting Leads
Today's cases not loading
Sharing of Reports
Deleting Users
Deleting Users
Adding Opportunity
Can't send fax
Information missing
Opportunity missing
Help
Sync out of date
Sharing of Reports
Products not listed correctly
onboarding issues
Multiple day events
Working Offline
Adding contacts
importing failed
Products not listed correctly
Turn off Notifications
Emails not showing up
Add Notifications
Offline
Asking about platform builder
Phone incorrect
Insurance description incorrect
Opportunity missing
importing failed
Can't login
setup
Multiple day events
Can't retrieve PDF
Users information incorrect
Need to migrate data
Offline
Email not sending
Reports
Offline
Opportunity owner can't be transferred
Phone incorrect
Adding Opportunity
Insurance description incorrect
Sync
Performance issue
Asking about platform builder
Service cloud issue
setup
Products not listed correctly
Deleting Leads
Opportunity missing
Event/Task
Deleting Users
completing an event
Working Offline
Deleting Leads
Users not imported
PDF not loading
Working Offline
Reset login information
Leads not working
Working Offline
Deleting Users
security issue
collections/billing
Reset login information
Mass delete
training
Add Notifications
Deleting contacts
App not updating
Sharing calendar
HR issue
Expense report set up
case
Asking about platform builder
Cases not loading
Sales wave setup
Opportunity missing
Sync out of date
Can't send fax
HR issue
Too hard to sign in
training
downloads
Sharing calendar
reset password
Deleting Leads
downloads
Log and Emails
Users information incorrect
HR issue
Multiple day events
Users not imported
Leads not working
Expense report set up
importing failed
onboarding issues
Working Offline
PDF not loading
Can't login to org
Export/import data failed
General questions
Expense reports missing
chat is not available
Can't login
General questions
Performance issue
Sharing calendar
Duplciation in records
case
Offline
Expense reports missing
Visual diagram for Alta
Users information incorrect
Email not sending
setup
Deleting fields
Adding Leads
Mass delete
Can't login to org
Deleting Users
Reports
Opportunity missing
Event/Task
Add Notifications
onboarding issues
setup
case
Asking about platform builder
Opportunity missing
Turn off Notifications
Too hard to sign in
security issue
Log and Emails
Phone incorrect
Sync
Service cloud issue
security issue
setup
setup
Adding contacts
security issue
PDF not loading
Sharing of Reports
Deleting contacts
Access request for Outlook
Sync
Event/Task
Reports
Emails not showing up
reset password
Questions about Leads
Turn off Notifications
Offline
Sales wave setup
General questions
Opportunity missing
Multiple day events
Searching notes
Mass delete
Email not sending
Leads not working
Can't login to org
Users information incorrect
Expense report set up
Multiple day events
security leak
Need to migrate data
Deleting contacts
Information missing
Total Cases Created
Reports
importing failed
Users not imported
Total Cases Created
reset password
Asking about platform builder
Can't login
Deleting fields
Notifications not working
Asking about platform builder
deleted screens
Adding Leads
Alta business cards missing
reset password
Opportunity owner can't be transferred
Expense report set up
Visual diagram for Alta
Mass delete
Help
Offline
Alta business cards missing
Reports
completing an event
Service cloud issue
Adding contacts
questions about security
HR issue
Reports
Emails not showing up
Performance issue
Working Offline
App not updating
Service cloud issue
Sync
Users information incorrect
collections/billing
reset password
Can't login
Reset login information
completing an event
HR issue
Products not listed correctly
setup
App not updating
Deleting contacts
Emails not showing up
setup
chat is not available
Users information incorrect
Opportunity owner can't be transferred
Service cloud issue
Deleting Users
Sharing calendar
Insurance description incorrect
Working Offline
Event/Task