-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-springcm-com-rss-fixed.xml
3373 lines (3163 loc) · 868 KB
/
blog-springcm-com-rss-fixed.xml
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
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title>SpringCM Blog</title>
<link>https://blog.springcm.com</link>
<description>
SpringCM's applications help global brands and public agencies - Google, Facebook, Entegris, and the Commonwealth of Virginia, among others - increase revenues, cut costs, mitigate risk, engage employees, and delight customers. We make it easy to collaborate inside and outside the enterprise, work on mobile devices, sync content, and interact with relevant documents and files within the native application to get work done, including Salesforce, SharePoint, Office, NetSuite, and more.
</description>
<language>en-us</language>
<pubDate>Thu, 20 Aug 2015 13:31:20 GMT</pubDate>
<dc:date>2015-08-20T13:31:20Z</dc:date>
<dc:language>en-us</dc:language>
<item>
<title>How cloud computing is influencing Federal government innovation</title>
<link>https://blog.springcm.com/cloud_momentum_in_federal_government</link>
<description>We attended the Cloud Computing Summit in Washington DC this week, with partners Acumen and salesforce.com. The event, geared toward government IT, was an interesting snapshot of the growing momentum for cloud computing in the Federal government.</description>
<content:encoded>We attended the Cloud Computing Summit in Washington DC this week, with partners Acumen and salesforce.com. The event, geared toward government IT, was an interesting snapshot of the growing momentum for cloud computing in the Federal government.More agencies are getting serious about cloud computingA couple of non_scientific trends, compared to similar events last year, show that more agencies are getting serious about cloud computing:the ratio of people asking "what is cloud" to "how do I do cloud" reversed from a year ago, so that we had many more discussion on implementation issuesthe ratio of government agency personnel to contractors increased from a year ago, so the buyers themselves were much more a part of discussionsThe level of efficiencies that can be achieved with cloud computing are getting real interest. &nbsp;There are healthy debates about what levels of security are appropriate for what types of data and how to evaluate vendors (more on this in a later post). Between the leadership of Vivek Kundra, the OMB initiative, the work at NIST, and another year of vendor maturity, you got the sense _ in this admittedly self_selecting group _ that it's now a question of how fast, not if, cloud computing takes off in Washington.Beyond Washington, there is growing interest at the state and local level in cloud document management and workflow applications as a way to address urgent needs in a budget_strapped year.How cloud computing is influencing (and improving) Federal government innovationCloud computing covers a wide range of levels in the stack, application types, and deployment types, so it looks like it will continue to be a noisy process. &nbsp;If you're interested in SpringCM's take on the opportunities for applying cloud in government, take a look at our recent white paper&nbsp;Improving Government Performance With Cloud Content ManagementImage source: DHuiz on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Fri, 07 May 2010 18:11:00 GMT
</pubDate>
<guid>https://blog.springcm.com/cloud_momentum_in_federal_government</guid>
<dc:date>
2010-May-07T18:11:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Cloud content and the IKEA Effect</title>
<link>https://blog.springcm.com/the_ikea_effect</link>
<description>A recent&nbsp;blog post&nbsp;by Mark McDonald provides the basis for insight into one of the challenges in transitioning from on_premise to cloud solutions: getting the various stakeholders in the organization moving in the same direction.&nbsp;Some times this can be just the normal resistance to change &ndash; it takes some individuals and organizations shorter or longer to adapt to and to adopt new approaches.&nbsp;Some times this can be issues, or at least perceived issues, that relate to broader ecosystem requirements, or perhaps investment in end user or IT skills.</description>
<content:encoded>A recent&nbsp;blog post&nbsp;by Mark McDonald provides the basis for insight into one of the challenges in transitioning from on_premise to cloud solutions: getting the various stakeholders in the organization moving in the same direction.&nbsp;Some times this can be just the normal resistance to change it takes some individuals and organizations shorter or longer to adapt to and to adopt new approaches.&nbsp;Some times this can be issues, or at least perceived issues, that relate to broader ecosystem requirements, or perhaps investment in end user or IT skills.But if youre working on getting your organization to begin initial projects or broader roll_outs of cloud technology, there is a behavior that you should know about named the "IKEA Effect from a book by Dan Ariely.Named after the well_known retailer, the IKEA effect was developed out of research Dan and his colleagues did around the obervation that we overvalue what we ourselves make.&nbsp;In one passage from his book &nbsp;The Upside of Irrationality, Dan notes,In one of our studies we asked people to fold origami and then to bid on their own creations along with other peoples. They were consistently willing to pay more for their own origami. In fact, they were so enamored of their amateurish creations that they valued them as highly as origami made by experts.So how does this relate to cloud adoption?Think of all the stakeholders that have been busy assembling their content management equivalent of IKEA furniture.&nbsp; Think of all the steps and effort theyve had to go through to (hopefully) produce a solution that (hopefully) addresses a business need.&nbsp;&nbsp; Under the lens of the IKEA effect, stakeholders can translate that (unnecessary) time into unrealistic value. &nbsp;In an environment with no resource constraints, this may not be considered an issue, but for most of us it represents the waste of valuable resources and skills.&nbsp; Instead of spending your organizations time on understand the instructions, finding the right tools and putting together the furniture, with cloud you can now focus on what furniture is needed and where to put it to use.&nbsp; Instead of spending hours learning to fold paper to make a perhaps not so great swan, you can be a swan from an expert.So if youre an IT or line of business executive, consider that some of your organization may be putting value on the effort _ not the business outcome _ of an initiative, a bad bet in any economy. &nbsp;You could do it the hard (old) way, or keep it simple with cloud.&nbsp;Note: If you're interested in reading more on this topic, in addition to Mark's blog and Dan Ariely's book, there is a freely available article by Michael Norton on HBR titled&nbsp;When Labor Leads to Love.Image Source:&nbsp;Stellas Dolls&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Tue, 15 Jun 2010 21:25:00 GMT
</pubDate>
<guid>https://blog.springcm.com/the_ikea_effect</guid>
<dc:date>
2010-Jun-15T21:25:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How cloud solutions keep it simple for the enterprise</title>
<link>https://blog.springcm.com/memo_to_the_cio_it_doesnt_have_to_take_a_village</link>
<description>While the allusion is a bit dated, it seems appropriate for this post on the impact of cloud applications _ and in particular enterprise content management cloud applications _ on getting projects approved and implemented.</description>
<content:encoded>While the allusion is a bit dated, it seems appropriate for this post on the impact of cloud applications _ and in particular enterprise content management cloud applications _ on getting projects approved and implemented.One of the great benefits of a cloud application is that theres little assembly required, as I wrote about in a recent post on the IKEA Effect.The benefit of not doing the work of assembly is obvious, but theres another factor: project team size.&nbsp; In our experience with customers, the typical cloud application project team involves anywhere from 25% to 10% of the resources of a comparable on_premise project team. &nbsp;This has a first impact on getting projects approved, because there is less contention for scarce resources.It also has impact on productivity and risk. If youre a CIO, youre probably familiar with classic IT project texts by Barry Boehm, Capers Jones, et al on the impact of larger project size on more time spent on project overhead vs. delivering function, the increase in error rates, etc.Basically, larger project team size generates complexity factorially.&nbsp;A 3_person project has 3 communication paths; a 10_person project has 45.As one of my colleagues likes point out, even trying to schedule meetings with a 10_person project team can cause weeks of delay, especially this time of year.&nbsp;&nbsp;So if youre considering alternative models for a content management project, consider project team resource requirements as part of the equation.And instead of a village, use cloud to keep it simple.</content:encoded>
<category>legal</category>
<pubDate>
Thu, 24 Jun 2010 21:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/memo_to_the_cio_it_doesnt_have_to_take_a_village</guid>
<dc:date>
2010-Jun-24T21:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Content Marketing: 6 Essentials to Getting it Right and Being More Productive</title>
<link>https://blog.springcm.com/content_marketing_6_essentials_to_getting_it_right_and_being_more_productive</link>
<description>What is content marketing?&nbsp; Creating and sharing content to promote your product or service.&nbsp; Yawn, that was boring.Perhaps a little wordy, but how about this: content marketing is the art and science of engaging your potential buyers in a conversation long before they say hello, so they&rsquo;re more likely to buy from you.</description>
<content:encoded>What is content marketing?&nbsp; Creating and sharing content to promote your product or service.&nbsp; Yawn, that was boring.Perhaps a little wordy, but how about this: content marketing is the art and science of engaging your potential buyers in a conversation long before they say hello, so theyre more likely to buy from you.Wait, isnt that social marketing?&nbsp; It is that too, but either way its about a conversation.Content marketing is not new, but the way B2B and B2C buyers evaluate their needs, understand the possibilities and select with whom to do business is radically different.&nbsp;&nbsp; The combination of the web, mobile and social means buyers look for information from, depending on what study you read, 6, 8 or even 11 sources before they ever formally talk to you.&nbsp;Were entering an era of reciprocity.&nbsp; We now have to engage people in a way thats useful or helpful to their lives To put it another way: How can we exchange value instead of just sending a message?&nbsp;Jim Lecinski. Winning the Zero Moment of Truth. Zook, 2011.Theyre trying to get a handle on how to understand the needs they have, what others think about various approaches, whats hot and whats not, what the risks are, and where to buy the product or service.&nbsp;Just to make things more complicated, the kinds of information buyers seek change as they progress through the buying cycle.&nbsp;One of the big challenges in this model is that content marketing requires content. And because theres so much of it now, we realize that content marketing means content managing.&nbsp;Creating, maintaining, and, yes, managing all of that content is hard work. So how do you organize your marketing organization and tools _ to get the best results and not get swamped? What content do you create? How do you create content that matters? How do you manage all this content without duplicate effort and lost documents?Here are 6 essential steps to consider in doing the hard work of content marketing.1. Start with your audienceWhile its the first rule in sales and marketing, we all know how easy it is to start talking before we understand to whom were speaking, and what they care about.&nbsp;Tactics to consider are:Think of the individuals youre trying to reach not as leads or potential customers, but as an audience, a readership.&nbsp;Find out what theyre interested in.&nbsp; The Internet, search analysis and social media make this easier than ever, but dont forget to just ask them too.Write it down.&nbsp;&nbsp; Make sure you really understand who your audience is and what they want by forcing the team to put it in writing.&nbsp; This can also make sure your marketing teammates and sales team are on the same page.Make it interesting.&nbsp; Now you know how to make your content relevant, so the challenge is to make it useful and credible.&nbsp;Talk like a real person.&nbsp; Unless youre marketing to quantum physicists, it shouldnt sound like youre writing about quantum physics.&nbsp; Most of what we do in business isnt that complicated, it just sounds that way. Be authoritative, but stop the jargon and 6_syllable words.&nbsp;&nbsp;2. Create a PlanTo make sure you are getting the right content to the right buyers, have a plan. Think of it like an editorial calendar for a publication so you have clear expectations on the who, what and when of the content to feed your marketing machine.Tactics to consider are:Imagine what you could do.&nbsp; Starting with your audiences, initiatives and buying phases, create a grid of possible contentCatalog existing pieces. Some may need revision, but others may be perennials _ those valuable pieces that people will always want to read.Build a strong foundation. Based on marketing objectives, identify core content pieces to create a foundation for your content marketing initiatives.&nbsp; Often these are thought leadership pieces based on custom research or models, or the standard sales collateral that will be everywhere.Source it.&nbsp; Who in your organization can be a subject matter expert and who help those experts polish finished pieces?&nbsp; Weve often found that the more strategic professional services consultants have great insights, and of course product management, marketing and executives are often good sources.&nbsp;&nbsp; Look at internal vs. external resources as subject matter experts or writers.&nbsp; Dont forget 3rd&nbsp;party sources such as analyst firms and brand name consultants as great ways to get authoritative, independent material.&nbsp;From working through all this you now have a schedule. &nbsp;Six things to track in your schedule:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Type of content.&nbsp; Video, white paper, FAQ, byline article, blog post, podcast, webinarOwner.&nbsp; Someone has to own it when it will be complete, as you have nurture, web and social campaigns that rely on the timing of content being deliveredTitle.&nbsp; Spend time on this because your title really matters.Buying stage.&nbsp; Early, middle or late state; or education, awareness, considerationBuyer segment.&nbsp; Job title, role, geographyOverall campaign.&nbsp; Grouping around a specific marketing campaign, theme or category3. &nbsp;Work to the planMake the content. This is when a little inspiration turns into magic with a lot of perspiration.&nbsp;&nbsp;Tactics to consider are:Make time. Set aside bi_weekly (or whatever frequency makes sense for you) time slots to work on contentCreate a workspace.&nbsp;&nbsp;Have a central, easily accessible library of in_process materials.&nbsp; Make sure everyone involved, including your agencies, can access the appropriate materials.Organize.&nbsp; Organize your work_in_progress using the information in your schedule like type of content, status, due date and owner.&nbsp;Automate it.&nbsp; The less time you spend chasing content, the more time you can spend creating compelling content.&nbsp; Use technology to&nbsp;drive collaboration and review cycles, so getting the best input and sign_offs is a snap.&nbsp;Track it.&nbsp; Create a dashboard of whats in process, whats due to kick_off soon, whats overdue, who is a roadblock.&nbsp; Dont forget to also have a view of whats been completed!4. Dont Forget the Sales TeamYour sales team will want to use all this great content, too.&nbsp;&nbsp; The key here is to make it easy.&nbsp; Easy for them to find the right content, and easy for them to use it.Tactics to consider are:Give it a home.&nbsp; Create a sales library, a single place where the sales team knows where to go, and where the most current content is always available.Make it self_service.&nbsp; Give the sales team easy ways to search for, browse and use the most powerful content for the segment and stage.&nbsp; If you really want to make it easy, you can even suggest relevant content for an opportunity within your CRM.Dont forget partners.&nbsp; Channel, services and marketing partners have the same needs as your sales team, plus current logos, latest approved advertising, co_op program materials.&nbsp;Track it.&nbsp; You have great analytics for online marketing, dont forget to monitor which content the sales team uses most and uses least.&nbsp; Some times it take marketing of your marketing collateral.5.&nbsp; Reuse, re_imagineOne of the best ways to create content is to start from something you already have.&nbsp; White papers can be leveraged into web copy, blog posts, guest articles and more, so you can get great leverage from your investment in useful and relevant content.Three tactics to consider:Whats hot, whats not.&nbsp; Between your marketing platform, web analytics and sales/marketing library, you can quickly see which&nbsp;content is being used&nbsp;and engaging your audience, so you can double down on the content that is already working for you.&nbsp; One simple test for thought leadership programs is what content causes your audience to come back for more.&nbsp;&nbsp;Back to the plan.&nbsp; The plan described earlier is an easy tool to quickly see where you can extend core content pieces.Its all relative.&nbsp; Use your plan and content library to keep track of your content extensions so you have a clear view of what is impacted when you need to make updates and changes.6. Keep it FreshWith markets, best practices, your product or service and even branding elements changing all the time, your content will probably need regular reviews.&nbsp; Some content by its nature, such as a Whats New Guide, may only be relevant until the next release.&nbsp;Tactics to consider:Best if consumed by.&nbsp; Make sure your core content is tagged with a reminder to review it or with an expiration date.&nbsp; Content libraries can help you by making content disappear on the right date, and also remind you of when some regular review cycle.Have an owner.&nbsp; Where possible, its easiest to have the decision to review, rewrite or retire content done by the original owner as they have the most context of the contents continued accuracy.Back to the plan.&nbsp; If you decide to rewrite content, make sure your plan captures this.&nbsp; Dont forget the related content.Summing it upCreating engaging content does not happen by accident.&nbsp; Yes, it takes a good understanding of your audience, good ideas, and good writing.&nbsp;&nbsp; But it also requires discipline and content management.&nbsp; Being able to quickly and easily find content, update content, ensure youre working with most current content, sharing it in review cycles, and then organizing it in one place. A classic case of 1% inspriration to 99% perspiration.With a little bit of process, some easy metrics and some easy to use technology, you can increase your chance of success, spend more time on the story than busy work, and&nbsp; put your marketing team in a position to be better content managers, and great content marketers.&nbsp;If you're interested in learning more about Content Marketing, check out&nbsp;Content Rules&nbsp;by Ann Handley and CC Chapman.&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 25 Oct 2011 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/content_marketing_6_essentials_to_getting_it_right_and_being_more_productive</guid>
<dc:date>
2011-Oct-25T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Salesforce.com Customers Looking for Easier Ways to Manage Content According to Survey</title>
<link>https://blog.springcm.com/salesforce.com_customers_looking_for_easier_ways_to_manage_content_according_to_survey</link>
<description>SpringCM recently commissioned a survey of over 100 salesforce.com customers on the role and effectiveness of document management with Salesforce CRM.</description>
<content:encoded>SpringCM recently commissioned a survey of over 100 salesforce.com customers on the role and effectiveness of document management with Salesforce CRM.Importance of salesforceIf you attended Dreamforce 2011 or Cloudforce NYC in November, you saw and felt all the energy there, and will not be surprised by the response to the first question in our survey, as nearly all those surveyed responded that salesforce was both very important and valuable to their organization.&nbsp;Importance of document management with salesforceNearly as many salesforce users felt that managing documents, or content, within salesforce was important to getting the most out of sales and marketing.&nbsp; This is understandable given the importance in many sales and marketing models of different types of documents such as:promotional: presentations, ROI models, proposalstransactional: contracts, statements of work, quotesprocess: sales engagement plans, customer on_boarding plansTop 3 barriers to using content more effectively with salesforceIf salesforce is critical to the business, and managing documents more effectively is important to sales and marketing effectiveness, then whey are an estimated 50_90% of of sales cycles related documents not associates with relevant salesforce Accounts and Opportunities?&nbsp; The top three issues cited relate to making it simpler to initial get documents associated with salesforce objects, then being able to manage and find them.Looking forwardA number of survey respondents also commented that having more documents in salesforce.com associated with the correct Accounts and Opportunities (or other salesforce objects) would be important as they looked towards more use of mobile devices, particularly tablets, and of their move to social enterprise initiatives using Salesforce Chatter.SummaryCustomers see tremendous value in having all relevant customer information in one place, but there are a number of basic issues that are preventing them from getting the most out of their platform.&nbsp;If you have comments or questions on the survey, feel free to reach out to us, or better yet check out one of SpringCM's regular&nbsp;webinars&nbsp;to see how the top 3 issues, and 12 others, can be addressed using the&nbsp;free VIP Edition.</content:encoded>
<category>legal</category>
<pubDate>
Mon, 05 Dec 2011 14:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/salesforce.com_customers_looking_for_easier_ways_to_manage_content_according_to_survey</guid>
<dc:date>
2011-Dec-05T14:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>3 More Factors Driving the Need to Break the Barrier Between Applications and Content</title>
<link>https://blog.springcm.com/3_more_factors_driving_the_need_to_break_the_barrier_between_applications_and_content</link>
<description>Our most recent blog post on&nbsp;integrating content with applications&nbsp;with&nbsp;Open Cloud Connector&nbsp;talked about the big impact of being able to find, view, share, edit and approve content such as proposals and presentations right from your CRM system, or resumes and offer letters right from your Human Capital Management application.There are three factors that make putting content &ldquo;inside&rdquo; your applications even more powerful:</description>
<content:encoded>Our most recent blog post on&nbsp;integrating content with applications&nbsp;with&nbsp;Open Cloud Connector&nbsp;talked about the big impact of being able to find, view, share, edit and approve content such as proposals and presentations right from your CRM system, or resumes and offer letters right from your Human Capital Management application.There are three factors that make putting content inside your applications even more powerful:Mobile.&nbsp; Business use of mobile devices such as smartphones and tablets is already moving beyond your email, to using of all the same applications as you use on your computer at work.&nbsp; Naturally businesspeople want the same ability on their iPad or Xoom as they have on the web: to easily find, view and act on content related to the business processes managed by applications.&nbsp;The&nbsp;Rise of Video. Business content has always gone beyond Microsoft Office and PDF.&nbsp; Images and engineering drawings are nearly as common for some industries and applications.&nbsp;Adding to that, consumerization is unleashing explosive growth in use of video and audio for business.&nbsp; 75% of executives watch work_related videos at least weekly according to research by Forbes Insights.&nbsp; Various sources report that business use of video for internal company messaging, customer service, training, executive messaging, and collaboration is increasing by 50% every several years.&nbsp;There are more content types than ever relevant to your business process of closing business, completing projects and hiring employees, increasing the value of having it at your fingertips inside your applications.Multiple applications.&nbsp; Sales executives are hiring managers too.&nbsp; Project managers need to see statements of work for new customers.&nbsp;&nbsp; Giving them the ability to view and act on content in their applications can create value not just for one function, but also across a range of applications where content is relevant.The three factors of mobile, expanding content types, and multiple applications give you even more reasons to consider how to link content to transactional business data, and as Mark Gilbert of Gartner wrote,&nbsp;deliver a rich information experience that allows end_users to get the job done easier and faster.Helping businesspeople get their jobs done easier and faster means making it easy, which takes a little magic behind the scenes.&nbsp; Check out an upcoming blog post for more on this topic.</content:encoded>
<category>legal</category>
<pubDate>
Sun, 01 Apr 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/3_more_factors_driving_the_need_to_break_the_barrier_between_applications_and_content</guid>
<dc:date>
2012-Apr-01T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Mobile and Organization: Everything Has Changed</title>
<link>https://blog.springcm.com/mobile_and_organization_everything_has_changed</link>
<description>Everything has changed.&nbsp;&nbsp;Maybe a little dramatic, but the transformation in how we work is astonishing.&nbsp; The world of clear lines between work and personal life, just a few technology choices and highly structured work groups is over. &nbsp;In an amazingly fast way, the latest in organization and technology have reinforced each other to create a whole new playing field of flexibility and productivity.</description>
<content:encoded>Everything has changed.&nbsp;&nbsp;Maybe a little dramatic, but the transformation in how we work is astonishing.&nbsp; The world of clear lines between work and personal life, just a few technology choices and highly structured work groups is over. &nbsp;In an amazingly fast way, the latest in organization and technology have reinforced each other to create a whole new playing field of flexibility and productivity.4 specific trends help to illustrate this new world:For business this isnt about playing Angry Birds or swapping photos either; as our CEO, Christopher Junker, says, Its not about sharing files, its about sharing work.&nbsp; Organizations accomplish a lot more by working this new way.&nbsp; They see executives more efficient, field sales and field service more effective, and generally knowledge workers getting things done more quickly. Source: TechValidate. TVID:&nbsp;C4D_67A_60B&nbsp;Taken all together, its clear that the way we work isnt just changing, its changed.&nbsp;Thats why were so thrilled to have our new&nbsp;SpringCM Mobile for iPad, iPhone and Android&nbsp;to make it easier for our customers to work in all these new ways.&nbsp;&nbsp; Well share more in an upcoming post on some places people are working, and the answer just might surprise you.</content:encoded>
<category>legal</category>
<pubDate>
Wed, 02 May 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/mobile_and_organization_everything_has_changed</guid>
<dc:date>
2012-May-02T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Mobile and Where We Work _ Anytime, Anyplace</title>
<link>https://blog.springcm.com/mobile_and_where_we_work_anytime_anyplace</link>
<description>The previous blog post on mobile noted how quickly the latest in organization and technology have reinforced each other to create a whole new playing field of flexibility and productivity.&nbsp; One of more obvious ways this shows up is where we work from has changed so dramatically.&nbsp;&nbsp;&nbsp; For most of us, our workspace is no longer limited to, or even defined by our physical office or cubicle.&nbsp;</description>
<content:encoded>The previous blog post on mobile noted how quickly the latest in organization and technology have reinforced each other to create a whole new playing field of flexibility and productivity.&nbsp; One of more obvious ways this shows up is where we work from has changed so dramatically.&nbsp;&nbsp;&nbsp; For most of us, our workspace is no longer limited to, or even defined by our physical office or cubicle.&nbsp;No longer is our office our office.&nbsp;According to a&nbsp;Forrester report&nbsp;in 2011, 66% of information workers work remotely. &nbsp;&nbsp;The report notes that this trend will have profound implications for everything from the location and design of offices, to IT's provisioning of technology, to how business leaders marshal expertise.&nbsp;Working where you are todayIn addition to home offices, traveling to customers for sales and service, while not new, is one of the most common places where work happens outside your office, according to a recent study by TechValidate of SpringCM Mobile customers.&nbsp; &nbsp;What is new is that businesspeople expect to get more done while they are there, serving customers more efficiently and moving sales cycles along more effectively using mobile business applications.&nbsp;With global supply chains, where those customers and partners are located is changing too.&nbsp; Today visits to customers and suppliers just as easily to another continent as to another city.Third places, most epitomized by coffee shops such as Starbucks, offer a comfortable location with Wi_Fi to meet others.&nbsp; For remote workers or free_lancers, they can be a more productive office away from the home_office environment, according to&nbsp;LifeHackerA recent&nbsp;Wall Street Journal story&nbsp;described a new offshoot of this trend, as more consultants and freelancers are using the using the comfy chairs, free Wi_Fi and other amenities to be found in chic new urban hotels.Working where you are nowIts not just where you work on a day, but where you work over the course of the day that is changing.&nbsp; With the lines between work and personal blurring, a typical day could look like:Checking in on things from your home office in the morning before you head to workUpdating a report while commuting on the trainResponding to a colleagues request for a copy of that presentation while in line at Starbucks or PeetesWorking from your officeApproving a report while waiting for your daughters volleyball game to startFinishing up a product announcement at the kitchen table that eveningEven the office isnt the officeWhile many of us have worked from different places like ski lifts or waiting in line at the car wash, one location that is part of the anywhere, anytime trend that may be the most surprising is your office.&nbsp;&nbsp; In fact in the TechValidate study, one of the top places customers report using SpringCM Mobile is while in meetings or others offices.&nbsp;Anywhere, anytime powered by mobileWorking from anywhere, anytime is the norm for most professionals now.&nbsp; Powering this is the change in the different kinds of devices available for information workers to use.&nbsp; More on this trend, Bring Your Own Device (BYOD) and some interesting patterns in which devices we use when in an upcoming post.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 08 May 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/mobile_and_where_we_work_anytime_anyplace</guid>
<dc:date>
2012-May-08T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Mobile Devices: One Size Fits All to All Sizes Fit One</title>
<link>https://blog.springcm.com/mobile_devices_one_size_fits_all_to_all_sizes_fit_one</link>
<description>As described in the prior blog post,&nbsp;working from anywhere, anytime&nbsp;is now the norm for most professionals.&nbsp; Underlying this trend is the wide array of devices available, most even supported, for information workers to use today.</description>
<content:encoded>As described in the prior blog post,&nbsp;working from anywhere, anytime&nbsp;is now the norm for most professionals.&nbsp; Underlying this trend is the wide array of devices available, most even supported, for information workers to use today.From one size fits allIn the past, most IT organizations defined the devices they supported.&nbsp; Several configurations of desktops and laptops were assigned to you based on your role in the organization.&nbsp; Blackberry became the mobile email device of choice because it provided on_the_go email in tandem with an enterprise server to manage the devices.&nbsp; Typically you didnt buy your own device; you were handed one if it made sense to the organization based on your role.&nbsp; Perhaps you even had access to some corporate resources through a home computer via VPN.As a strategy to minimize the cost of device support and provide a strong perimeter security model, this made sense.&nbsp;But this strategy valued cost containment and control over flexibility and productivity.&nbsp;&nbsp; Making life easier for IT, not helping business professionals get work done.To all sizes fit oneSmart phones and tablets, namely iPad, changed all this.&nbsp; From a world of one size fits all, to all sizes fit one.&nbsp; Business professionals now demand access to organizational resources beyond email not just from a device, but from multiple devices.&nbsp; Often devices they purchased themselves, with both work and personal applications on each device.&nbsp;&nbsp; We see this all around us, but here are some of the statistics.TechValidate, an independent research organization, conducted a study of SpringCM Mobile customers, determining that&nbsp;64% of IT organizations already belive they have to address 3 or more devices.Forrester Research noted in a study in February 2012 that&nbsp;52% of business people say they 3 or more devices for work.World turned upside down for ITIn a matter of a few short years, one of the most basic IT strategies has been turned upside down, from a supply_led model with a small number of types of devices, to a consumerized model that offers the potential for a wide range of devices.&nbsp; This of course creates some new challenges for how business content is delivered for sharing, collaboration and driving process on the go, anytime and anywhere.More on this trend, whos leading the charge, Bring Your Own Device (BYOD) initiatives and some interesting patterns in which devices we use when in upcoming posts.</content:encoded>
<category>legal</category>
<pubDate>
Thu, 17 May 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/mobile_devices_one_size_fits_all_to_all_sizes_fit_one</guid>
<dc:date>
2012-May-17T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Brand implementation made easy with a content management system</title>
<link>https://blog.springcm.com/brand_implementation_made_easy</link>
<description>You may have noticed that SpringCM launched a new brand this month. If you you've launched a new brand, you know how exciting it can be, what an awesome way to engage and built excitement across the company, your customers and your partners. It's a valuable process to remind everyone about what you stand for in the market, and why it matters.</description>
<content:encoded>You may have noticed that SpringCM launched a new brand this month. If you you've launched a new brand, you know how exciting it can be, what an awesome way to engage and built excitement across the company, your customers and your partners. It's a valuable process to remind everyone about what you stand for in the market, and why it matters.Of course there's also the pressure to keep all the stakeholders working to deadlines, and anxious moments when you're presenting the branding elements, before a smile breaks out on the face of your CEO, or your peers and teammates wear the new t_shirts proudly. &nbsp;Brand launch made simple&nbsp;The marketing team at SpringCM went through all these moments, but there's one part of the brand launch in particular that was amazingly simple: getting the new brand elements implemented and used by the company.&nbsp; It took ... one click.&nbsp;Within seconds everyone in the company had a new Brand Central set of folders on their Windows PC's and Mac's. Brand Central is the one place for everyone for updated logos, updated Word templates, updated PowerPoint template, updated brand guide, inspiring videos supporting the brand launch.&nbsp; Available at everyone's fingertips, online or offline, on across their many devices, no friction, no hassles. Need to create a new presentation? The beautiful new PowerPoint template is there.&nbsp; Drafting a proposal from home? The right Word template is there. Need to use a logo? It's ready and accessible to insert using whatever your desktop software. Want an icon to support the key point in a presentation? Browse the icon palette from Windows Explorer or Mac Finder.One key to making this work is that the marketing team set Brand Central so files can be viewed, used and shared by anyone in the company, but not deleted or updated. So the right versions of brand elements will be there next month too. No accidental edits or deletions that get used in the future.&nbsp; When new presentations or updated diagrams are added to Brand Central, they're on everyone's desktops in seconds too.As a side note, the old brand elements are gone. They may still be lurking in a few email attachments of course, but overall it now takes a lot of work to use the outdated brand. Now we just have to get that one developer to give up his old logo SpringCM beach ball.For the marketing team, this means we can focus on the next stage of our launch, not worrying about tracking down all elements.The importance of a sync capabilityThe magic to making this all so simple is with a Sync capability, like the one within SpringCM. It has all the standard file sync features, but what sets it apart is that it's designed to support they way organizations like us work. Already one of our favorite features here in Marketing is being able to subscribe everyone or specific groups to content they need to do their jobs, without going through the extra work on everyone's part to subscribe themselves.If you're a marketer and interested in how we used SpringCM to launch our new brand, feel free to reach out to one of us directly or through our web site, and we're happy to share the whole story from planning, though content creation with our agencies, through to launching the brand.</content:encoded>
<category>legal</category>
<pubDate>
Sat, 14 Jul 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/brand_implementation_made_easy</guid>
<dc:date>
2012-Jul-14T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Fueling content marketing: organizing marketing content in 6 steps</title>
<link>https://blog.springcm.com/fueling_content_marketing_organizing_marketing_content_in_6_steps</link>
<description>Ever have to waste time hunting through multiple systems looking for marketing assets to find what you need? Or not find it?&nbsp; Or find different versions of the same marketing asset?&nbsp;According to industry analysts, you can be losing up to 15% of your revenue opportunities, incurring 20% additional agency costs for duplicate and inefficient work, and slowing your time to market by up 400%.&nbsp; Not because you don&rsquo;t have a brilliant campaign, but because the fuel of your content marketing engine, content, isn&rsquo;t organized.</description>
<content:encoded>Ever have to waste time hunting through multiple systems looking for marketing assets to find what you need? Or not find it?&nbsp; Or find different versions of the same marketing asset?&nbsp;According to industry analysts, you can be losing up to 15% of your revenue opportunities, incurring 20% additional agency costs for duplicate and inefficient work, and slowing your time to market by up 400%.&nbsp; Not because you dont have a brilliant campaign, but because the fuel of your content marketing engine, content, isnt organized.Here are 6 steps to get more from your content marketing engine:1. &nbsp;Bring it all togetherThe most common problem we hear from marketers is that brand assets and sales collateral are scattered across any number of siloed systems.&nbsp;&nbsp; A good first place to start then is collecting all of your marketing assets in a single repository.2. &nbsp;Organize marketing content with foldersNow you have it all in one place, how do you organize it so its easy to find and use? &nbsp;Folders are a natural way to organize marketing content, and make it:&nbsp;&nbsp;&nbsp; Easier (and so more likely) that assets will be added in the right place&nbsp;&nbsp;&nbsp; Natural to browse&nbsp;&nbsp;&nbsp; Simpler to manage who can view, edit, share or delete marketing contentWhat should your folder hierarchy for marketing assets be?&nbsp; A good place to start is to match your folder hierarchy to your organizations go_to_market model.&nbsp;Example: Geography&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Industry&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Product3. &nbsp;Organize around all the other ways you go to marketDoes your sales team know what marketing content you have for a specific product? Do you know what customer videos you have?&nbsp; Or how often French versions of sales collateral is used? Attributes are the basis for marketing teams to know the answers to these questions and more.&nbsp; Unlike tags, attributes give you a consistent approach to describing, organizing, managing and delivering marketing content in as many ways as you need to without being limited to your folder structure.Example:&nbsp;&nbsp;&nbsp;&nbsp; Type of content: image, video, case study, logo, image, press release&nbsp;&nbsp;&nbsp; Product: Product name or SKU&nbsp;&nbsp;&nbsp; Title&nbsp;&nbsp;&nbsp; Language&nbsp;&nbsp;&nbsp; Keyword or Twitter hashtags4. Organize around your content lifecycleMarketing content is not a static thing; it has a life cycle. Date and status attributes are critical to helping you manage when content will be available, what content is stuck in approvals, and when it should be pulled.Example:&nbsp;&nbsp;&nbsp;&nbsp; Due date for availability to use&nbsp;&nbsp;&nbsp; Expiration date to review relevance, or pull from active use&nbsp;&nbsp;&nbsp; Status, such as draft, edit, approve, complete, retired5. Use naming conventionsMarketing content exists outside of your repository, so it needs to be easy to identify.&nbsp; Ever had a hard time figuring out what topic a file called 2012_Product_Presentation.pptx on your laptop was about?&nbsp; Or what was in an image called 891132.jpg? Having a consistent approach to naming files makes it easier for sales and marketing teams to know what theyre using.Example: Product_ContentType_Title_Language.ppt6. &nbsp;Don't forget full_text indexingSome times all these ways of organizing dont help when youre looking for a theme or particular phrase.&nbsp; Full_text indexing your (text_based) marketing assets lets you organize by any word or phrase.ConclusionThese six simple steps to organizing your marketing content can go a long way to eliminating those desperate emails looking for a particular marketing asset, make your marketing budget go farther, and make you a hero with your field marketing and sales teams.&nbsp; They also give you the platform to transform how you create, distribute and analyze marketing assets. &nbsp;Image source:&nbsp;Milan Klusacek&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Mon, 08 Oct 2012 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/fueling_content_marketing_organizing_marketing_content_in_6_steps</guid>
<dc:date>
2012-Oct-08T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>2 Reasons Why You Should Turn Off Your Old School Content Management System</title>
<link>https://blog.springcm.com/old_school_content_management_system_turn_it_off</link>
<description>The ability to quickly adapt to change can mean the difference between failure and success. Adapting to change almost always means overcoming new content hazards or clearing the way for new content flows.</description>
<content:encoded>The ability to quickly adapt to change can mean the difference between failure and success. Adapting to change almost always means overcoming new content hazards or clearing the way for new content flows.Legacy Enterprise Content Management (ECM) systems served their purposes.&nbsp;In the 1990s.&nbsp;Times are different in the 21st Century. Work certainly is. Content types have exploded. Teams are on the move, bringing their own devices to work. They aren't bringing their devices for fun (well, most aren't!). They're doing it to get work done.Two Reasons You Should Turn Off Your Old School Content Management&nbsp;Old school ECM systems are just too inflexible, making it difficult to quickly and cost_effectively launch new technology and business initiativeslike a comprehensive mobile strategy or cloud initiative.With their high costs, they require long negotiation cycles. So by the time the systems are implemented, they are outdated. Want to support a new initiative? That requires programming. Want to integrate with another system? That requires programming, too.&nbsp;Let's face it, old_school Content Management Systems just aren't agile enough to meet the needs of the enterprise today.Image source:&nbsp;Earls37a&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Sun, 07 Apr 2013 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/old_school_content_management_system_turn_it_off</guid>
<dc:date>
2013-Apr-07T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Top 5 risks for contract management in Salesforce </title>
<link>https://blog.springcm.com/five_risks_contract_management_in_salesforce</link>
<description>As a Salesforce.com Admin for the last 4 years at SpringCM, I&rsquo;ve seen sales reps and sales teams work on a deal for months. They finally win a deal and then struggle through the contracts process. From contract creation to inserting specials terms, negotiations and challenges with printers, fax machines and formatting; it can be a complete nightmare!My experience has shown that everything that can happen will happen while creating, negotiating and managing a contract.</description>
<content:encoded>As a Salesforce.com Admin for the last 4 years at SpringCM, Ive seen sales reps and sales teams work on a deal for months. They finally win a deal and then struggle through the contracts process. From contract creation to inserting specials terms, negotiations and challenges with printers, fax machines and formatting; it can be a complete nightmare!My experience has shown that everything that can happen will happen while creating, negotiating and managing a contract.Salesforce streamlines the sales process but leaves contract management behindClearly, using Salesforce.com streamlines the sales process. It helps with the steps of the sales cycle, and gives us one system to view accounts, opportunities and deal notes. But the contract management process is still a frustrating cycle of emails, faxes, phone calls and even text messages, as we try to coordinate schedules and approvals and messages, just to get one contract signed. Sales reps, customers and executives can lose their patience, and deals are often stalled and sometimes lost throughout this process.The 5 Salesforce contract management risks&nbsp;to avoidWhy is this so hard? This is what I have found that hinders the process:Multiple truthsWhile working on contracts, sending them around to get approvals and input and negotiating, multiple versions of the truth arise _ ESPECIALLY if you are using email, faxes or a basic file sharing tool between multiple offices and departments. Its virtually impossible to ensure that the most current version is being processed, sent or signed.File StoringFiling cabinets _ both physical and digital (Box or Dropbox) _ are dead ends. How much time have you spent searching for contract information, only to later discover that you dont have the most current version? And storing something online doesnt make it easier to find it or ensure that its accurate.Contract (In)consistencyStoring templates and working from old contract versions is something that sales teams often do. Sales operations teams get contracts back with expired data, graphics or trademarks, and they have to make sure that dates, dollars and information are correct before sending a final version to a client.Data DisastersMisspelled names, incorrect dates, wrong addresses, missing or incomplete information about a product or service, or a carryover of a special term that was used on an old contract, all slow the process and indicate that the sales rep wasnt working with a new and fresh contract.Losing MomentumYou finally get yes from a client after an excruciatingly long deal cycle, work through internal approvals and send it for signature, only to find out that something has changed maybe a merger, acquisition, reorg/ layoff or budget freeze.&nbsp;Does any or all of this sound familiar? Ive been through this firsthand, and I know that there is a better, easier way! We augmented our Salesforce.com instance with content cloud services, and the difference has been night and day. Our company had already made the decision to run our sales process in the cloud, so it only made sense to move the contract management process there as well.The benefits of contract management within SalesforceBy placing contract management within Salesforce.com, we streamlined everything _ contract creation, changes, approvals, signatures, archiving and renewals. We eliminated paper contracts, got rid of file cabinets (both kinds) and increased data accuracy. We gave reps easy access to every contract for a given customer, so they spend much less time generating, updating and negotiating contracts and close deals faster and have more time to sell. And we provide them the most up_to_date corporate blessed contracts, so they have the fastest route to a successful close.The reps are happier, but Im the happiest!As a Salesforce.com Admin, you have a unique perspective of the sales and contracts management process, and you can use your influence to improve them. You owe it to yourself!Image Source:&nbsp;istarman&nbsp;on Flickr &nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Mon, 14 Oct 2013 21:16:00 GMT
</pubDate>
<guid>https://blog.springcm.com/five_risks_contract_management_in_salesforce</guid>
<dc:date>
2013-Oct-14T21:16:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title> A letter from SpringCM's CEO: The time is now</title>
<link>https://blog.springcm.com/the_time_is_now</link>
<description>I&rsquo;m excited to take the reigns today as SpringCM&rsquo;s CEO. As one of the company&rsquo;s cofounders, it&rsquo;s been amazing to watch us grow from an idea to where we are today. &nbsp;With that experience in mind, I am happy to report that the demand for Content Cloud Services has never been greater. The explosion of cloud, mobile, and social has ushered in a business renaissance, forever changing how work gets done.&nbsp;</description>
<content:encoded>Im excited to take the reigns today as SpringCMs CEO. As one of the companys cofounders, its been amazing to watch us grow from an idea to where we are today. &nbsp;With that experience in mind, I am happy to report that the demand for Content Cloud Services has never been greater. The explosion of cloud, mobile, and social has ushered in a business renaissance, forever changing how work gets done.&nbsp;Our customers understand thisand they understand the critical role content plays in each of these strategic investments. In addition, depending on which analyst numbers you reference, theres anywhere from $10 to $20 billion in old school enterprise content management systems companies are getting ready to replace.These are exciting times for SpringCM, where we are seeing:The greatest period of innovation in our history:&nbsp;Our team has added a wide range of new features to make it easier and faster to put content to work, securely and from every device you use to do work.The greatest customerswith more joining every day:&nbsp;Whether theyre looking to streamline sales contracts or get a handle on key marketing materials, enterprises and government agencies are turning to us, joining the likes of AthenaHealth, Facebook, NCR, Office Depot, the U.S. Department of Energy, and more.The greatest partners: Were committed to expanding our technology and channel partnerships to put SpringCM into the hands of more people in more ways than ever before through partners like salesforce.com, Oracle, EchoSign, Privia, and more. If youre going to this years Dreamforce event, youll see what I mean!Finally, I want to recognize our tremendous team. Every day I have the privilege of working with a talented group of people who know what it takes to put content to work to solve complex, thorny problems that stand in the way of success. And its a fun team to work with. They deserve much of the credit for making SpringCM the company we are today.Ill continue to stay in touch with our community through the SpringCM blog, Twitter (&nbsp;@gbuchholz) and a growing number of events were participating in. You can always contact me directly at&nbsp;[email protected] youre a SpringCM customer or partner, thanks for your trust and business. If youre evaluating a cloud_based content management systemand youve found other options lackingwed love to hear from you.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 22 Oct 2013 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/the_time_is_now</guid>
<dc:date>
2013-Oct-22T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>8 Years and Counting: SpringCM Named to KMWorld 100 Companies That Matter</title>
<link>https://blog.springcm.com/8_years_and_counting_springcm_named_to_kmworld_100_companies_that_matter</link>
<description>KMWorld&nbsp;Magazine just announced their &ldquo;100 Companies that Matter in Knowledge Management&rdquo; and we made the list for the eighth consecutive year.&nbsp;We love it when our&nbsp;customers&nbsp;tell us how SpringCM has improved their business. It&rsquo;s also fantastic validation when a third party recognizes us&mdash;especially when it happens eight years in a row! KMWorld generates the elite list through a year_long evaluation by a team of judges comprised of colleagues, analysts, system integrators, theorists, practitioners and select users that identify companies providing true solutions to real and profound problems and challenges.</description>
<content:encoded>KMWorld&nbsp;Magazine just announced their 100 Companies that Matter in Knowledge Management and we made the list for the eighth consecutive year.&nbsp;We love it when our&nbsp;customers&nbsp;tell us how SpringCM has improved their business. Its also fantastic validation when a third party recognizes usespecially when it happens eight years in a row! KMWorld generates the elite list through a year_long evaluation by a team of judges comprised of colleagues, analysts, system integrators, theorists, practitioners and select users that identify companies providing true solutions to real and profound problems and challenges.SpringCMs inclusion is based in large part on our ability to anticipate customer needs and develop smart, innovative solutions that solve thorny content problems. Looking for a great example? Check out how we help Salesforce customers eliminate the back_and_forth that slows down&nbsp;contracts&nbsp;and other key deal_related content necessary to go from won to done.Were flattered that KMWorld recognizes the contributions were making in the&nbsp;cloud content management&nbsp;arena. Content mattersand it really matters when youre looking to increase revenue, cut costs, mitigate risk, and engage customers and employees. Well continue to developproducts&nbsp;that transform the way people find, share, collaborate and work with content. And we look forward to earning another spot on the 100 Companies that Matter list next year.Interested in learning how Facebook, Google, NCR, OfficeDepot, PDI Nice_pak and others #SpringIt?&nbsp;&nbsp;Wed love to hear from you!</content:encoded>
<category>legal</category>
<pubDate>
Wed, 26 Feb 2014 22:07:00 GMT
</pubDate>
<guid>https://blog.springcm.com/8_years_and_counting_springcm_named_to_kmworld_100_companies_that_matter</guid>
<dc:date>
2014-Feb-26T22:07:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How content cloud services can support complex business needs</title>
<link>https://blog.springcm.com/welcome_to_the_party_microsoft</link>
<description>SpringCM is part of a massive market we call Content Cloud Services. These are software applications that help people at home and at work store their content in the cloud. If you&rsquo;re using iCloud to store music and photos, you&rsquo;re using the consumer version of Content Cloud Services.Not surprisingly, business users have more complex needs than consumers. Massive amounts of business content remains trapped in shared drives, email attachments, laptops, and file cabinets across offices and geographies. And, in spite of modern technology, much of it still arrives via snail mail and fax. Getting your arms around your business content first entails getting the paper off the floor, as one of our customers succinctly put it. And that&rsquo;s not always as easy as it sounds.</description>
<content:encoded>SpringCM is part of a massive market we call Content Cloud Services. These are software applications that help people at home and at work store their content in the cloud. If youre using iCloud to store music and photos, youre using the consumer version of Content Cloud Services.Not surprisingly, business users have more complex needs than consumers. Massive amounts of business content remains trapped in shared drives, email attachments, laptops, and file cabinets across offices and geographies. And, in spite of modern technology, much of it still arrives via snail mail and fax. Getting your arms around your business content first entails getting the paper off the floor, as one of our customers succinctly put it. And thats not always as easy as it sounds.Hence, the mounting interest in cloud file storage. Cloud file storage may be the best funded niche in technology. Two companies aloneDropbox and Boxhave raised hundreds of millions of dollars to take their wares to market. Were in that business, too, although were an animal of a different stripe. And, while we havent raised as much money as the box twins, weve raised enough to deliver the class of services required at the enterprise level to meet the needs of industry giants like NCR, Facebook, and Google.Now Microsoft has entered the fray.&nbsp;They announced this week they are selling cloud storage directly to businesses.&nbsp;A market shake up? Hardly. Storing files in the cloud is table stakes. Microsofts entry validates our market and hastens the commoditization of cloud file storage.It also gives us a boostunintended Im sure. By giving our market more visibility, they shine the light on those of us, like SpringCM, who do so much moreand do it so much better.Let me net it out. SpringCM addresses content from a business perspective, not only where you put it and how you share it, but who can see it, when, where it needs to be routed, who needs to approve it, and what gets done with it next. SpringCM manages content of all formsincluding media files, paper, and faxesand automatically triggers workflows. Weve had customers ask us, Can you even automate a process as complex as ours? The answer is, You bet.So welcome, Microsoft! Shine your bright light on us!Image Source:&nbsp;IvanWalsh.com&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Mon, 10 Mar 2014 20:58:00 GMT
</pubDate>
<guid>https://blog.springcm.com/welcome_to_the_party_microsoft</guid>
<dc:date>
2014-Mar-10T20:58:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title> A letter from SpringCM's CEO: Put content to work</title>
<link>https://blog.springcm.com/ready_for_the_enterprise_we_were_born_ready</link>
<description>The recent press generated by Box and Dropbox&mdash;around the money they&rsquo;ve raised and the features they&rsquo;ve released&mdash;has surfaced a number of discussions, especially around just what &ldquo;ready for the enterprise&rdquo; means. And the general conclusion is that &ldquo;ready for the enterprise&rdquo; happens in degrees to most of the companies in the space we compete for business.Note the emphasis on &ldquo;most.&rdquo; We&rsquo;ve got a different story. And I&rsquo;ll get to it in a minute.</description>
<content:encoded>The recent press generated by Box and Dropboxaround the money theyve raised and the features theyve releasedhas surfaced a number of discussions, especially around just what ready for the enterprise means. And the general conclusion is that ready for the enterprise happens in degrees to most of the companies in the space we compete for business.Note the emphasis on most. Weve got a different story. And Ill get to it in a minute.Box and Dropbox are great companies and they have many fans. But their roots are in basic file storage and sharing. And as hard as they are scrambling to be ready for the enterprise, these things take time. As predicted in&nbsp;a recent Tech Crunch article, this is a battle that will be playing out over the next 36 months as multiple vendors, including SpringCM, fight for the hearts and minds of enterprise users and their IT administrators.The reason this is a battle is that there are BIG business outcomes riding on itnot just for the vendors who deliver content management and collaboration software (which by the way is the largest category of enterprise software today) but for the companies who are making the transition to the cloud. Increasingly companies understand the huge business impact of not only storing and sharing content in the cloud but putting it to work by automating processes (which, along with our&nbsp;Salesforce integration, is our sweet spot).Weve got a ton of ROI examples that demonstrate how SpringCM lowers costs and increases revenues, ranging from NCR, who reduced the time to execute contracts (and, therefore, time to revenue) from 3 weeks to 3 days, to Village Green, who reduced their annual FedEx bill by a quarter million dollars.Today we announced that weve received&nbsp;$18 million in funding&nbsp;to fuel the continued growth of our company. This comes on the heels of the largest revenue year in SpringCMs history. We also announced what were going to use it for, which is to dramatically scale our sales and marketing efforts to address the growing demand from enterprises for cloud services.Why sales and marketing? While we continue to invest in expanding our platforms features and functionality, we have the good fortune of already being enterprise ready. Our roots are in enterprise content management, and our focus has been on the stringent demands of enterprise IT from day one. Weve spent over $50 million and more than 7 years building a content platform that is enterprise ready. And we have nearly 400 enterprises exercising it hard to drive BIG business outcomes.And now, we get to let the rest of the world know.Image Source:&nbsp;Avi&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Wed, 16 Apr 2014 20:47:00 GMT
</pubDate>
<guid>https://blog.springcm.com/ready_for_the_enterprise_we_were_born_ready</guid>
<dc:date>
2014-Apr-16T20:47:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How a large insurance company automated contracts for 12,000 dentists</title>
<link>https://blog.springcm.com/this_isnt_our_first_rodeo</link>
<description>Cloud store and share is NOT content managementSpringCM is always getting put in a &ldquo;box,&rdquo; so to speak, lumped together with other file sharing sites. And, frankly, it&rsquo;s frustrating to see blank looks when I try to explain that a cloud file sharing and storage solution is NOT a content management solution.&nbsp; Until you can truly automate a business process, resulting in faster time to revenue, lower costs, and increased compliance, you are just moving content from one repository to another.As my chief marketing officer is always saying, our customers tell our story best. And he&rsquo;s right. If you really want to know SpringCM, if you really want to understand how we&rsquo;re an animal of a very different stripe, you have to&nbsp;listen to the customer webcast&nbsp;aired last week. It will blow you away.</description>
<content:encoded>Cloud store and share is NOT content managementSpringCM is always getting put in a box, so to speak, lumped together with other file sharing sites. And, frankly, its frustrating to see blank looks when I try to explain that a cloud file sharing and storage solution is NOT a content management solution.&nbsp; Until you can truly automate a business process, resulting in faster time to revenue, lower costs, and increased compliance, you are just moving content from one repository to another.As my chief marketing officer is always saying, our customers tell our story best. And hes right. If you really want to know SpringCM, if you really want to understand how were an animal of a very different stripe, you have to&nbsp;listen to the customer webcast&nbsp;aired last week. It will blow you away.Out of the storage box and into the content cloudLife &amp; Specialty Ventures is a joint venture of multiple Blue Cross Blue Shield plans that focuses on specialty insurance products, in this case dental. The Blues were managing 12,000 dentists in four states and had their dental provider data spread across 15 systems. As Lee Ann Mitchell, Director of LSVs Dental Network, says in the webcast, Thats no way to run a rodeo.Then came a huge, impending event. Because they were putting a new claims processing system in place, they had to renew contracts&nbsp;with all 12,000 dentistsone dentist at a timea daunting, paper_intensive task.They rose to that task and more.They integrated a fistful of best in class (their words) cloud technologies with SpringCM and Salesforce at the coreSpringCM for content_intensive processes and Salesforce for managing provider relationships.They automated the contracting process (SpringCM &gt; mailhouse &gt; dentists &gt; signed contract scanned back into SpringCM).They created an opportunity database in Salesforce, where SpringCM dynamically delivers the correct contract depending on the specialty of the dentist theyre signing up.Theyre establishing a Center of Excellence for credentialing, another paper_intensive process theyre automating on SpringCM.Its really an amazing example of business acumen combined with hard work and, lets face it, courage. It was their first journey to the cloud, and they were definitely getting out of their comfort zone.But, boy, what a payoff.Image source: z287marc on Flickr&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Thu, 22 May 2014 18:27:00 GMT
</pubDate>
<guid>https://blog.springcm.com/this_isnt_our_first_rodeo</guid>
<dc:date>
2014-May-22T18:27:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>A brief history of "the cloud"</title>
<link>https://blog.springcm.com/will_the_real_father_please_stand_up</link>
<description>More than a great, big filing cabinet in the sky&nbsp;Remember when &ldquo;in the cloud&rdquo; referred only to rain or angels? Wasn&rsquo;t that long ago. As our Aunt Sue says: &ldquo;You mean there&rsquo;s some mysterious place where everything is stored instead of file cabinets?&rdquo; On this Father&rsquo;s Day, we salute the people who got things rolling.The idea of &ldquo;the cloud&rdquo; actually dates to the 1960s when some tech gurus thought computation could one day be a public utility. &nbsp;They used a cloud icon to describe it in flowcharts but did not use the term &ldquo;cloud.&rdquo; So as Maury Povich would say: 1960s, you are not the father!</description>
<content:encoded>More than a great, big filing cabinet in the sky&nbsp;Remember when in the cloud referred only to rain or angels? Wasnt that long ago. As our Aunt Sue says: You mean theres some mysterious place where everything is stored instead of file cabinets? On this Fathers Day, we salute the people who got things rolling.The idea of the cloud actually dates to the 1960s when some tech gurus thought computation could one day be a public utility. &nbsp;They used a cloud icon to describe it in flowcharts but did not use the term cloud. So as Maury Povich would say: 1960s, you are not the father!Enter George Favaloro of Compaq and Sean OSullivan of NetCentric. Favaloro has 1996 notes about Internet Solutions Division Strategy for "Cloud Computing"&nbsp;and OSullivan the same year noted, Cloud Computing: The Cloud has no Borders.By 1997, Professor Ramnath K. Chellappa was the first to use the term academically and for the public at a conference in Dallas where he described the evolution from a main_frame_based structure to a network_based architecture.In 2006 Googles Eric Schmidt used the term at a conference, making the word mainstream within businesses and to the general public. But just because you make a kid popular, doesnt make you the father, sorry Eric.The cloud as a competitive edge&nbsp;While we may never know the real father of the cloud, theres one thing we do know: the cloud is making a profound transformation on the way companies run their business. Organizations looking to gain a competitive edge are rapidly shifting their customer management, financial, HR and other&nbsp;key business apps to the cloud.And now, those companies are moving critical business content to the cloud to make it easier to find,&nbsp;share and work with content. Were honored that over 400 leading brands and government agencies now&nbsp;#SpringIt.To all the dads and moms whove made the cloud a reality, thank you.Image Source: Horia Varlan on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Fri, 13 Jun 2014 18:50:00 GMT
</pubDate>
<guid>https://blog.springcm.com/will_the_real_father_please_stand_up</guid>
<dc:date>
2014-Jun-13T18:50:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How creative teams are using the cloud to look awesome!</title>
<link>https://blog.springcm.com/the_easiest_way_to_look_awesome</link>
<description>No, not the Tory Burch flats or the polo that makes clear you&rsquo;ve got a gym membership. You will look even better at work when you get stuff done faster than anyone. Here&rsquo;s how I did that, and how you can too.If you&rsquo;ve got someone working remotely, see if this sounds familiar: I was one of several designers in a global company, sitting in multiple time zones, in regular contact with colleagues in Europe, Asia, and the Middle East.</description>
<content:encoded>No, not the Tory Burch flats or the polo that makes clear youve got a gym membership. You will look even better at work when you get stuff done faster than anyone. Heres how I did that, and how you can too.If youve got someone working remotely, see if this sounds familiar: I was one of several designers in a global company, sitting in multiple time zones, in regular contact with colleagues in Europe, Asia, and the Middle East.Imagine the hassle of trying to maintain access to our files on one remote server located in the office of a fellow designer, so (surprise!) he had few complaints. He was unaffected by the inconvenience of waiting forever for an InDesign file to open off of the server. We quickly learned to not even try opening large files. How sad is that?The IT team made adjustments to how we accessed the server, but that opened the door to potential file version conflicts. Multiple designers could be collaborating on the same file, but the last version saved would trump all others. Managing this process resembled elephants dancing.Those, and more pain points, could have been greatly alleviated, actually avoided, by implementing&nbsp;SpringCM enterprise solutions. Since becoming the companys designer, I learned that creative teams thrive productively in the cloud with SpringCMs desktop&nbsp;Sync feature.Now, I can work in the office, on the road or at home without worrying about getting trampled. Our&nbsp;SpringCM mobile apps&nbsp;for iOs and Android devices allow me to send drafts of presentations or mock_ups while Im in transit. So thanks to the content cloud services of SpringCM and the creative apps of Adobe Creative Cloud Im working faster and having more fun. How awesome is that?Image source: hikingartist on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Tue, 17 Jun 2014 19:27:00 GMT
</pubDate>
<guid>https://blog.springcm.com/the_easiest_way_to_look_awesome</guid>
<dc:date>
2014-Jun-17T19:27:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>SpringCM customer story: teaming with Salesforce again for National Seminars Training</title>
<link>https://blog.springcm.com/springcm_and_salesforce_national_seminars_training</link>
<description>Tell us about your journey to the cloudOne of the best parts of working at SpringCM? Our customers! I love learning about their journey to the cloud and how we&rsquo;re helping them with business transformation. National Seminars Training is one of our newest customers, and they are a great example of a company doing big things with&nbsp;SpringCM and salesforce.com. They selected salesforce.com to create a 360 degree view of the customer, and they selected SpringCM to get the right content, to the right customer, at the right time. Content management at its best.</description>
<content:encoded>Tell us about your journey to the cloudOne of the best parts of working at SpringCM? Our customers! I love learning about their journey to the cloud and how were helping them with business transformation. National Seminars Training is one of our newest customers, and they are a great example of a company doing big things with&nbsp;SpringCM and salesforce.com. They selected salesforce.com to create a 360 degree view of the customer, and they selected SpringCM to get the right content, to the right customer, at the right time. Content management at its best.What makes a content company?National Seminars Training is focused on meeting the continuing education needs of adult professionals in all industries and professions. How to Legally Terminate Employees With Attitude Problems, Assertiveness Skills for Business Professionals, and Developing Your Emotional Intelligence are just a few upcoming online seminars. They offer over 900 courses backed up with 35 terabytes of content for seminars, including marketing assets for every course. National Seminars is, in the words of their CTO Bret Rhodus, a content company!Content hazards are keeping companies from hitting goalsWhat I learned from Bret is similar to what I hear from other&nbsp;SpringCM customers: content is trapped in multiple places, it takes too long to find and tribal knowledge doesnt scale. These are all great examples of&nbsp;content hazards&nbsp;that slow a companys goals around increasing revenues, lowering costs, mitigating risk, engaging employees and delighting customers and partners.National Seminars is celebrating their 30th anniversary, an amazing milestone in any business. Ill close with another great nugget from Bret Content is king here. Thats where SpringCM comes in. What were doing today is all about the next 30 years.Are you a Salesforce customer?If you want to hear more about Bret and National Seminars' journey, come join us at the Midwest Dreamin' event on July 10 in our hometown of Chicago. Midwest Dreamin is organized by a number of regional salesforce.com user group leaders, and were proud to be the lead sponsor. Bret will join other SpringCM customers on a peer discussion panel about the power of embedding a content cloud in Salesforce. For more information please visit&nbsp;http://midwestdreamin.com.Ready to learn more? Check out all of&nbsp;The Goods! All SpringCM resources, all in one place!Image Source:&nbsp; Kim S&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Mon, 30 Jun 2014 20:27:00 GMT
</pubDate>
<guid>https://blog.springcm.com/springcm_and_salesforce_national_seminars_training</guid>
<dc:date>
2014-Jun-30T20:27:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>SpringCM customer stories: secrets to getting stronger ROI on salesforce revealed</title>
<link>https://blog.springcm.com/secrets_to_customer_success_revealed_at_navy_pier</link>
<description>If you weren&rsquo;t at Chicago&rsquo;s Navy Pier for the recent (and spectacular) Salesforce Midwest Dreamin&rsquo;, you&rsquo;re in luck: We&rsquo;ve got some highlights for you.&nbsp;SpringCM&rsquo;s Karry Kleeman hosted a customer success panel with leading companies sharing insight into how and why they, with their enterprise teams, embedded content clouds within Salesforce to help them tackle big thorny issues &ndash; and get even stronger ROI on their Salesforce investment.&nbsp;</description>
<content:encoded>If you werent at Chicagos Navy Pier for the recent (and spectacular) Salesforce Midwest Dreamin, youre in luck: Weve got some highlights for you.&nbsp;SpringCMs Karry Kleeman hosted a customer success panel with leading companies sharing insight into how and why they, with their enterprise teams, embedded content clouds within Salesforce to help them tackle big thorny issues and get even stronger ROI on their Salesforce investment.&nbsp;Our three favorite customer success stories?Pam Volk, Business Continuity Manager at RW Baird in Milwaukee, WI:Pam had been using Salesforce for three years but had always been in search of a tool that would be able to automate workflow and manage content. &nbsp;Pam added, The data you have may be informational but no one knows its there! With the right cloud solution, you save time. And if you can save your company time and resources, you can be a rockstar too.Karen Hodson, Senior Manager at Ellucian in Fairfax, VA:Karen said with previous systems she had worked with, the API was just not enough. You need to have a stronger user interface and&nbsp;true&nbsp;integration with Salesforce. Karen understands that, its not just about storing content, its about using it. This is why one of Karens favorite things about using SpringCM is the&nbsp;mobile app&nbsp;__ She loves the ability to pick up my phone and access it and share it, all mobily and globally.Bret Rhodus, CMO/CTO at National Seminars Training in Kansas City:Bret realized that his company had 30 years of&nbsp;content needing attention. We had 900 training courses I didnt even know about on top of videos and webinars. They went on an ECM hunt to get it in order. After implementing SpringCM, Now we actually have a system almost acting like a traditional librarian the content is with the right person at the right time.ConclusionEmbedding content clouds, like SpringCM, within Salesforce extends your investment in the Salesforce platform. The proper tool gives you a secure content cloud within Salesforce to centralize, organize, and share content both inside and outside your organization.</content:encoded>
<category>legal</category>
<pubDate>
Wed, 23 Jul 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/secrets_to_customer_success_revealed_at_navy_pier</guid>
<dc:date>
2014-Jul-23T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>SpringCM Customer Story: Helping POPSUGAR with Contract Management</title>
<link>https://blog.springcm.com/popsugar_contract_management</link>
<description>SpringCM has some very cool customers, and&nbsp;POPSUGAR&nbsp;is one of the coolest. The popular site features breaking news, photos, videos and event recaps on today's most popular celebrities. Looking for can&rsquo;t miss celebrity pics? Check. Can&rsquo;t wait to see Prince Harry&rsquo;s latest dance moves from a charity event in Chile? Got it. Wondering what female mega_star beat out Oprah as the top_earning star of the year? POPSUGAR is on it!</description>
<content:encoded>SpringCM has some very cool customers, and&nbsp;POPSUGAR&nbsp;is one of the coolest. The popular site features breaking news, photos, videos and event recaps on today's most popular celebrities. Looking for cant miss celebrity pics? Check. Cant wait to see Prince Harrys latest dance moves from a charity event in Chile? Got it. Wondering what female mega_star beat out Oprah as the top_earning star of the year? POPSUGAR is on it!POPSUGAR's Contract Management ChallengeNot surprisingly, POPSUGAR handles a lot of content.&nbsp;For example, POPSUGAR manages hundreds of contracts and agreements each month including NDAs, video releases, talent agreements and third_party vendor contracts. Like many SpringCM customers, POPSUGAR is growing quickly, and they realized they needed a more efficient&nbsp;contract management solution.Prior to SpringCM, the team would initiate an agreement, work out the specifics, and manage legal approvalall with a very manual process. This time_consuming approach involved a lot of back_and_forth and wasnt very efficient. As Sean Hendricks, POPSUGARS IT manager, shared with me, Our objective was to give the team the ability to download approved agreement templates, share those with third_parties and quickly handle edits.POPSUGAR's Contract Management SolutionEarlier this year, POPSUGAR deployed SpringCM to meet that objective. Now, the company has a more efficient&nbsp;business process&nbsp;that allows users to quickly and easily access what they need. All agreements are now stored in a single, secure and searchable cloud repository.&nbsp;Security&nbsp;is also a major requirement for POPSUGAR, and with SpringCM theyre able to ensure the right person sees the right content at the right time.For POPSUGAR, theyre now providing a better experience to their team and third parties they regularly work with. And they have a solution in SpringCM that can scale as their business continues to grow. Thats something any company can appreciate.Now, if youd excuse me, I need to catch up on the latest </content:encoded>
<category>legal</category>
<pubDate>
Wed, 23 Jul 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/popsugar_contract_management</guid>
<dc:date>
2014-Jul-23T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>What Will Cloud Computing Be Like One Year From Today?</title>
<link>https://blog.springcm.com/future_of_cloud_computing</link>
<description>Have you seen the&nbsp;North Bridge Future of Cloud Computing Survey? The annual survey, completed in partnership with Gigaom Research and 72 collaborators including SpringCM, showed a dramatic increase in the number of companies that have adopted software_as_a_service (SaaS), including SpringCM, Salesforce and Workday. How dramatic? The survey reveals adoption rose from just 13 percent in 2011 to 74 percent today.</description>
<content:encoded>Have you seen the&nbsp;North Bridge Future of Cloud Computing Survey? The annual survey, completed in partnership with Gigaom Research and 72 collaborators including SpringCM, showed a dramatic increase in the number of companies that have adopted software_as_a_service (SaaS), including SpringCM, Salesforce and Workday. How dramatic? The survey reveals adoption rose from just 13 percent in 2011 to 74 percent today.Security: A major concern in&nbsp;moving to the cloud.However, theres another finding that caught my eye. Nearly 50% of respondents cited security as one of their major concerns in&nbsp;moving to the cloud. In fact, a report unveiled at the&nbsp;RSA Conference&nbsp;earlier this year showed a similar finding. In that report, 54% of organizations&nbsp;cited security concerns as their biggest barrier to adopting cloud services.That concern, by the way, is merited. Most businesses consider contracts, partner agreements, sales presentations and other enterprise content as intellectual property to be protected at all costs. Yet every day, employees unwittingly put that content at risk by storing it in consumer cloud storage services like Dropbox.And its not just consumer cloud services creating security headaches. Employees stuff content in multiple unsecured places (hard drives, shared drives, and thumb drives not to mention mobile devices they use outside the office). Even companies who have allegedly "standardized" on SharePoint have challenges with employees who pull content out of SharePoint to work with that content. But can you really blame employees? They are doing so out of sheer necessity, because their companies are not making it easy for them to do the right thing.Why are employees going rogue with content?Because content is almost always attached to business processes. Ultimately, you have to do more than just store and share content you have to&nbsp;put content to work. And that's a really hard problem to solve. You could argue that its the big reason why content is the last big enterprise category to move to the cloud.ConclusionIll close with another bright spot from the North Bridge survey: 49% of respondents are using the cloud for revenue_generating activities. If youre not using the cloud that way out of security concerns, lets talk. SpringCM provides robust&nbsp;security&nbsp;to help your IT group relax with a user experience your teams will fall in love with.I believe that next years North Bridge survey will show that companies are making even more aggressive moves to the cloud, in part because companies like SpringCM understand&nbsp;enterprise_class security needs, and how to help companies get things done. Thats when adoption becomes not just acceptance, but total commitment.&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Thu, 24 Jul 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/future_of_cloud_computing</guid>
<dc:date>
2014-Jul-24T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Sales Contract Chaos _ 4 Reasons Why Managing Sales Contracts Is Hard</title>
<link>https://blog.springcm.com/sales_contract_chaos_4_reasons_why_managing_sales_contracts_is_hard</link>
<description>You are head of sales for a B2B company.&nbsp; Your marketing team is managing the lead process in salesforce.com or another CRM, your sales team converted a lead to an opportunity, and worked the account plan process just the way you drew it up.&nbsp;&nbsp; Great news, you&rsquo;ve been selected!&nbsp; Now it&rsquo;s time to turn intent into revenue by creating a contract that the prospect and your company agree on, and get it signed.</description>
<content:encoded>You are head of sales for a B2B company.&nbsp; Your marketing team is managing the lead process in salesforce.com or another CRM, your sales team converted a lead to an opportunity, and worked the account plan process just the way you drew it up.&nbsp;&nbsp; Great news, youve been selected!&nbsp; Now its time to turn intent into revenue by creating a contract that the prospect and your company agree on, and get it signed.Ironically, right when youre closest to revenue is often the part that can be the most chaotic.&nbsp; Why?&nbsp; Here are 4 reasons to consider:Contracts are a Big Part of the Sales Cycle.&nbsp; In theory, the hard work is done, but according to Aberdeen,&nbsp;sales contracts&nbsp;can be up to 18% of the total effort in a sales cycle, particularly for industries such as high tech, financial services and insurance, and other industries with negotiated agreements.&nbsp; In industries such as consulting services, business services, travel and entertainment, and media, the contract is really an order form where the scope and nature of the products and services are not standard, but are defined in the agreement.&nbsp;There may be multiple agreements involved a software license and statement of work for services, or a product sales agreement and installation and services agreementeach of which needs to be created, reviewed, approved and signed, and all of which must work together.&nbsp; So while contracts are a big part of the process, typical marketing and sales processesand the CRM systems that support themdont reflect this and you run into sales contract process challenges. &nbsp;More Players.&nbsp;&nbsp;The sales contract process brings a new cast of players into the process.&nbsp; Sales operations now may be front and center on getting a completed contract to the prospect.&nbsp; Legal may also play a role in negotiated agreements.&nbsp; Engineering, product management or customer service may also need to get involved if non_standard products, services, or terms are involved.&nbsp; This means bigger challenges in organizing, prioritizing and collaborating to get the right agreements completed, to the prospect and signed.The Prospect.&nbsp; More prospect stakeholders may be involved, whose incentives, priorities and availability will not coincide with yours, further complicating managing the process.&nbsp; Most sales executives have experiences where missing a window of time with a procurement manager means a delay of weeks or more.Your CRM Doesn't Understand Documents.&nbsp; Contracts are documents.&nbsp; CRM applications like salesforce.com may have some ability to store and share documents, but they're more about transactions, and dont typically manage&nbsp;documents&nbsp;and&nbsp;document workflows.&nbsp; Also, many of the players at this stage like the prospect, legal and engineering are likely not users of your CRM.&nbsp; So while your process and coordination challenges have gone up, your CRM probably doesnt help you managing the contracts themselves, and doesnt connect you effectively with all the stakeholders.You may have other reasons in your organization, but these are some of the main reasons we hear from sales executives why managing the last steps of the sales cycle can be contract chaos, creating issues such as&nbsp;lack of contract visibility, reduced&nbsp;sales productivity&nbsp;and increased compliance issues. For more on this topic, check out&nbsp;It's Quarter_End _ Do&nbsp;You Know Where Your Sales Contracts Are? </content:encoded>
<category>legal</category>
<pubDate>
Wed, 13 Aug 2014 22:10:00 GMT
</pubDate>
<guid>https://blog.springcm.com/sales_contract_chaos_4_reasons_why_managing_sales_contracts_is_hard</guid>
<dc:date>
2014-Aug-13T22:10:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Contract management statistics for sales leaders</title>
<link>https://blog.springcm.com/contract_management_statistics_for_sales_leaders</link>
<description>Contract Management is often confused with solutions that simply generate documents. A full_featured contract management solution minimizes risk while automating and streamlining each step of a contract&rsquo;s life for both inbound and outbound transactions.Chances are if you&rsquo;re worried about your contract workflow, then you&rsquo;re probably too busy to casually read analyst reports or industry research. Luckily, Aberdeen or Forrester generally author our beach reads.</description>
<content:encoded>Contract Management is often confused with solutions that simply generate documents. A full_featured contract management solution minimizes risk while automating and streamlining each step of a contracts life for both inbound and outbound transactions.Chances are if youre worried about your contract workflow, then youre probably too busy to casually read analyst reports or industry research. Luckily, Aberdeen or Forrester generally author our beach reads.Contract management statsBelow are a few interesting stats to help you better understand how investing in a contract management solution can save money, delight prospective and current customers and support company business goals.Contract approval time drops an average of 82% with the use of a Contract Management solution (Source: Aberdeen)&nbsp;Tweet this stat.90% renewal rates were seen by companies using Contract Lifecycle Management solutions (Source: Aberdeen)&nbsp;Tweet this stat.3.4 Weeks Average amount of time it takes to create and approve a contract (Source: Forrester)Tweet this stat.20,000_40,000 Average number of contracts per organization (Source: Price Waterhouse Coopers)Tweet this stat.85% of companies are using manual processes to manage sales contracts (Source: Aberdeen).&nbsp;Tweet this stat.Based on these stats, Contract Lifecycle Management is an investment that can add a lot of value to your company.What to look for in a contract management solutionSome of you might already understand the value of contract management solutions, but how do you know which solution is right for your companys needs? Here are some key differentiators that set true contract management solutions apart from contract generation software.Sales Team ProductivityA full_featured Contract Management (CM) solution will save your sales team time beyond contract generation. Everyone knows theres more to closing a deal than sending off a document with a dotted line. The best CM solutions will provide all relevant parties _ sales, legal and prospective client _ with real_time tracking of important documents. This way, your sales team spends more time selling and less time chasing down documents.Increased VisibilityWhether youre working in simple transactions or complex, highly negotiated contracts, any changes need to be tracked. This especially saves your legal team time, as tracked changes eliminate the need to do side_by_side comparisons, as is common in more manual contract management processes. Beyond that, a full_featured CM should provide leadership with insight into all contracts in progress. They can use this perspective to identify bottlenecks at a high level and make tactical decisions to ensure revenue continues to grow.Risk ReductionThe executive benefit to having a full_featured contract management solution cannot be overstated. Not only are you able to provide more selling time back to your sales team, and keep a close eye on contracts in play, but youre able to ensure that risks associated unauthorized or unregulated contracts are mitigated.The Contract Lifecycle Management (CLM) Process can be complex with plenty of places for contracts to hide. &nbsp;Even simple processes can be difficult to track. &nbsp;Many contracts require more than a single round trip, and more steps mean longer sales cycle and productivity killers. &nbsp;Whether youre in sales, legal or an executive leader, youll be more productive and more profitable leveraging a contract management solution.</content:encoded>
<category>legal</category>
<pubDate>
Sun, 07 Sep 2014 21:24:00 GMT
</pubDate>
<guid>https://blog.springcm.com/contract_management_statistics_for_sales_leaders</guid>
<dc:date>
2014-Sep-07T21:24:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Contract Management: 3 ways to add value to Salesforce</title>
<link>https://blog.springcm.com/contract_management_3_ways_to_add_value_to_salesforce</link>
<description>There are plenty of important documents in the cloud today. Businesses continue to turn to the cloud to solve complex process pains, and contracts lifecycle management is moving to the forefront.</description>
<content:encoded>There are plenty of important documents in the cloud today. Businesses continue to turn to the cloud to solve complex process pains, and contracts lifecycle management is moving to the forefront.Unlike some content pains, the&nbsp;contract process&nbsp;is unique. It includes both internal and external teams, which requires any solution youre using to be flexible. &nbsp;Salesforce is the dominant CRM solution, used by more than 200,000 companies to manage customer data. And while they are excellent at handling customer data, their platform isnt the best for contract management.According to a recent&nbsp;report from Nucleus Research, here are some key areas where contract management solutions add value to Salesforce.1. Sales Reps know where contracts areNothing kills productivity like a salesperson hunting for&nbsp;approvals and signatures. Instead of allowing pending deals to distract from deals still in the pipeline, invest in a CM solution that provides insight into contract status, so theres no more mystery and sales teams can get back to selling.2. Legal teams arent reinventing the wheel with each reviewEveryone knows lawyers love red pens. They also arent usually set up to use Salesforce. So a lot of edits, and no access to your CRM system means youre putting a lot of delicate content into email threads, with little to no insight as to the most recent version. A CM within Salesforce should allow access to non_SF users like legal teams while tracking changes to the contract.3. Customers are editing contracts on the same platform as your teamWhile wed all like our&nbsp;customers&nbsp;to be up and running immediately, the fact is most deals require at least a little negotiating. If you have to compare and review contracts instead of seeing changes automatically tracked, youre losing countless hours of productivity that could be spent closing more business.According to the Nucleus report, sales teams utilizing a&nbsp;full_featured Contract Management Solution&nbsp;like SpringCM in conjunction with Salesforce have the best results. These companies see significantly decreased time spent generating contracts and searching for the latest version or status of a document because they never have to leave Salesforce. Think about running an entire contract process from within your Salesforce instance. Now compare that vision to you digging through dozens e_mail attachments. &nbsp;But this solution pairing doesnt just benefit sales teams.Legal teams&nbsp;have sped up the contract review and approval processes by leveraging locked templates and customizable fields; as a result, attorneys no longer spend extra time reviewing each line of a document ensuring clauses and paragraphs havent been modified or removed by quick_moving sales teams.Now that is something we can all get excited about! </content:encoded>
<category>legal</category>
<pubDate>
Wed, 10 Sep 2014 21:29:00 GMT
</pubDate>
<guid>https://blog.springcm.com/contract_management_3_ways_to_add_value_to_salesforce</guid>
<dc:date>
2014-Sep-10T21:29:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Is your legal team stalling your sales contracts? </title>
<link>https://blog.springcm.com/is_your_legal_team_stalling_your_sales_contracts</link>
<description>Contracts and lawyers. Together, the two words&nbsp;trigger groans, sobs and personal accounts of contract hell. While people usually have plenty of sympathy for non_legal participants in the contract process, rarely do they consider how terrible the contract process might be for lawyers and legal teams alike.With organizations producing an average of&nbsp;20,000_40,000 contracts, it&rsquo;s no wonder legal teams are treading water in an ocean of contract frustration.Here are three common misconceptions about a lawyer&rsquo;s role in contract management,&nbsp;and&nbsp;how simple fixes can save your company both time and budget when closing deals.</description>
<content:encoded>Contracts and lawyers. Together, the two words&nbsp;trigger groans, sobs and personal accounts of contract hell. While people usually have plenty of sympathy for non_legal participants in the contract process, rarely do they consider how terrible the contract process might be for lawyers and legal teams alike.With organizations producing an average of&nbsp;20,000_40,000 contracts, its no wonder legal teams are treading water in an ocean of contract frustration.Here are three common misconceptions about a lawyers role in contract management,&nbsp;and&nbsp;how simple fixes can save your company both time and budget when closing deals.1. Lawyers have full visibility into every aspect of the contract processYouve probably heard that Justice is blind. While this is great for the courtroom, its terrible for your contract management process.&nbsp;Lawyers have limited visibility especially if they are working with a piecemeal Contract Lifecycle Management (CLM) solution. While any capable CLM can integrate with your organizations CRM (like Salesforce), in todays budget_friendly business environment, many organizations choose not to purchase CRM licenses for their legal teams. Without that access, lawyers are only able to view where the contract is once theyre invited to take action.The solution?&nbsp;Its definitely not buying more seats. Thats putting Band_Aids on chicken pox. Instead,&nbsp;invest in a tool that embeds within your CRM but exists outside of it as well. This way, your lawyers can track contracts without forcing your sales team out of your CRM. &nbsp; &nbsp;2. Most lawyers have a well_functioning processMore often than not, your current general counsel didnt create their process for contract management. If youre in sales, you can relate to this common problem of process inheritance. Instead of fixing it, though, it becomes another instance of, Weve always done it this way. Without a well_functioning process, legal teams become frustrated. Even simple processes like capturing the most up_to_date versions of contracts become complicated. Many contracts require more than one round of negotiation and review. Without a well_functioning process, these extra steps become productivity killers. &nbsp;The solution?&nbsp;While theres no one_size_fits_all contract process, its important to start with something foundational. You cant change a process until you standardize it for all users. While youre standardizing your process, its crucial to invest in a solution that is automated and will consistently add efficiency to your process. Automation is key; otherwise youll be weighed down with manual processes and 27_plus steps in winning a single contract. &nbsp; 3. Lawyers ensure that contracts are secureHow many times have you lost an important email and spent minutes frantically digging through spam folders, archives and your (far from zero) inbox? Given that people just had to reactivate their fantasy football accounts, this scenario probably hits home for most.&nbsp;Now, how many times have you sent or received a contract via email? You thought that was the norm, didnt you?&nbsp;But sending contracts via email greatly increases the risk of&nbsp;losing&nbsp;your document. Lost contracts lead to unhappy clients and, often, lost revenue. Now imagine trying to find the right version of a particular contract when its time to renew. Too much revenue is being lost when sales teams and legal treat contracts like any other email attachment.&nbsp;The solution?&nbsp;Use a solution that actually hosts your contract and related data.&nbsp;Most cloud companies will host and secure their customers data. Combined with multiple levels of facility and network redundancy, this ensures that customer data&nbsp;is secure and readily available.&nbsp;&nbsp;ConclusionThe simple fix? A robust Contract Lifecycle Management solution that accounts for visibility, productivity and risk mitigation.We can all agree that&nbsp;the pressure to increase the productivity of your sales team,&nbsp;including supporting players like lawyers, has never been higher. Now that youve debunked these three contract management misconceptions, youre one step closer to a productive and (relatively) painless contract lifecycle. &nbsp;Your turn: Whats holding up your contracts? Wed love to hear about your experience in the comments below. &nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 16 Sep 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/is_your_legal_team_stalling_your_sales_contracts</guid>
<dc:date>
2014-Sep-16T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>3 e_Signature features necessary for contract management </title>
<link>https://blog.springcm.com/esignature_features_contract_management</link>
<description>What is your sales team's favorite part of selling? &nbsp; &nbsp; &nbsp;The signature!&nbsp; As the famous movie quote states: &ldquo;Because only one thing counts in this life: Get them to sign on the line which is dotted.&rdquo;At the end of any contract process there is a signature &ndash; could be many, could be one, but without it, you don&rsquo;t have an agreement. There are plenty of e_signature platforms out there that make it easy to sign on the dotted line from your computer or mobile device. It&rsquo;s great, it&rsquo;s secure and it&rsquo;s convenient. But when it comes to an enterprise_class contract management&nbsp;solution, what are some of the e_signature features you should be looking for?</description>
<content:encoded>What is your sales team's favorite part of selling? &nbsp; &nbsp; &nbsp;The signature!&nbsp; As the famous movie quote states: Because only one thing counts in this life: Get them to sign on the line which is dotted.At the end of any contract process there is a signature could be many, could be one, but without it, you dont have an agreement. There are plenty of e_signature platforms out there that make it easy to sign on the dotted line from your computer or mobile device. Its great, its secure and its convenient. But when it comes to an enterprise_class contract management&nbsp;solution, what are some of the e_signature features you should be looking for?Here are 3 eSignature features necessary for contract management:1. Customizable signing fieldsOne of the most popular features I hear about in conversations with customers and partners is the ability to customize the location of signing fields. Your team spends a lot of time designing your forms and other documents, youll want to make sure that they get signed, initialed, etc. in the right locations.&nbsp; Being able to quickly position fields via drag and drop is a huge time saver and allows you to create the professional look and feel you want the signing experience to have.2. Multiple signersEver hear the old proverb It takes a village?&nbsp;Every sales executive knows it can take that same village to approve a contract, and every member of that village has to sign off on the contract before you can count it as a won deal. Instead of having to send off unique instances of the same document to all the&nbsp;different players, its crucial to productivity that your e_signature solution is able to account for multiple&nbsp;signers on the same document in the necessary order.3. CC capabilityAnother favorite saying of mine is, The left hand doesnt know what the right hand is doing.&nbsp; Ever have an experience like this?&nbsp; It can happen all the time in contract approval processes.&nbsp; Heres one typical situation.&nbsp; As a sales rep, you work with a person in the early portion of the sales cycle; but more times than not, a different person needs to sign the agreement. A Cc capability becomes extremely useful in a situation like this; the rep sends the document to the appropriate person for their signature, while at the same time adding his contact as a Cc.&nbsp; Essentially enabling an FYI to his contact so that he knows when the contract was sent and can follow up with the signer to make sure things go smoothly.&nbsp; A powerful tool to keep everyone in the loop.There are a number of eSignature providers offering capabilities like these.&nbsp; SpringCM partners with two of the best: EchoSign and DocuSign.&nbsp; In fact, with our latest release that went out, we added the ability to do all of the above directly from SpringCM as part of a contract or other document process.&nbsp;Check it out! </content:encoded>
<category>legal</category>
<pubDate>
Thu, 18 Sep 2014 12:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/esignature_features_contract_management</guid>
<dc:date>
2014-Sep-18T12:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Lessons learned running a cloud company in your 50s</title>
<link>https://blog.springcm.com/lessons_learned_running_a_cloud_software_company_in_your_50s</link>
<description>The median age for all workers in the U.S. economy is 42.3_years_old. Now consider that Facebook, Google, Zynga, and AOL have a median age of 30 years or younger. &nbsp;As this New York Times article states, technology workers are really young. (Not that there's anything wrong with that.) &nbsp;I'm in my 50s, and I'm running a cloud software company. Many VC's would consider me too old or "past my prime", but I've learned that it's a cyclical thing.&nbsp;When we are in a bubble, everyone wants to hire 20_somethings with great vision and passion. When that bubble bursts, there's usually a rush to bring back experienced generals.&nbsp;</description>
<content:encoded>The median age for all workers in the U.S. economy is 42.3_years_old. Now consider that Facebook, Google, Zynga, and AOL have a median age of 30 years or younger. &nbsp;As this New York Times article states, technology workers are really young. (Not that there's anything wrong with that.) &nbsp;I'm in my 50s, and I'm running a cloud software company. Many VC's would consider me too old or "past my prime", but I've learned that it's a cyclical thing.&nbsp;When we are in a bubble, everyone wants to hire 20_somethings with great vision and passion. When that bubble bursts, there's usually a rush to bring back experienced generals.&nbsp;While there are plenty of excellent books on entrepreneurship and running companies, the fact of the matter is none of them can take the place of real experience. Experience _ tested ability _ is the difference between a great idea and a product that changes the lives of customers on a daily basis.&nbsp;Technology advances have helped us live more productively and stay better informed.When I was in school, there were no PC's, no cell phones and certainly no internet. Technology advances have helped us live more productively and stay better informed. But when I consider the technology that gives me the most pleasure, it's an easy choice. I love my iTunes account and the surrounding ecosystem of gadgets and services.&nbsp;I can still remember what initiated me as a music lover__ both recorded and live. My 6th grade music teacher didn't just teach the classics, jazz, and blues, but played LP's in the class, and had us sing the songs and learn the beat. Knowing exactly when to come in with vocals on Chicago's 25, or 6 to 4, is no small feat. I went on to see&nbsp;Led Zeppelin live twice in the 70's, which gives me street cred with the employees, though doing little to knock any years off my age __&nbsp;nor Robert Plants for that matter.My friends and I used to spend hours recording music to 8 tracks and cassette tapes. We'd challenge ourselves to compose perfect compilations that would score the varied moments of our lives,&nbsp;with particular focus on hitting just the right lag_time between songs. What a chore. Now, it takes me all of 5 minutes to drag and drop a Playlist for 70's Classics or Greg's Car Playlist September 2014.&nbsp;How does this relate to running a cloud software company in your 50s?My life experience has afforded me the opportunity to experience the evolution of technology. It has given me a unique perspective on where we've been, and where we're going. Manual efforts like putting together a true mix_tape used to take entire evenings, now I can pull together a quick playlist while walking to my car.&nbsp;Software companies used to sell complex software that would take years to install, customize, implement, and adopt.&nbsp;Like my music, the Cloud collapses this process into days or weeks.&nbsp;And, we continue to drive rapid advancement towards greater automation and integration between cloud systems. More than ever, it's vital to keep in mind the manual processes we are updating. Without that context, we run the risk of forgetting about the user. Not every process has to be a labor of love, but we can't lose sight of the purpose of that task as we strive to make it more efficient or productive.&nbsp;There's a lot to love about being in cloud software when you're in your 50s. Going to work is easy: I love&nbsp;my company, I love the team, I love our&nbsp;products&nbsp;and I love the&nbsp;customers&nbsp;that keep us coming back each day.&nbsp;From where I sit, the future of tech looks pretty bright.</content:encoded>
<category>legal</category>
<pubDate>
Wed, 24 Sep 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/lessons_learned_running_a_cloud_software_company_in_your_50s</guid>
<dc:date>
2014-Sep-24T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Moving to Cloud Computing: Why HTTP tracing tools are essential</title>
<link>https://blog.springcm.com/moving_to_cloud_computing</link>
<description>A few years ago, I read an article in InfoWorld by Paul Venezia&nbsp;(@pvenezia) that covered some interesting topics:&nbsp;Most bottlenecks and related issues can be diagnosed by going to the packet tracePacket tracing Ethernet is becoming a "dark art"and we need to encourage teams to keep these skills honedI've been delivering enterprise, browser_based applications for 15 years now. As I get more involved in our larger client implementations, I'm finding this observation holds true for HTTP tracing.&nbsp;</description>
<content:encoded>A few years ago, I read an article in InfoWorld by Paul Venezia&nbsp;(@pvenezia) that covered some interesting topics:&nbsp;Most bottlenecks and related issues can be diagnosed by going to the packet tracePacket tracing Ethernet is becoming a "dark art"and we need to encourage teams to keep these skills honedI've been delivering enterprise, browser_based applications for 15 years now. As I get more involved in our larger client implementations, I'm finding this observation holds true for HTTP tracing.&nbsp;A network administrator, or help desk technician, is now at the forefront of optimizing the cloud for business applications.&nbsp;With great cloud solutions comes great responsibility...It used to be that a help desk tech could walk the floor and work with employees on troubleshooting local client_server software, e.g., email clients, CRM, HR software, ERP software, ticketing systems and so on.&nbsp;These systems were on fast networks behind corporate firewalls that eliminated a lot of the variables that are now in_play with cloud technology. Now that same team is supporting employees that may be working with many browser_based applications connected to public or private cloud applications...a shift that requires the use of new tools.&nbsp;HTTP tracing is just for front_end software developers, right?Not necessarily.&nbsp;Yes, about 80% of the results from an HTTP trace is only useful for the developer who's writing the application. However, it's incredibly useful for diagnosing why a page is slow in a browser, or why desktop sync clients are having latency issues.&nbsp;HTTP tracing allows you to see:Where lag_time is being spentAny errors on certain hostsBad browser cachesFirewall obstructionISP issuesDNS issuesBad browser render timeEtc.&nbsp;There are a number of tools to collect captures. Most browsers nowadays will have a quick shortcut to trace web pages. Oftentimes, it's as simple as enabling "Developer Tools" and hitting F12. These tools offer an ability to export traces into a JSON or XML format that can be read by tools such as Fiddler, Charles, HTTPWatch and other HAR viewers.&nbsp;With these tools, the help desk techs and network admins can review them offline, attach them to tickets, or share them with your vendors. This dramatically accelerates time to resolution and oftentimes identifies unhealthy machines, reveals issues with corporate VPN tunnels, pinpoints resource constraints in a VDI (Virtual Desktop Infrastructure), uncovers bottlenecks in local networks or trouble with an ISP.Know your browser, leverage cloud computingA better understanding of what a browser is doing will inevitably make moving to the cloud a more rewarding experience. Companies that embrace the cloud, and that have IT teams who develop cloud_related skills, will see a smoother transition to the cloud than those that don't. They'll save money on implementations, have better user experiences and fully realize the potential of the cloud.&nbsp;&nbsp;Image Source:&nbsp;http://dentonmattt.tumblr.com/post/48790580995&nbsp;on Tumblr</content:encoded>
<category>legal</category>
<pubDate>
Fri, 26 Sep 2014 11:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/moving_to_cloud_computing</guid>
<dc:date>
2014-Sep-26T11:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>What Will Predictive Content Look Like One Year From Today?</title>
<link>https://blog.springcm.com/what_will_predictive_content_look_like_one_year_from_today</link>
<description>Sales and marketing teams are frustrated. Although we all say we're breaking down the silos, the truth is the two teams are often at odds. Sales is frustrated because they can't get the necessary content to help them close deals. Marketing is frustrated because the content they've created often sits and collects digital dust. Sound familiar? If this is a problem within your organization, you're not alone. Lost sales productivity and marketing misalignment costs companies at least $1 trillion a year. (Source: here)</description>
<content:encoded>Sales and marketing teams are frustrated. Although we all say we're breaking down the silos, the truth is the two teams are often at odds. Sales is frustrated because they can't get the necessary content to help them close deals. Marketing is frustrated because the content they've created often sits and collects digital dust. Sound familiar? If this is a problem within your organization, you're not alone. Lost sales productivity and marketing misalignment costs companies at least $1 trillion a year. (Source: here)Before we dive into predicting what predictive content will look like one year from today, let's start by defining what we mean by predictive content. &nbsp;&nbsp;What is predictive content?I asked one of the experts, Jim Lundy, CEO and Lead Analyst at Aragon Research. Jim said, "Predictive&nbsp;content&nbsp;is the ability of a software application to recognize what the user is doing and sliver the right&nbsp;content,&nbsp;in the context of the work or activity that's being done. In sales, this means showing and/or recommending the right&nbsp;content,&nbsp;such as brochures, collateral, and videos."&nbsp;What will predictive content look like one year from today?&nbsp;Aragon Research predicts that, by the end of 2015, 50% of sales enablement software will have&nbsp;predictive&nbsp;capabilities.&nbsp;Why is this so important? While everyone is talking about the importance of content, few are talking about the challenges that having all this content brings. Quite frankly, you can have the greatest content in the world, but if your sales team can't find it, it's useless.You need the right tools to make that content available to the right people, at the right place, in the right time.What should you look for in predictive content tools?Effective predictive content tools should fit your businesses needs. These might include the different stages of selling, such as:Discovery: A great tool will provide things like questionnaires, surveys and checklists to help sales reps pinpoint a selling opportunity and value proposition.Development: Your marketing team will definitely be on board with this one __ a well_functioning predictive content tool will put things like white papers, case studies, ebooks and more at your sales reps' fingertips. From there, they'll be able to quickly distribute the content to their prospects.&nbsp;Proposal: An effective predictive content tool will provide proposal templates and push best_practice proposals (from similar opportunities that have been won).It's important to note: a good tool should be customizable. The use cases mentioned, above, are examples.&nbsp;As you're evaluating the tool that works best for you and your team, be sure to ask lots of questions. And, rely on the experts __ the predictive content software that you choose to use should include a team of&nbsp;implementation experts, who will work with you to capture requirements, configure the software, provide training and get you live in days (not weeks or months).Your turn: what do&nbsp;you think predictive content will look like one year from today?&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 30 Sep 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/what_will_predictive_content_look_like_one_year_from_today</guid>
<dc:date>
2014-Sep-30T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>What is predictive content?</title>
<link>https://blog.springcm.com/infographic_what_is_predictive_content</link>
<description>We are surrounded by more content than any one person could possibly know what to do with. Not only is sales responsible for researching, contextualizing and aligning with the pains of a potential client, but we also expect them to dig through content graveyards in the hopes of ressurrecting the right piece of compelling collateral. (Brace yourself for ghoul_themed wordplay for the next thrity one days.)&nbsp;But what if we aligned activities we&nbsp;need sales to do _ keeping our CRM and other data_centric systems populated with the most accurate, up_to_date information _ with tools sales&nbsp;needs to close new business? Like it or not, the best sales people are needs_driven and opportunistic. Predictive content lines up your needs with the most strategic assets sales people need to close business. This way you're not appealing to the carrot and the stick, but creating a mutually beneficial relationship that drives key business results.&nbsp;</description>
<content:encoded>We are surrounded by more content than any one person could possibly know what to do with. Not only is sales responsible for researching, contextualizing and aligning with the pains of a potential client, but we also expect them to dig through content graveyards in the hopes of ressurrecting the right piece of compelling collateral. (Brace yourself for ghoul_themed wordplay for the next thrity one days.)&nbsp;But what if we aligned activities we&nbsp;need sales to do _ keeping our CRM and other data_centric systems populated with the most accurate, up_to_date information _ with tools sales&nbsp;needs to close new business? Like it or not, the best sales people are needs_driven and opportunistic. Predictive content lines up your needs with the most strategic assets sales people need to close business. This way you're not appealing to the carrot and the stick, but creating a mutually beneficial relationship that drives key business results.&nbsp;The brilliant minds&nbsp;at Aragon Resarch have put together this great infographic highlighting what you NEED to know about predicitve content.&nbsp;Tweet&nbsp;// // Share this Image On Your Site&lt;p&gt;&lt;strong&gt;Please include attribution to www.springcm.com with this graphic.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://blog.springcm.com/what_is_predictive_content_infographic'&gt;&lt;img src='http://go.springcm.com/hs_fs/hub/411038/file_1736230943_jpeg/v3_infographic_.jpeg' alt='what_is_predictive_content' width='2011' border='0' /&gt;&lt;/a&gt;&lt;/p&gt;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;// </content:encoded>
<category>legal</category>
<pubDate>
Wed, 01 Oct 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/infographic_what_is_predictive_content</guid>
<dc:date>
2014-Oct-01T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How well do you know the Full House theme song lyrics?</title>
<link>https://blog.springcm.com/how_well_do_you_know_the_full_house_theme_song_lyrics</link>
<description>With Dreamforce less than one week away, the SpringCM Dreamforce Team is&nbsp;staging a blog takeover. From now through next Thursday, all our posts&nbsp;will be Dreamforce_related. As 140,000 people make their way to San Francisco, what better way to prepare for the trip than testing your Full House knowledge? Have mercy!</description>
<content:encoded>With Dreamforce less than one week away, the SpringCM Dreamforce Team is&nbsp;staging a blog takeover. From now through next Thursday, all our posts&nbsp;will be Dreamforce_related. As 140,000 people make their way to San Francisco, what better way to prepare for the trip than testing your Full House knowledge? Have mercy!&nbsp; </content:encoded>
<category>legal</category>
<pubDate>
Tue, 07 Oct 2014 16:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/how_well_do_you_know_the_full_house_theme_song_lyrics</guid>
<dc:date>
2014-Oct-07T16:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How NCR was saved by the cloud</title>
<link>https://blog.springcm.com/contract_management_saved_ncr</link>
<description>How your&nbsp;company&nbsp;handles the&nbsp;contracts lifecycle says a lot to your customers about their upcoming experience working with your company. Some questions your contracts process answers:How well can you get me onboarded?Can you make it easy for me to continue the relationship?All of these&nbsp;questions can be&nbsp;summed up in one:&nbsp;Are you a good partner when it comes to the contracts process?</description>
<content:encoded>How your&nbsp;company&nbsp;handles the&nbsp;contracts lifecycle says a lot to your customers about their upcoming experience working with your company. Some questions your contracts process answers:How well can you get me onboarded?Can you make it easy for me to continue the relationship?All of these&nbsp;questions can be&nbsp;summed up in one:&nbsp;Are you a good partner when it comes to the contracts process?NCR was&nbsp;drowning in contract&nbsp;administrationNCR knows all about this. The company tried to manage partner contracts via email but that created lengthy, complex communications. Steve Lorenzen,&nbsp;channel operations specialist at NCR puts it simply: "We were drowning in contract&nbsp;administration&nbsp;work."&nbsp;NCR's Channel Operations team simplified its complex partner relationships by moving to SpringCM and integrating SpringCM with its Salesforce.com instance. Using the combination, NCR created a self_service portal for partners to streamline the sign_on process, including contract templates and workflow to automate contract approval processes.1to1 media, a&nbsp;customer experience publication, featured NCR's transformative story in an&nbsp;article,&nbsp;Collaborating in the Cloud.&nbsp;Summing up the benefits of moving to the cloud, Steve added:"Moving to the cloud allowed us to overcome those [logistical and administrative] barriers," he says. "Now we provide an exceptional partner_facing contract experience and we're able to focus on growing our program and leveraging our innovative technology solutions to expand revenue opportunities with new and existing partners".&nbsp;Now it's your turn: How does your contract management process&nbsp;impact the way that you do business?&nbsp;Image source: Sanak Glgen on Flickr&nbsp; </content:encoded>
<category>legal</category>
<pubDate>
Wed, 08 Oct 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/contract_management_saved_ncr</guid>
<dc:date>
2014-Oct-08T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>10 Twitter accounts you need to follow during Dreamforce</title>
<link>https://blog.springcm.com/10_twitter_accounts_you_need_to_follow_during_dreamforce</link>
<description>Dreamforce is next week and the Twitters are packed with compelling&nbsp;hashtags and hyperlinks. While we all like to pretend we have the mental&nbsp;capacity&nbsp;of a dozen rocket scientists, in reality we need to choose carefully what we pay attention to during this crucial week. Luckily, your good friends at SpringCM have culled the Twittersphere to pull&nbsp;the best accounts for you to follow at Dreamforce this year!</description>
<content:encoded>Dreamforce is next week and the Twitters are packed with compelling&nbsp;hashtags and hyperlinks. While we all like to pretend we have the mental&nbsp;capacity&nbsp;of a dozen rocket scientists, in reality we need to choose carefully what we pay attention to during this crucial week. Luckily, your good friends at SpringCM have culled the Twittersphere to pull&nbsp;the best accounts for you to follow at Dreamforce this year!You're welcome. &nbsp;Tweet&nbsp;your way to Dreamforce successSo who are The Chosen? Glad you asked.&nbsp;1. Marc BenioffDreamforce setting new records already! Raising $8M for @UCSFChildrens! Over 135K registered to attend! pic.twitter.com/X6D5TYNim6 Marc Benioff (@Benioff) October 8, 2014If you're attending Dreamforce, chances are you're familiar with Salesforce CEO, Marc Benioff. If you don't know Benioff, we hope you at least know what CRM stands for...2.&nbsp;Jeff Grosse3 Reasons You Can't Miss the Service Cloud Product Keynote #df14 http://t.co/gKEzklkh1P Jeff Grosse (@CRMFYI) October 3, 2014A self_proclaimed Disney fanatic and a Salesforce MVP, Jeff brings a refreshing, and informed,&nbsp;voice to the world of cloud technology.&nbsp;3. will.i.amEvery middle &amp; high school has a basketball court, baseball &amp; football field on campus...but no coding class http://t.co/LVBTrG2IDQ #codeNOW will.i.am (@iamwill) October 9, 2014While mostly known for his days in the Black_Eye Peas and channeling Yoda, rumor has it he'll be announcing a new wearable device at Dreamforce 2014.&nbsp;4. Hillary ClintonIn #SiliconValley today visiting @Google, @Facebook, &amp; @Twitter. Looking forward to seeing everyone and answering some questions. Hillary Clinton (@HillaryClinton) July 21, 2014Going to let the former first lady's Twitter bio do the work for me: "Wife, mom, lawyer, women &amp; kids advocate, FLOAR, FLOTUS, US Senator, SecState, author, dog owner, hair icon, pantsuit aficionado, glass ceiling cracker, TBD..." Maybe we'll learn more about the TBD at Dreamfore.5. Koka SextonGetting ready for @Dreamforce #DF14? Download this guide [ http://t.co/0o5TmeMNKC ] pic.twitter.com/CXegavIHWL Koka Sexton (@kokasexton) October 8, 2014Koka heads up the social selling movement, which makes him a great person to watch during one of the year's biggest gathering of sales, marketing and cloud professionals. See if you can pick up any tips for closing deals via social in 2015.&nbsp;6. Ken Krogue#4 on Forbes! Dreamforce: Top 10 Reasons Why People Love Salesforce And Marc Benioff http://t.co/SbAVK4hbpZ via @forbes Ken Krogue (@kenkrogue) October 9, 2014Ken is the CEO/founder of Insidesales.com&nbsp;and a frequent contributor to Forbes. As with Koka, it'll be worth following Ken to see what sort of insight you can pick up for your sales and marketing initiatives in 2015.&nbsp;7. Jill RowleyAt #DF14 and every event I attend. RT @salesforce: Why I Crave Content, Connections and Cocktails (by @Jill_Rowley) http://t.co/siabWqLhvw Jill Rowley (@jill_rowley) October 9, 2014You've heard that ABC stands for, "Always be closing," but Jill Rowley disagrees. ABC means, "Always be connecting." &nbsp;8. Jeremy StoppelmanThe #DF14 community is coming together to provide 1M meals for people in need. Ill bring a can for #DFGives! http://t.co/i5E5L3T5tG Jeremy Stoppelman (@jeremys) October 9, 2014&nbsp;Jeremy is the co_founder and CEO of Yelp. You know, that app that has dictated where you eat for the past few years. &nbsp;9.&nbsp;Brent Leary&nbsp;Latest @CRM Magazine column: Sales Processes and Tools Must Adapt to Customer Behavior. http://t.co/1v0Y9vJZ8l pic.twitter.com/rzy28qrg0z Brent Leary (@BrentLeary) October 1, 2014One of the internet's favorite experts when it comes to all things CRM.&nbsp;10.&nbsp;Bret Rhodus and Cristina Yoon&nbsp;Great #IGNITE session today at @salesforce with @LevelFive &amp; @Tricension _ #NST @ExperienceNST pic.twitter.com/LLZiaOCacq Bret Rhodus (@tech4growth) October 7, 2014When #Philanthropy Is Weird http://t.co/Jc0CtPpo4K @nytimes via @pndblog Cristina Yoon (@yooncristina) September 8, 2014Bret and Cristina are two of our favorite customers and just happen to be presenting at Dreamforce this year. Bret is CMO_CTO at National Seminars Training, while Cristina is Grants Manager at the Skoll Foundation. Bret and Cristina will definitely provide you with two very unique views on CRM and Dreamforce next week!&nbsp;Bret's TalkTitle:&nbsp;Increase Adoption by Establishing a Clear Vision for SuccessWhen: Tuesday at 4pm and Thursday at 9am.Cristina's TalkTitle:&nbsp;Next_generation GrantmakingWhen:&nbsp;Thursday at 11:15am.&nbsp;CONCLUSIONBy now, you've no doubt created a list of the above accounts and are marveling in all the Dreamforce goodness they are sharing. Tweet 'em, Retweet 'em and favorite 'em throughout the week, and make sure to share their brilliance with your fellow attendees.&nbsp;In the meantime, make sure to pack a fleece.&nbsp;See you next week ( at booth #N1117)!</content:encoded>
<category>legal</category>
<pubDate>
Thu, 09 Oct 2014 20:29:00 GMT
</pubDate>
<guid>https://blog.springcm.com/10_twitter_accounts_you_need_to_follow_during_dreamforce</guid>
<dc:date>
2014-Oct-09T20:29:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How to do Dreamforce 2014 like a local</title>
<link>https://blog.springcm.com/how_to_do_dreamforce_2014_like_a_local</link>
<description>Update: Check out our Dreamforce 2015 Guide! San Francisco is about to be overrun by 140,000 Dreamforce attendees. Luckily, your friends at SpringCM have put together a guide to San Francisco from a local's perspective. Below is a teaser of the full "Get it! Guide: San Francisco." If you're heading to San Francisco for Dreamforce next week (or plan to return for a more relaxing trip sometime in the future), you'll want to check out at least one of our three favorites below. Trust us.</description>
<content:encoded>Update: Check out our Dreamforce 2015 Guide! San Francisco is about to be overrun by 140,000 Dreamforce attendees. Luckily, your friends at SpringCM have put together a guide to San Francisco from a local's perspective. Below is a teaser of the full "Get it! Guide: San Francisco." If you're heading to San Francisco for Dreamforce next week (or plan to return for a more relaxing trip sometime in the future), you'll want to check out at least one of our three favorites below. Trust us.&nbsp;Venue&nbsp;1: Jamber Wine PubWhy go: The 20 wines are served on tap, as are the 10 beersall from Californiain this industrial chic former elevator repair shop. Lots of comfort food: Mr. Meatloaf, tots, chicken and waffles. And for those of you being good about your veggies: beet/spinach/avocado salad or vegan soup of the day.Address: 858 Folsom St.Neighborhood: SoMa (South of&nbsp;Market St.)Approx Uber travel time from Moscone:&nbsp;3 minutesClosing time: 12am&nbsp;Venue&nbsp;2: El FarolitoWhy go: Just. Seriously. Listen to us on this one. If you like superburritos (yes, thats one word), please go to El Farolito. No frills. Huge portions. Cash only. Look for the line out the door.&nbsp;Address: 2779 Mission St. (or as locals say, right next to the 24th St. BART station)Neighborhood: The MissionApprox Uber travel time from Moscone:13 minutesClosing time: 2amVenue&nbsp;3: The Mint Karaoke LoungeWhy go: Simply put, if you are born to sing, The Mint is hella fun. The sushi bar next door will deliver while you wait for your song request to come up. Remember to tip when you submit a request (if you want to hear your song before the night is over). Cash only. Nearby, just five_minute stroll south on&nbsp;Market St., is Churchill (198 Church St) for cocktails in Mason jars, til 2am.Address: 1942 Market St.Neighborhood: Duboce Triangle (locals pronounce it dew_bose)Approx Uber travel time from Moscone:&nbsp;10 minutesClosing time: 2am&nbsp;When you're back at Moscone Center, be sure to stop by booth N1117 and meet the people behind these great recommendations.See you next week!&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Fri, 10 Oct 2014 20:52:00 GMT
</pubDate>
<guid>https://blog.springcm.com/how_to_do_dreamforce_2014_like_a_local</guid>
<dc:date>
2014-Oct-10T20:52:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Three Dreamforce sessions every Salesforce Admin needs to attend</title>
<link>https://blog.springcm.com/three_dreamforce_sessions_every_salesforce_admin_needs_to_attend</link>
<description>Just days away from Dreamforce 2014, we're all busy preparing for our&nbsp;biggest conference of the&nbsp;year. The first year I went to Dreamforce, in 2010, there were just over&nbsp;30,000 attendees. Four years later, it's projected that there will be roughly&nbsp;140,000 attendees. The explosive growth of the event speaks to the quality of the networking, professional growth and impact on attendees' businesses.As a Salesforce Admin, I look forward to the networking and skills growth opportunity.</description>
<content:encoded>Just days away from Dreamforce 2014, we're all busy preparing for our&nbsp;biggest conference of the&nbsp;year. The first year I went to Dreamforce, in 2010, there were just over&nbsp;30,000 attendees. Four years later, it's projected that there will be roughly&nbsp;140,000 attendees. The explosive growth of the event speaks to the quality of the networking, professional growth and impact on attendees' businesses.As a Salesforce Admin, I look forward to the networking and skills growth opportunity.Every year, I walk&nbsp;away with key takeaways that I will actually use in my day_to_day. At&nbsp;last year's conference, the&nbsp;session that really resonated&nbsp;with me was the keynote with Cheryl Sandberg, and the working session on LeanIn. My team and I&nbsp;came back and implemented LeanIn&nbsp;circles to grow personally and professionally!Dreamforce 2014:&nbsp;the sessions I'm most looking forward to.This year, I'm going to focus&nbsp;on "Circles of Success" sessions. There are literally hundreds of "Circles of Success" sessions. The thing I love about them is you learn from your peers. Facilitated by a member of the Salesforce Success Team, the&nbsp;sessions feature a small group of peers discussing challenges and opportunities that we all face each day. They're interactive and usually&nbsp;include a white boarding&nbsp;exercise.Here are several "Circles of Success" sessions that are geared towards Salesforce Admins:1. Top Tips for AdminsMonday, 11:00 AM _ 11:40 AM at the Westin St. Francis San Francisco (Other sessions are scheduled, as well. Check the agenda builder.)This session will focus on working smarter, not harder. Attendees will learn from a&nbsp;panel of industry peers, collaborate with other administrators and share&nbsp;top tips on&nbsp;being a Salesforce rock star.&nbsp;2. Business Metrics for Your Sales Success with SalesforceTuesday, 1:00 PM _ 1:40 PM at the&nbsp;San Francisco Marriott Marquis&nbsp;(Other sessions are scheduled, as well. Check the agenda builder.)If you're challenged with determining the best key metrics for your organization, this session is for you. You'll walk away with ideas on what (and how) you can measure.&nbsp;3.&nbsp;Driving Improved Data Quality Within SalesforceThursday, 9:00 AM _ 9:40 AM at the&nbsp;San Francisco Marriott Marquis&nbsp;(Other sessions are scheduled, as well. Check the agenda builder.)As Salesforce Admins, we've all been challenged with the quality of data inside Salesforce.&nbsp;In this session, you'll&nbsp;to learn how to help improve data quality inside Salesforce and drive overall user adoption.&nbsp;Your turn: What Dreamforce sessions are you planning on attending? Share in the comments, below!Got content challenges in Salesforce? We'll help you solve them all, including the really tough ones like contracts and other opportunity_related documents that bog down sales teams and frustrate customers.&nbsp;Come see us in Booth N1117 in the North Hall. &nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Sat, 11 Oct 2014 17:14:00 GMT
</pubDate>
<guid>https://blog.springcm.com/three_dreamforce_sessions_every_salesforce_admin_needs_to_attend</guid>
<dc:date>
2014-Oct-11T17:14:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>10 tips to survive your first day at Dreamforce</title>
<link>https://blog.springcm.com/10_tips_to_survive_your_first_day_at_dreamforce</link>
<description>If you're new to Dreamforce, today can feel like the first day of school. You might be a&nbsp;little nervous, but even more&nbsp;excited, because this is going to be an incredible week! To help you launch into Dreamforce with confidence, we've compiled 10 tips to survive&nbsp;your first day, so you'll know where to go, how to get there and who to go with.</description>
<content:encoded>If you're new to Dreamforce, today can feel like the first day of school. You might be a&nbsp;little nervous, but even more&nbsp;excited, because this is going to be an incredible week! To help you launch into Dreamforce with confidence, we've compiled 10 tips to survive&nbsp;your first day, so you'll know where to go, how to get there and who to go with.1. The easiest route from A to BAll attendee hotels have shuttle service directly to Moscone. While shuttles run all day from 6:30AM to 8:30PM, you might have to wait up to 30 minutes between the "non_peak" hours of 10:00AM to 4:00PM. There is another shuttle for the Dreamforce Gala with service to Civic Center Plaza at 6:15PM. Pro tip: The earlier you arrive, the smaller the crowd between you and your destination. With that in mind...2. Nab&nbsp;your badge earlyArrive early Monday morning to beat the crowds to your badge! Registration desks are open at Moscone North, Moscone West and the Marriott &amp; Hilton Hotel Union Square. Registration starts today at 7:00AM and closes at 8:00PM. The hours for the rest of the week are:Tuesday, October 14 7:00am _ 6:30pmWednesday, October 15 7:30am _ 6:00pm (7:00am _ 4:30pm Hilton)Thursday, October 16 8:00am _ 3:00pm3. Choose one other thingWalking into Dreamforce is like being a kid in Willy Wonka's Chocolate Factory _ there's so much to see and do, and just look at that everlasting&nbsp;gobstopper! While much of what you can see and do is Salesforce related, we recommend choosing at least one learning opportunity&nbsp;that is outside that scope to really take advantage of all this conference has to offer. You wouldn't want to miss the Dreamforce equivalent of Fizzy Lifting Drinks (though they might just serve those at the after parties).4. Grab your Get it! Guide: San Francisco from SpringCM at booth N1117 or this link&nbsp;San Francisco is a magical place, with or without Dreamforce (moreso with!), and we want to help you have a great trip to one of our&nbsp;favorite cities. So we put together a San Francisco Guide with local tips of our favorite watering holes, eateries,&nbsp;and activities. Bonus: Visit us at our booth or download the PDF guide, and you'll be instantly entered to win a weekend getaway to anywhere in the U.S.5.&nbsp;Explore San Francisco with&nbsp;MuniThe easiest ways to get around San Francisco?&nbsp;Muni, Uber, or your own two feet (walking tends to be quite a bit faster, this week).&nbsp;Muni is San Fran's&nbsp;public transportation system, which will&nbsp;take you just about anywhere you'd want to go. If you're new to the area, you may want to map your route ahead of time.6. Pre_register for the sessions you want to attendDreamforce has more than 1,400 sessions and some are more popular than others. Very likely, some of those more popular ones are already on your Can't Miss List. Do yourself a favor and pre_register for the sessions you want to attend. If you registered for Dreamforce, you hopefully received an email with further details on reserving your seats.7. Map out your refueling plan of action (breakfast, lunch, dinner, water, snacks, etc.)Dreamforce isn't a sprint, it's a marathon. And, just like a marathon, you have to plan where and how to refuel so you can continue on full_speed ahead. Pro tip: Bring a refillable water bottle so you can stay hydrated if the lines at Starbucks are too long. And, use meal times to network. Breakfast is served in Yerba Buena Gardens from 7:00AM to 8:30AM on Monday and Tuesday, and from 7:30AM to 9:00AM on Wednesday and Thursday. Lunch is also served in Yerba Buena Gardens, and also at all Campus hotels, between 11:30AM and 1:30PM Monday through Thursday.&nbsp;8. Allow extra time for getting placesWith roughly 140,000 Dreamforce attendees, it can take time to get places. Expect long lines at Starbucks and Jamba Juice between sessions, and if you have to meet someone on the other side of the conference center, start walking there earlier than you'd think.&nbsp;9. Set aside time to network&nbsp;Dreamforce isn't just sitting and listening to great minds talking from a podium _ great minds are sitting right next to you, too. Bring a full deck of business cards and get to know your neighbors! Use breaks and meal times to share notes and ideas.10. Know where you're going after_hoursWhether you're headed to after_hours Dreamforce events, one of the many parties in San Francisco, or sipping a Sonoma chardonnay&nbsp;at Jamber Wine Pub with your&nbsp;new friends (it's in our guide), make good use of your evenings. Even if you're exhausted, you might find that your best ideas come after sharing a bottle with a stranger you met at your favorite breakout session. But, if you don't plan your night ahead, you might just go to bed _ which is such a waste!&nbsp;Like our tips or think we missed something? Stop by booth N1117 and&nbsp;let us know!Image courtesy of&nbsp;Jon Mountjoy&nbsp;on Flickr. </content:encoded>
<category>legal</category>
<pubDate>
Mon, 13 Oct 2014 13:34:00 GMT
</pubDate>
<guid>https://blog.springcm.com/10_tips_to_survive_your_first_day_at_dreamforce</guid>
<dc:date>
2014-Oct-13T13:34:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 Key Takeaways from Salesforce for Marketers</title>
<link>https://blog.springcm.com/5_key_takeaways_from_salesforce_for_marketers</link>
<description>Can't be at Dreamforce this year? Or, maybe you just missed this session? Don't worry, we've got you covered. Just like when you missed a day in high school, you can use our notes to catch up.Monday&nbsp;morning, presenter Woodson Martin, Chief Marketing Officer at&nbsp;Salesforce, had some insight into customer acquisition and retention in his Salesforce for Marketing session at Dreamforce. Here&nbsp;are 5 key takeaways:</description>
<content:encoded>Can't be at Dreamforce this year? Or, maybe you just missed this session? Don't worry, we've got you covered. Just like when you missed a day in high school, you can use our notes to catch up.Monday&nbsp;morning, presenter Woodson Martin, Chief Marketing Officer at&nbsp;Salesforce, had some insight into customer acquisition and retention in his Salesforce for Marketing session at Dreamforce. Here&nbsp;are 5 key takeaways:Take a holistic approach to marketing, sales and customer service.1. Blurred lines and customer successThe lines are becoming increasingly blurred between sales, service and marketing teams when it comes to customer interactions. Now, it's more important than ever for different factions to work together to create a holistic, consistent approach to the customer relationship. From the first touch as a prospect to the day_to_day of being an end_user, companies need to leverage cloud technologies and data to inform the way they nurture and support the success of customers.2. Nix the silo fixWhen one team exists entirely within one product, without considering the valuable, relevant&nbsp;information that goes unshared within that product, its a silo fix. And, its not good. To avoid falling into a silo fix, find solutions that integrate and communicate with each other. Then, constantly measure the impact of these solutions on your business.3. Service at scaleThe trick to providing terrific, personal, ridiculously good&nbsp;customer service that can scale with your companys growth is to integrate solutions and share information.4. The service_to_marketing loopMartin clarifies integration by saying We want all of our service to be so good its marketing. We also want our marketing to be so good, its like customer service. Essentially, when your customer support becomes so good that customers are tweeting about how awesome you are, it becomes marketing. And thats exactly what you want.5. Connect the dots on the customer journeyAsk yourself: How do you connect with your customers? What does the customer journey look like for your ideal customers? How do they find you? Where were&nbsp;they before they found&nbsp;you? When you want to reach your customers like never before, you have to plan and optimize their journey from start to finish. One of the most effective ways to do that is&nbsp;to&nbsp;deliver personalized, meaningful content across every channel and device they are on.ConclusionThe real take_home of Martin's&nbsp;session was that customers dont want to be sold to, and they dont want to wait for your customer service team to get up_to_speed on whats troubling them. The want you to meet them where they are, prove your worth, and then proactively help them to love your product. That is when marketing, service, and success become one holistic approach to long_term customer relationships.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 14 Oct 2014 14:28:00 GMT
</pubDate>
<guid>https://blog.springcm.com/5_key_takeaways_from_salesforce_for_marketers</guid>
<dc:date>
2014-Oct-14T14:28:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 Key Takeaways from Current, Future Sales Ops</title>
<link>https://blog.springcm.com/5_key_takeaways_from_current_future_sales_ops</link>
<description>Joe Galvin is one of the most prominent thought leaders in the sales world, so when we saw his name attached to a Dreamforce 2014 breakout session, we signed up in a flash. His Tuesday afternoon session on Current, Future Sales Ops brought some significant issues out into the open, and got us thinking about solutions we might bring to the table.&nbsp;</description>
<content:encoded>Joe Galvin is one of the most prominent thought leaders in the sales world, so when we saw his name attached to a Dreamforce 2014 breakout session, we signed up in a flash. His Tuesday afternoon session on Current, Future Sales Ops brought some significant issues out into the open, and got us thinking about solutions we might bring to the table.&nbsp;One of the main problems in sales right now is misalignment.1. Automation Still Relies on Human FactorsResearch done by Miller Heiman, a professional sales performance company, says that companies spend between $1,000 and $4,500 on Sales Force Automation tools every year _ with one goal: to increase sales productivity. While the Salesforce tools are excellent, the problem lies in the human factor.2. Current Performance Indicators Are ImperfectThe main performance indicator used is sales, but to increase sales productivity, we also have to look at infrastructure. Infrastructure, like sales enablement, sales technology, skills training and sales operations, is the framework supporting productivity and performance. By focusing solely on sales, you may miss the bigger picture.3. You Don't Know Your Sales Data As Well As You ThinkSales data is a mystery. The quality of those numbers is dependent on sales executives inputting the data correctly and honestly, when all of the incentives point to doing the opposite."I'm going to tell my sales manager what he wants to hear and only take one beating," says the sales rep. When soft_peddling the real numbers is incentivized and transparency comes with risk, you can't get an honest insight into sales data.&nbsp;4. It's All ConnectedSales ops aligns with Chief Financial Officer; Sales Training aligns with HR; Sales Enablement aligns with Marketing; Sales Technology aligns with IT. They're all connected, and the more companies begin to recognize that, the better they'll be able to align their efforts.5. Misalignment May Start OnlineMarketing has rapidly gone digital, while sales is lagging behind in its attempts to digitize. Ideally, both sides should be aligned _ online and offline.ConclusionWhile sitting in session, we thought there was something missing from the conversation. We've seen that sales is measured through sales team performance, and that infrastructure is how we manage and track our impact on productivity _ but we think Joe might be missing part of the equation.What is the end_goal of all of these investments in productivity and sales performance? Winning new business, right? But the biggest drain on your productivity, from sales to legal teams, is contract management. Without a mature contract lifecycle management solution in place, your sales operations will never achieve the productivity you need to reach and exceed future goals.Yes, disconnection is slowing you down. Yes, the human factor is flawed. But we believe there is much to be gained by streamlining the most frequent processes for maximum efficiencly _ like the hundreds of contracts written, updated, sent and signed&nbsp;every day.Image source:&nbsp;Kristian Bjornard&nbsp;on Flickr&nbsp;&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Wed, 15 Oct 2014 18:16:00 GMT
</pubDate>
<guid>https://blog.springcm.com/5_key_takeaways_from_current_future_sales_ops</guid>
<dc:date>
2014-Oct-15T18:16:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 Data_Driven Takeaways from the Makers of Dreamforce</title>
<link>https://blog.springcm.com/5_data_driven_takeaways_from_the_makers_of_dreamforce</link>
<description>GPJ does more than 6,000 events per year, but their company description doesn't include the words "event planners." No, what they do is so much more: "Inspired experiences driven by results" is their apt description. GPJ is an "experiential marketing" agency that takes a data_driven approach to making marketing a visceral experience that lasts in the hearts and minds of everyone involved.In Wednesday's breakout session Be Like Dreamforce: Tap into the Power of Data_Driven Experiential Marketing, we got a rare peek behind the curtain at the wizards themselves.</description>
<content:encoded>GPJ does more than 6,000 events per year, but their company description doesn't include the words "event planners." No, what they do is so much more: "Inspired experiences driven by results" is their apt description. GPJ is an "experiential marketing" agency that takes a data_driven approach to making marketing a visceral experience that lasts in the hearts and minds of everyone involved.In Wednesday's breakout session Be Like Dreamforce: Tap into the Power of Data_Driven Experiential Marketing, we got a rare peek behind the curtain at the wizards themselves.1. Why do Experiential Marketing?The first point speakers Steven Boyce (GPJ Sr. Director, Digital Strategy) and Scott Kellner (GPJ Experience Marketing, VP Marketing) made was that they do experiential marketing because it drives revenue. Not only is it "data_driven" and passion_driven, it's money_driven.2. "80 percent of my job is analytics"An experiential marketing campaign begins with basic data, with strategy formed around it. To start, they look at all&nbsp;stages of the sales funnel to find ways to accelerate the pipeline and deepen relationships with customers and prospects (with the goal of increasing ROI). But, the question on 88 percent of peoples' minds is: "How do I measure the ROI of marketing?" As marketers, we have to have measurable ROI.3. Tools of the tradeAnalytics and real_time insights are generated through digital technology that is integrated into the marketing process. From those numbers, you can form a plan to create memorable brand experiences that have impact on the account_level pipeline, registrations, and other ROI markers. In short, you need the right tools to collect the right data, and you need the right data to form the right strategy.4. The proof in the puddingThe power of data_driven experiential marketing is: accelerating pipelines, deepening relationships, and increasing ROI.&nbsp;5. It's all about relationshipsSteve and Scott's closing thought was this: Events are about building relationships, and better experiences create better relationships. You don't have to host a multi_day conference with thousands of people to create an experience. Every interaction you have with a customer or prospect is an experience in the making. Take advantage of each of these moments to make them positive and memorable experiences _ and that's some really great marketing.Our thoughts: Just like we try to support the experiences of our customers, we need to use data to inform the processes we expect our sales reps to follow.Your thoughts? Share 'em&nbsp;in the comments below.</content:encoded>
<category>legal</category>
<pubDate>
Thu, 16 Oct 2014 14:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/5_data_driven_takeaways_from_the_makers_of_dreamforce</guid>
<dc:date>
2014-Oct-16T14:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>The 9 Best Booths at Dreamforce14</title>
<link>https://blog.springcm.com/the_9_best_booths_at_dreamforce14</link>
<description>Maybe you spent last week along with us in the basement of the convention center in downtown San Francisco. Maybe you just wish you had. Either way, here&rsquo;s a quick look at the leading brands (other than SpringCM) that creatively made the most of the moment __ and that you&rsquo;ll want to spend time with next year (Sept. 15_18, FYI).A cardinal rule: Get them to stop at your booth, then make it worth their time. Some can do that on strength of personality and group demos alone &ndash; the team of energetic guys in the white Nike golf shirts staffing InsideSales.com were especially effective.For everyone else, there are (yawn) mints or golf balls. But wait, before you order you</description>
<content:encoded>Maybe you spent last week along with us in the basement of the convention center in downtown San Francisco. Maybe you just wish you had. Either way, heres a quick look at the leading brands (other than SpringCM) that creatively made the most of the moment __ and that youll want to spend time with next year (Sept. 15_18, FYI).A cardinal rule: Get them to stop at your booth, then make it worth their time. Some can do that on strength of personality and group demos alone the team of energetic guys in the white Nike golf shirts staffing InsideSales.com were especially effective.For everyone else, there are (yawn) mints or golf balls. But wait, before you order your next huge shipment of branded giveaways for your next event, check out what these rockstars did that set them apart as most memorable to capture the most leads. In random order:1. Silverline&nbsp;Genius. A master builder created Silverline's&nbsp;entire desk front out of Legos. Guess closest to actual number of bricks used, and theyll build you (or your six_year_old niece) anything you want out of Legos. Note to self for next year: The correct answer was 68,127 pieces.&nbsp;2. LiveOps&nbsp;Notice the fine print at bottom of sign: Winner must be able to drive a stick shift. Smart lead segmentation. Now draw our name and send us to the racetrack in Sonoma (seriously) for our prize, LiveOps.&nbsp;3. SurveyMonkey&nbsp;&nbsp;Wed love SurveyMonkey&nbsp;even if they didnt integrate so perfectly with HubSpot, but we digress. They brought sketchers in from Portugal(!) to doodle in real time booth visitors and noting their favorite aspect of the week so far. Notice how they nicely captured my broad shoulders.&nbsp;4. ToutApp&nbsp;Clever&nbsp;and interactive without needing WiFi. Complete the sentence The First Thing I Ever Sold Was. While at the ToutApp booth, you likely heard lots of stories and laughs being shared. Emotional connection at work. Sure beats a keychain wrapped in plastic.&nbsp;5. Gainsight&nbsp;First, Gainsight gets bonus points for breaking through the glass ceiling of foam action heroes. Next, did we mention the foam action heroes? An easy way to prompt passers_by to pause long enough to find out more about the business.&nbsp;6. DocuSign&nbsp;When we heard that DocuSign was&nbsp;going to be making and giving away fresh juice all day, every day, we thought 1) Where do they store five tons of oranges? and then 2) Lets go get one! Turns out it arrived in bottles from Pressed Juicery (maybe youve been to their shops in Malibu or West Hollywood?), which means lot less bits of kale flying about than if theyd hauled in a Vitamix.&nbsp;7. Tact&nbsp;Drones were a thing at the show this year, especially as an incentive to sign up for a trial or as a raffle prize or to deliver a soda. Apparently we're not the only ones who heard Andy Borowitz say,&nbsp;Theres no such thing as a bad drone. Tact went classy with this number. If they didnt draw your name, you can grab one on Amazon for about $1,200.&nbsp;8. Dun &amp; Bradstreet&nbsp;Setting aside any pesky copyright issues, whats not to love about some Tabasco sauce? Especially when no one else thought to offer it. And look at us talking about it now. Kudos, D&amp;B.&nbsp;9. Salesforces Desk.com&nbsp;&nbsp;Forbes describes Desk.com __ customer service for small businesses __ as the beefed up reincarnation of Assistly that Salesforce bought in 2011. We describe it as having arguably the best tricked_out booth of lifestyle vignettes in Moscone North. Oh, and a blowfish mascot.&nbsp;Your Turn&nbsp;Which ones did we miss? Which booth treated you to the best experience? Anything influence your buying decision? Did you snare some swag that youre still talking about? Clue us in by commenting below.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 21 Oct 2014 19:27:00 GMT
</pubDate>
<guid>https://blog.springcm.com/the_9_best_booths_at_dreamforce14</guid>
<dc:date>
2014-Oct-21T19:27:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Aragon Research: "Mobile Is More Than File, Sync and Share"</title>
<link>https://blog.springcm.com/mobile_content_management_file_sync_share</link>
<description>It&rsquo;s no secret that mobile is changing the way people access content. Just last week, industry analyst firm Aragon Research underscored this issue in a report on Mobile Content Management, saying that the shift to mobile devices is causing a change in the way content is accessed, shared and managed. And while mobile must be about securing content, it also has to allow for efficient collaboration.</description>
<content:encoded>Its no secret that mobile is changing the way people access content. Just last week, industry analyst firm Aragon Research underscored this issue in a report on Mobile Content Management, saying that the shift to mobile devices is causing a change in the way content is accessed, shared and managed. And while mobile must be about securing content, it also has to allow for efficient collaboration.There has been a lot of focus on sharing files, but Mobile Content Management goes further to look at the spectrum of content and how it can be managed in the cloud, on mobile devices and in some cases on_premise. This means that it goes beyond File Sync and Sharing. _ Aragon Research3 takeaways from the&nbsp;Mobile Content Management Globe&nbsp;There is so much insight in this latest research, that it's hard to pick just three takeaways to share. But below are the three findings&nbsp;that stuck with me long after I'd finished reading the&nbsp;report.&nbsp;1. Content needs to be manageable both inside and outside a repositoryAs sales reps continue to adopt mobile technology, it's crucial that your content strategy include more than a repository. You need a solution that allows for collaboration, while also keeping your documents secure during the BYOD (bring your own device) movement. Consider what happens to your content when it's downloaded from your repository? Is it any different than a piece of collateral that you sent as an attachment. Content needs to do more than exist.2.&nbsp;Security is key to successful MCMA huge part of MCM is the BYOD movement. While some companies are providing mobile devices like tablets and smart phone for their employees, many companies still rely on BYOD. Do you really want your corporate competitive collateral living in the same Dropbox folder as your sales rep's vacation photos? While Dropbox and Box are great personal storage solutions, they weren't built for businesses. Especially from a security perspective. Make sure you have an understanding of your company's base_line security needs before you start exploring MCM solutions.&nbsp;3. Build your strategy around delivering&nbsp;content in contextWhat would content be without context? Nothing! If you serve up great marketing collateral or other sales assets without context, you're sapping sales productivity and costing ROI on the development of that content. Good MCM solutions should be able to serve up content based on situational needs, not just responding to a "download" request.&nbsp;&nbsp;What are your next steps in mobile content management?&nbsp;Well, first, grab your complementary copy of the&nbsp;Aragon Research Globe for Mobile Content Management.Now, ask yourself, what do you need your content to do for you? If you just want it to live in some repository and gather digital dust, then keep doing what you're doing. But if you want your content to work for you, and to add value to your sales and marketing ecosystem, then consider finding ways to put your content in context that allow for collaboration from any device, wherever you are, while performing at a level necessary to drive big business outcomes.&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Fri, 24 Oct 2014 15:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/mobile_content_management_file_sync_share</guid>
<dc:date>
2014-Oct-24T15:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How the best companies give their sales reps more time to sell</title>
<link>https://blog.springcm.com/give_your_sales_reps_more_time_to_sell</link>
<description>This post originally appeared on the&nbsp;SteelBrick Blog. To read more content like this,&nbsp;view the SteelBrick blog.Time is a precious commodity, and we are all only given 24 hours each day. But if each member of your sales team uses their time effectively, it can be a competitive advantage.If&nbsp;you can free up one hour a day for each sales rep, over one year that adds up to 260 hours, or six and a half full working weeks per rep. Think how much more your team could sell if you gave them an additional six and a half weeks per year.Can you really do this? Sure! Here are three ways to&nbsp;give your sales reps more time to sell.&nbsp;</description>
<content:encoded>This post originally appeared on the&nbsp;SteelBrick Blog. To read more content like this,&nbsp;view the SteelBrick blog.Time is a precious commodity, and we are all only given 24 hours each day. But if each member of your sales team uses their time effectively, it can be a competitive advantage.If&nbsp;you can free up one hour a day for each sales rep, over one year that adds up to 260 hours, or six and a half full working weeks per rep. Think how much more your team could sell if you gave them an additional six and a half weeks per year.Can you really do this? Sure! Here are three ways to&nbsp;give your sales reps more time to sell.&nbsp;&nbsp;Set&nbsp;up lead scoring&nbsp;Sales reps are very busy closing new business, keeping up with current customers and prospecting. Sales reps always want new leads and are always looking to sell more, so they will rarely turn down good leads.Lead scoring can help ensure that your reps are spending time on the right leads and not wasting time on the wrong leads.Talk with your sales team to identify the demographics of a good versus bad lead, and filter the bad leads out of your sales funnel. You may filter based on company size, revenue, industry or any other factors that identify these leads as unlikely to ever become customers. &nbsp;Automate the&nbsp;sales processTechnology is helping us do things more effectively and efficiently every day. By relying on technology for some of your sales teams' daily tasks, such as creating sales quotes and sending email, you will free up hours of their day.If you haven't embraced&nbsp;Configure Price Quote Software, you are missing the opportunity to save your sales reps time generating sales quotes (sometimes hours of time saved), giving them a lot more time to prospect and close deals.&nbsp;Set expectations with their&nbsp;customers and their teamsOften when customers need something after a sale, they reach out to the account executive since that's the person most familiar to them. While maintaining good relationships with customers is a fine thing for account executives to do, it can eat up a lot of the time they should spend selling to the next customer.The solution is to make sure that your company clearly defines the roles and responsibilities of Sales compared to Customer Success or Support, or any other teams that are appropriate. Help your customers by providing clear points of contact for their needs, so they can get their questions answered faster and your Account Executives can spend their time doing what they do best __ selling.&nbsp;Sales reps want to do what they do best, sell. They don't need to waste time putting together quotes that take hours, when it can be done in minutes.&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Wed, 29 Oct 2014 12:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/give_your_sales_reps_more_time_to_sell</guid>
<dc:date>
2014-Oct-29T12:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 contract management curses and how to break them</title>
<link>https://blog.springcm.com/5_contract_management_curses_and_how_to_break_them</link>
<description>85% of companies are using manual processes to manage sales contracts.With contracts taking an average of three weeks to create and approve, and organizations creating an average of 20,000_40,000 contracts per year, the thought of processing all of those manually is downright chilling.It&rsquo;s no wonder the contract process is difficult, error_prone and (in most cases) scary.</description>
<content:encoded>85% of companies are using manual processes to manage sales contracts.With contracts taking an average of three weeks to create and approve, and organizations creating an average of 20,000_40,000 contracts per year, the thought of processing all of those manually is downright chilling.Its no wonder the contract process is difficult, error_prone and (in most cases) scary.Here are 5 spooky contract curses. Fear not, weve also included quick tips for how to break them. 5 Contract Management Curses from SpringCM1. You cant compare versions.Contract Lifecycle Management (CLM) users reduce errors, like text edits, 81% more effectively than non_users.2. Its tough to identify bottlenecks.Contract approval time drops 82% with the use of CLM.3. You cant find your contracts.Manual CLM involves a lot of email attachments, and searching for these documents saps productivity.4. Contracts are stalling your sales.Best_in_class companies lead all others w/ 48% shorter internal approval cycles (9.6 vs. 18.6 hours) and even report that typical closed deals occur 9% more quickly (32.4 vs. 35.8 days)."5. Legal teams are at the center of everything without access to anything.The contract process touches many teams, internal and external, all using their own preferred applications or methods.Shine a light on your contracts process! Request a demo with SpringCM so your contracts are a treat instead of a trick. &nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Fri, 31 Oct 2014 12:15:00 GMT
</pubDate>
<guid>https://blog.springcm.com/5_contract_management_curses_and_how_to_break_them</guid>
<dc:date>
2014-Oct-31T12:15:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>7 Hits from the SpringCM Halloween Playlist </title>
<link>https://blog.springcm.com/7_hits_from_the_springcm_halloween_playlist</link>
<description>Editor's Note: As resident music afficionado and&nbsp;DJ, not to mention&nbsp;lead vocalist for&nbsp;Face Time Police, James Serra is the guy we turn to when it comes to soundtracking SpringCM's&nbsp;parties. We thought we'd treat our readers this Halloween to some of James' monster_themed curatorial expertise. Enjoy!&nbsp;</description>
<content:encoded>Editor's Note: As resident music afficionado and&nbsp;DJ, not to mention&nbsp;lead vocalist for&nbsp;Face Time Police, James Serra is the guy we turn to when it comes to soundtracking SpringCM's&nbsp;parties. We thought we'd treat our readers this Halloween to some of James' monster_themed curatorial expertise. Enjoy!&nbsp;1.&nbsp;Would You Love a Monsterman" by LordiThis Finnish metal band makes Jason and Freddy look like the Teletubbies. However, dont let their demon exterior fool you. Would You Love a Monsterman is a catchy, metal anthem that you will be singing until next October.&nbsp; &nbsp;2.&nbsp;Barton Hollow by The Civil WarsIts not easy to make an acoustic song sound aggressive and gritty, yet pleasant to listen to. Sadly, The Civil Wars are no longer a band, but Barton Hollow will haunt my playlist forever (in a good way).&nbsp;3.&nbsp;Rest in Peace by James MarstersRemember the TV show Buffy the Vampire Slayer? Cool. Remember that musical episode they did? Weird, right? To catch non_fans up to speed, a spell was put on the characters that forced them to sing their feelings. Before you laugh at the concept, listen to Rest in Peace. You dont have to know the show to like this song. Plus, whats more Halloween than a vampire singing about love?&nbsp;4.&nbsp;Crazy by MushroomheadClevelands masked metal heroes covered Seals Crazy back in 2003 for their album XIII, and its awesome. Cover songs are always hit or miss, but this one in particular is a grand slam.&nbsp;5.&nbsp;A Nightmare On My Street by DJ Jazzy Jeff &amp; The Fresh PrinceWill Smith rapping about his encounter with Freddy Krueger? Come on. Its too absurd not to be good.6.&nbsp;This Is Halloween from Nightmare Before ChristmasThe movie is a cult classic and so is this song. You cannot, I repeat, CANNOT have a Halloween playlist without this sing_a_long.&nbsp;7.&nbsp;Thriller by Michael JacksonNo explanation needed. Have fun attempting to do the dance&nbsp;tonight!&nbsp;The SpringCM Halloween PlaylistNow that you've had a taste, throw on the SpringCM Halloween Playlist and count down the seconds until it's trick_or_treatin' time.&nbsp;Happy Halloween from SpringCM!&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Fri, 31 Oct 2014 14:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/7_hits_from_the_springcm_halloween_playlist</guid>
<dc:date>
2014-Oct-31T14:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Contract Lifecycle Management Best Practices</title>
<link>https://blog.springcm.com/how_the_best_companies_manage_their_contracts</link>
<description>Contract Lifecycle Management (CLM) should be&nbsp;included in any sales leader's&nbsp;plan to drive crucial initiatives like increased revenue. While most companies invest in solutions supporting&nbsp;the pre_contract portion&nbsp;of the buyer's journey, Aberdeen found that contract creation, negotiation and approval&nbsp;account for&nbsp;18% of the enterprise sales cycle.</description>
<content:encoded>Contract Lifecycle Management (CLM) should be&nbsp;included in any sales leader's&nbsp;plan to drive crucial initiatives like increased revenue. While most companies invest in solutions supporting&nbsp;the pre_contract portion&nbsp;of the buyer's journey, Aberdeen found that contract creation, negotiation and approval&nbsp;account for&nbsp;18% of the enterprise sales cycle.Improving your contract processes will not only shrink your sales cycle&nbsp;and increase revenue, but it will do so without adding sales staff. Intuitive, simple CLM&nbsp;will&nbsp;speed up the sales contract process, reconcile and track&nbsp;the numerous&nbsp;contract iterations and negotiations, secure signatures and book orders considerably faster _ all&nbsp;while leveraging existing&nbsp;resources.Where are the challenges in a&nbsp;contract's lifecycle?Buyers are in control of the sales cycle. Our prospects tend to drive the conversations after initial contact, and highly_negotiated, business critical contracts often come together in crunch time. Meanwhile, legal and financial teams are taking on more and more compliance risks with inefficient processes that combine email, fax and shared network drives.&nbsp;Do these challenges sound familiar?&nbsp;"Contract creation, negotiation and approval account for 18% of the enterprise sales cycle" _ AberdeenWhat to look for in Contract Lifecycle Management solutionsWhile some companies implement traditional CLM&nbsp;software, these solutions often only automate processes&nbsp;while failing&nbsp;to actually streamline the workflow underlying contract management. The result is a lot of money spent on poor process automation and a lot of staff resources spent on managing that technology. With effective CLM technology implemented across your&nbsp;sales organization, your team will be&nbsp;managing contracts, not just managing technology.3 best practices for Contract Lifecycle Management without a SaaS solutionThe good news is that there are some DIY&nbsp;ways to realize&nbsp;shorter sales cycles at your company. Here are CLM best practices you can start using immediately:You need a Contract Lifecycle Management process ownerThe contract process needs to be managed. So make sure your company designates a leader who keeps everyone on track. Though there are pros and cons with any single position owning the process (for example, a legal team member understands compliance issues, but is removed from customer needs), a firm decision must be made. Whoever owns the project will then ensure that there are the necessary checks and balances.It is the process owners responsibility to implement the contract management process effectively. A few ways to do this include: starting with a couple contracts that are in the earliest stages, starting with a specific division or a single product line. No matter how the process owner decides to implement, make sure that everyone (including team members and customers) know that a new contract management process is in the works.Focus on&nbsp;areas where CLM can lead to quick winsWhen youre starting out, focus on areas likely to have quick wins. These aspects could include: automatic routing and looping, CRM and ERP integration, electronic signatures or building a searchable library of standard contracts. By concentrating on one (or all) of these aspects, contract lifecycles will be cut down significantly.Measure the effect of your Contract Lifecycle ManagementFocus on the following measurements to track improvements:Percent of deals closed on time vs. those that slip into the next period (identify and track the root cause of delay)Reduction in Days Sales Outstanding (DSO)Reduction in time taken to negotiate and close contractsNumber of contracts by status and by individualReduction in regulatory penalties, missed deadlines, and lost sales.And, of course, make sure to benchmark your companys measurements against the best_in_class to understand&nbsp;your true progress.In our new eBook, 6 Contract Lifecycle Management Best Practices, we&nbsp;delve into six practical contract lifecycle management best practices your organization can implement to close deals faster. Download your copy here. &nbsp; </content:encoded>
<category>legal</category>
<pubDate>
Tue, 04 Nov 2014 14:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/how_the_best_companies_manage_their_contracts</guid>
<dc:date>
2014-Nov-04T14:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Salesforce: A then and now perspective </title>
<link>https://blog.springcm.com/salesforce_a_then_and_now_perspective</link>
<description>Salesforce just completed its 12th Dreamforce&nbsp;and while it&rsquo;s easy to be distracted by the growing number of attendees (something like 130,000 this year), I was also struck by the increase in companies, and partners, exhibiting across the multiple show halls.SFDC gets credit for being a trailblazer in the cloud, but they should also get credit for the tailwind they&rsquo;ve provided for so many companies following their SaaS model. I&rsquo;ve lost track of how many ex_Salesforcers&nbsp;are now CEO&rsquo;s of successful cloud&nbsp;companies, but I know I&rsquo;d need more than one hand to count them all.</description>
<content:encoded>Salesforce just completed its 12th Dreamforce&nbsp;and while its easy to be distracted by the growing number of attendees (something like 130,000 this year), I was also struck by the increase in companies, and partners, exhibiting across the multiple show halls.SFDC gets credit for being a trailblazer in the cloud, but they should also get credit for the tailwind theyve provided for so many companies following their SaaS model. Ive lost track of how many ex_Salesforcers&nbsp;are now CEOs of successful cloud&nbsp;companies, but I know Id need more than one hand to count them all.Riding&nbsp;the Salesforce&nbsp;tailwind&nbsp;I suspect many current Salesforce customers&nbsp;first attempted&nbsp;the cloud&nbsp;through&nbsp;simple technology built to meet needs in&nbsp;teleconferencing and other phone services. It wasn't until they'd test_driven these less_than_business_critical solutions that they took the plunge with big investments&nbsp;like ERP and CRM.The cloud is here, the cloud is great, but&nbsp;there's room left to growRunning a&nbsp;company that works&nbsp;in the Salesforce ecosystem, my hypothesis is that you need to let the big implementations settle, i.e.,prove themselves, for about 6_18 months before the next wave of solutions, including yours, can hit the beachhead.That next solution could be marketing automation, business intelligence solutions, content and contract management, CPQ...the list goes on. If Salesforce&nbsp;has entered&nbsp;inning 8 on CRM, marketing automation is in inning 6&nbsp;and the rest of us are only a couple innings into the game. Baseball metaphors aside, this is a huge opportunity for the ecosystem salesforce has built around itself.Salesforce&nbsp;itself has recognized the potential in this next wave. They've drafted onto&nbsp;their own tailwind through the recent&nbsp;acquisitions of companies like&nbsp;ExactTarget and RelateIQ, and also&nbsp;by expanding resources to support programs like the&nbsp;ISVforce&nbsp;partners. In the end, all of this technology&nbsp;momentum is&nbsp;good for both Salesforce&nbsp;customers and Salesforce&nbsp;as&nbsp;they continue to provide the critical binding technology at the middle of it all.&nbsp;Making the transition to the cloud seem simpleIf, as I've noted in a previous blog, technology moves in long cycles, it's hard to imagine any other software company will&nbsp;duplicate the ecosystem built by Marc Benioff and team in the next 10_20 years. Regardless, plenty of challenges remain, one of which being, how can a customer cut through what is now more than 2,000 vendors listed on the AppExchange?&nbsp;Second, how can you streamline the buying decision, the contract&nbsp;process, and the implementation of the many apps all trying to communicate and integrate with Salesforce? Which solution&nbsp;goes first?While it might not result in an ecosystem as wide_reaching as Salesforce's, the great companies will be the ones capable of making transition to the cloud seem simple. Easy. And intuitive.Fortunately, here at SpringCM we have three (3) applications in the top ten categories of apps which existing Sales Cloud customers will be looking at in&nbsp;2015.&nbsp;We should have plenty of opportunities to help our new customers transition to the cloud and navigate the ever_growing ecosystem of SaaS solutions orbiting Salesforce.&nbsp;Image via Flickr:&nbsp;drmfrc3</content:encoded>
<category>legal</category>
<pubDate>
Thu, 06 Nov 2014 21:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/salesforce_a_then_and_now_perspective</guid>
<dc:date>
2014-Nov-06T21:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Invest in Contract Lifecycle Management before CPQ</title>
<link>https://blog.springcm.com/contract_lifecycle_management_before_cpq_honest_review</link>
<description>Contract Lifecycle Management (CLM)&nbsp;or&nbsp;Configure Price Quote (CPQ)? In my honest opinion, it can be a tough call. Many sales leaders&nbsp;look to CPQ software to bring their sales process&nbsp;to the next level. After all, that&rsquo;s what it says on the box. CPQ software is designed to help companies create price quotes faster and deliver discounts&nbsp;that are in line with current market conditions.We wouldn&rsquo;t suggest&nbsp;that pricing isn't important &ndash; it absolutely is &ndash; but if you have to choose between a good contract&nbsp;lifecycle management (CLM) system and CPQ software, you may want to prioritize the former. Here&rsquo;s why.</description>
<content:encoded>Contract Lifecycle Management (CLM)&nbsp;or&nbsp;Configure Price Quote (CPQ)? In my honest opinion, it can be a tough call. Many sales leaders&nbsp;look to CPQ software to bring their sales process&nbsp;to the next level. After all, thats what it says on the box. CPQ software is designed to help companies create price quotes faster and deliver discounts&nbsp;that are in line with current market conditions.We wouldnt suggest&nbsp;that pricing isn't important it absolutely is but if you have to choose between a good contract&nbsp;lifecycle management (CLM) system and CPQ software, you may want to prioritize the former. Heres why.Everyone in the company benefits from CLMWhen it comes to increasing efficiency across the sales cycle, CLM&nbsp;wins hands_down.The C_Level will appreciate that contracts fly through the approval process with no mysterious&nbsp;bottleneckingThe legal team will sleep better at night knowing that any changes made to business_critical documents come with automatic "paper trails"The sales team will love how easy contracts are to find, send, and approveAnd sales ops and leadership can kick back knowing exactly where all incoming revenue stands across the entire sales teamWhile there are many benefits to investing in&nbsp;CPQ&nbsp;software, improving overall sales workflow and productivity from the top down isnt one of them. But, with all of that increased efficiency boosting your bottom line, youll be able to invest in CPQ software in no time. After all, why not have both?Image Source:&nbsp;Kool Cats Photography over 2 Million Views&nbsp;on Flickr&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 11 Nov 2014 18:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/contract_lifecycle_management_before_cpq_honest_review</guid>
<dc:date>
2014-Nov-11T18:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>3 quick tips to save time with contract lifecycle management</title>
<link>https://blog.springcm.com/3_quick_tips_to_save_time_with_contract_lifecycle_management</link>
<description>Most of us&nbsp;look forward to the holidays. But nights spent sipping eggnog by the fire come at a cost: productivity. And rightfully so. You should be taking the holidays to spend time with your family and relax. So it becomes even more important to make the&nbsp;days before and between Thanksgiving and the winter holidays maximally&nbsp;productive. So,&nbsp;here's a gift you can really use this holiday season: ways to improve productivity and save time with contract lifecycle management (CLM). And we're giving it to you before Black Friday.&nbsp;</description>
<content:encoded>Most of us&nbsp;look forward to the holidays. But nights spent sipping eggnog by the fire come at a cost: productivity. And rightfully so. You should be taking the holidays to spend time with your family and relax. So it becomes even more important to make the&nbsp;days before and between Thanksgiving and the winter holidays maximally&nbsp;productive. So,&nbsp;here's a gift you can really use this holiday season: ways to improve productivity and save time with contract lifecycle management (CLM). And we're giving it to you before Black Friday.&nbsp;How much time&nbsp;is bad contract management costing you?&nbsp;According to Aberdeen,&nbsp;85% of companies are using manual processes to manage sales contracts. Now consider how many contracts your company manages on weekly, monthly, quarterly and annual basis. That's a lot of documents being shuffled from inbox to inbox, and other personal data dumps. I'll let you do the math.&nbsp;There are some common time_sucks that bog down any contract process:&nbsp;Wrangling clients and management for multiple rounds of contract and document approvalHunting for the most current versions of contracts or marketing collateralWaiting for someone to send you a document in order to start workPiecing together text from several contributors working in several versions of your contractYour time is precious and you should be able to spend it&nbsp;doing something more important than waiting for papers to arrive or digging through virtual and 3_D files.&nbsp;3 quick tips to save time with contract managementUse a&nbsp;CLM&nbsp;automation tool to track the workflow and approval process of your contracts. Youll know exactly where the paperwork is and whose approval is still pending at all times.Take advantage of the Clouds mobility by using a tool that allows you to access and manage your contracts at any time from any device.The tool you use should allow you to keep track of changes made by multiple authors in one document. Youll then have a clear paper trail of changes and use, by user.What will you do with all that saved time?&nbsp;Share in the comments below.</content:encoded>
<category>legal</category>
<pubDate>
Fri, 14 Nov 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/3_quick_tips_to_save_time_with_contract_lifecycle_management</guid>
<dc:date>
2014-Nov-14T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 Early Warning Signs of a Revenue_Losing Contract Process</title>
<link>https://blog.springcm.com/5_early_warning_signs_of_a_revenue_losing_contract_process</link>
<description>Congratulations! You&rsquo;ve made the sale. Your&nbsp;new client has agreed that your product is the answer to their corporate needs and now all you need to do is send them the contract to sign.But wait.Where is the most recent version of the contract? Has it come out of the legal department yet? While you&rsquo;re hunting down that contract&nbsp;and checking to ensure it&rsquo;s the right one, your new client did a little more research and found a new solution to their problem with another company.</description>
<content:encoded>Congratulations! Youve made the sale. Your&nbsp;new client has agreed that your product is the answer to their corporate needs and now all you need to do is send them the contract to sign.But wait.Where is the most recent version of the contract? Has it come out of the legal department yet? While youre hunting down that contract&nbsp;and checking to ensure its the right one, your new client did a little more research and found a new solution to their problem with another company.When you have a contract bottleneck, the clock starts ticking and every second is money lost. Your executive team&nbsp;expects you&nbsp;to increase revenue, but you cant do your&nbsp;job if the contract process throws obstacles in your&nbsp;path.Eventually, a faulty contract management system can actually inhibit the growth of your business by lacking the ability to scale.Many managers dont realize theres a problem until it's a big one. Here are the early warning signs of a contract process that could be costing you revenue.5 Early Warning Signs of a Revenue_Losing Contract ProcessYour sales teams problems accessing NDAs and contract templates cause delays in the sales process.You have customers sliding past renewal deadlines without contact from sales.Your sales force spends more time repairing customer relations after accidental expirations or renewals than selling new products or services.Your customers have time to reconsider their decision because sales reps cant respond quickly enough.Customers walk away due to the perception of poor service.Dont let your contract process get in the way of your sales team. When you stop losing money due to contract delays, you may be surprised at how much more revenue you earn.Image source:&nbsp;Kirsty Hall&nbsp;on Flickr&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 18 Nov 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/5_early_warning_signs_of_a_revenue_losing_contract_process</guid>
<dc:date>
2014-Nov-18T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>3 articles that will make you rethink contract management</title>
<link>https://blog.springcm.com/3_articles_that_will_make_you_rethink_contract_management</link>
<description>We have a lot to say about contract management. And&nbsp;we&rsquo;re not the only ones talking about the evolving strategies driving this crucial&nbsp;business process. We recently ran across three&nbsp;articles that really got us thinking, and we wanted to share them with our loyal readers. These articles&nbsp;cover everything from the user experience to the basic features of&nbsp;contract management platforms;&nbsp;what contract management can do for businesses&nbsp;and even&nbsp;why a company might be legally obligated to have one.&nbsp;</description>
<content:encoded>We have a lot to say about contract management. And&nbsp;were not the only ones talking about the evolving strategies driving this crucial&nbsp;business process. We recently ran across three&nbsp;articles that really got us thinking, and we wanted to share them with our loyal readers. These articles&nbsp;cover everything from the user experience to the basic features of&nbsp;contract management platforms;&nbsp;what contract management can do for businesses&nbsp;and even&nbsp;why a company might be legally obligated to have one.&nbsp;Contract management on our minds&nbsp;1. "What is Contract Management?"Where its at: BusinessNewsDaily.comFor anyone who doesn't want to be caught&nbsp;scratching her&nbsp;head when contract management is mentioned at the&nbsp;next&nbsp;board meeting. This introductory article addresses the impact poor contract processes can have on revenue, and the positive outcomes of automating those processes.2.&nbsp;"Combating the perils and pitfalls of contract management"Where its at: InContextMagazine.comIf youre just now realizing that your contract process is impeding your sales teams and losing revenue, this article explains where the problems start and worst case scenarios if you don't take steps to remedy these&nbsp;chronic contract&nbsp;pains. If youre having doubts about the stakes involved with contract management, this is a must read.3. "Contract_Management Duties as a&nbsp;New Regulatory Device"Where its at: Scholarship.Law.Duke.EduWhile this academic paper is a little dense for lay people, skip along to an&nbsp;interesting question introduced on page 6: "Is there a legal duty to establish a contract management system in your company?" Right now, having a full_featured&nbsp;CLM system is arguably a&nbsp;best_practice, but it might&nbsp;also be a legal necessity depending on your industry. Is your current contract management process compliant? Or are you opening yourself up to risk&nbsp;with every new deal?&nbsp;Your turn: What are some of your favorite&nbsp;contract management articles?&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Thu, 20 Nov 2014 13:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/3_articles_that_will_make_you_rethink_contract_management</guid>
<dc:date>
2014-Nov-20T13:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>3 Signs it May Be Time to Invest in Contract Lifecycle Management</title>
<link>https://blog.springcm.com/3_signs_it_may_be_time_to_invest_in_contract_lifecycle_management</link>
<description>It's probably not news to you: in most companies the contract process is&nbsp;flawed. It's&nbsp;tedious and error_prone.If your organization falls into this camp, you've likely noticed an issue here and there. But, those issues add up, and they can be catastrophic to your&nbsp;bottom line.There are plenty of early warning signs that will let you know it&rsquo;s time for a more sophisticated approach, if you know what to look for.</description>
<content:encoded>It's probably not news to you: in most companies the contract process is&nbsp;flawed. It's&nbsp;tedious and error_prone.If your organization falls into this camp, you've likely noticed an issue here and there. But, those issues add up, and they can be catastrophic to your&nbsp;bottom line.There are plenty of early warning signs that will let you know its time for a more sophisticated approach, if you know what to look for.Here are 3 signs it may be time to&nbsp;invest in a contract lifecycle management solution:1. Missed Sales&nbsp;OpportunitiesIn high_growth companies, the sales force has to generate rapid revenue increases, meaning they need immediate access to the necessary contracts for new acquisitions, subscription renewals, add_ons and product or service bundling. If your current contract lifecycle management (CLM) system creates bottlenecks like waiting for approval signatures, sales suffer.Are customers going past renewal without contact from sales?Are there delays in the sales process due to poor contract or NDA organization?Are leads dropping out of the sales funnel while waiting for timely responses?These indicators point to needing a CLM&nbsp;solution that scales with company growth and increases sales.2. Pre_Audit PanicIf your company has an audit or inspection coming up and the sense of panic is palpable, its time to upgrade your contract management system. With many internally developed contract management systems, search and reporting capabilities are limited and contracts are scattered in multiple places. The result: You cant get the right information to the right people when they need it. A good CLM solution will include&nbsp;simple search features and report generation capabilities so you&nbsp;can get the right information to the right people when they need it.&nbsp;3. The same problems are happening again and again&nbsp;A&nbsp;mistake&nbsp;in the contract process can happen&nbsp;when it&nbsp;simply shouldn't. But, when that same&nbsp;problem arises again and again, it's a clear sign that you&nbsp;need a better contract management system. Here are some of the problems to look out for:&nbsp;Auto_renewed contracts for services you no longer need or want.Clients lost because their contracts didnt renew as scheduled.Opportunities lost to upsell current clients thanks to auto_renewal.Subcontractors creating liabilities because they dont have insurance.Unenforceable contracts discovered only after a breach has occurred.Are you seeing warning signs yet? Share in the comments below.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 25 Nov 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/3_signs_it_may_be_time_to_invest_in_contract_lifecycle_management</guid>
<dc:date>
2014-Nov-25T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>A Brief History of Contract Lifecycle Management</title>
<link>https://blog.springcm.com/a_brief_history_of_contract_lifecycle_management</link>
<description>From the Magna Carta to&nbsp;the Geneva Convention, contracts are&nbsp;an important part of society. But while society&nbsp;has changed greatly over the past&nbsp;several thousand years, the evolution of contract management has been noticeably slower. In fact, only in recent years&nbsp;has contract management _the writing, requesting, approving, storing and using of them _ improved.</description>
<content:encoded>From the Magna Carta to&nbsp;the Geneva Convention, contracts are&nbsp;an important part of society. But while society&nbsp;has changed greatly over the past&nbsp;several thousand years, the evolution of contract management has been noticeably slower. In fact, only in recent years&nbsp;has contract management _the writing, requesting, approving, storing and using of them _ improved.Is contract management history your present problem?In the beginning, there was Word Processor. There were&nbsp;also shared drives and spreadsheets. All contract activities happened&nbsp;offline. And&nbsp;these activities&nbsp;were tracked, if they were tracked at all, in spreadsheets. When new contracts needed to be drafted, the creator&nbsp;would have to find the most updated template on the shared drive&nbsp;and follow&nbsp;the approval process flow chart by&nbsp;walking the document&nbsp;to the appropriate offices.Most modern companies don't still use the same computers they used in the 1990s, but they still employ the same old contract management system. This can create problems when the number of contracts grows, or collaboration from multiple people is required.And then there was SaaSAs companies became more tech savvy&nbsp;in the early 2000's, so did contract management techniques. The larger companies developed in_house management systems, and some used simple, and limited, databases developed by others. These systems improved the processes of requesting, authoring, negotiating and approving contracts. However, many internal systems eventually became cluttered&nbsp;with outdated drafts, making it difficult for staff to find the most recent editions, keep track of changes, or react in a timely manner when contracts expired (or failed to expire). Liability concerns increased, as did the need for a better contract management solution.And finally, contract lifecycle management softwareContract Lifecycle Management Software, the latest incarnation of contract management, limits the potential for human error by&nbsp;automating&nbsp;time consuming, but error_prone, processes. Contracts can be created quickly from approved, secure templates; all changes are tracked; all approvals are recorded&nbsp;in real_time; reminders of milestones and expirations are automatically sent; past contracts are available through an efficient search tool; and creating reports for auditors and executives is a simple, fast process.&nbsp;Most importantly for today's growing companies, the software can scale _ relieving workflow and liability issues to allow for even greater&nbsp;growth.Welcome to the future. We promise, contract management is easier than it's ever been. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 02 Dec 2014 13:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/a_brief_history_of_contract_lifecycle_management</guid>
<dc:date>
2014-Dec-02T13:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Journey of Streamlining the Contracts Process [SlideShare]</title>
<link>https://blog.springcm.com/journey_of_streamlining_the_contracts_process_slideshare</link>
<description>NCR Corporation is a $6 billion global provider of consumer transaction&nbsp;technologies. They work in 180 countries, and their channel operations team sends contracts to&nbsp;364 unique partners on 6 continents.To say their contracts process can be complicated would be an understatement.In the SlideShare below, NCR Channel Operations Specialist&nbsp;Steve Lorenzen, shares how NCR has&nbsp;streamlined their contracts process __ ultimately saving time, money and a whole lot of headaches.</description>
<content:encoded>NCR Corporation is a $6 billion global provider of consumer transaction&nbsp;technologies. They work in 180 countries, and their channel operations team sends contracts to&nbsp;364 unique partners on 6 continents.To say their contracts process can be complicated would be an understatement.In the SlideShare below, NCR Channel Operations Specialist&nbsp;Steve Lorenzen, shares how NCR has&nbsp;streamlined their contracts process __ ultimately saving time, money and a whole lot of headaches.Download the slides with audio.How did NCR streamline their contracts process? Here are five&nbsp;ways:NCR took their contracts process length from two months to two minutes. (Tweet this)They took the contract burden off their sales team, and it impacted their business in a big way. (Tweet this)NCR went from "It's way too complex to automate," to "If you can do it the same way twice, you can automate it." (Tweet this)From streamlining a bad process to streamlining a better process. (Tweet this)NCR's contracts process involved way too many emails. Now, they receive the right email at the right time. (Tweet this)Lorenzen shared NCR's story (and went into great detail) in the on_demand webcast,&nbsp;Journey of Streamlining Contracts: A Conversation with NCR's Steve Lorenzen.&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Thu, 04 Dec 2014 13:15:00 GMT
</pubDate>
<guid>https://blog.springcm.com/journey_of_streamlining_the_contracts_process_slideshare</guid>
<dc:date>
2014-Dec-04T13:15:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 steps to successfully introduce change at your company</title>
<link>https://blog.springcm.com/5_steps_to_successfully_introduce_change_at_your_company</link>
<description>Effective change management is a vital part&nbsp;of any business. Change allows a company to&nbsp;better meet&nbsp;consumer trends and needs. &nbsp;Often, change management is focused on recalibrating your&nbsp;sales teams to meet changing&nbsp;buying behavior. Implementing a new sales strategy should&nbsp;boost profits by&nbsp;attracting new customers and retaining current ones.&nbsp; New sales initiatives are fairly easy to introduce, but difficult to reinforce. But with a good process for introducing and implementing changes, you can head off adoption issues. We've used the tips below to successfully&nbsp;introduce change at SpringCM, and we believe they can be used by our readers to achieve similar results.&nbsp;&nbsp;</description>
<content:encoded>Effective change management is a vital part&nbsp;of any business. Change allows a company to&nbsp;better meet&nbsp;consumer trends and needs. &nbsp;Often, change management is focused on recalibrating your&nbsp;sales teams to meet changing&nbsp;buying behavior. Implementing a new sales strategy should&nbsp;boost profits by&nbsp;attracting new customers and retaining current ones.&nbsp; New sales initiatives are fairly easy to introduce, but difficult to reinforce. But with a good process for introducing and implementing changes, you can head off adoption issues. We've used the tips below to successfully&nbsp;introduce change at SpringCM, and we believe they can be used by our readers to achieve similar results.&nbsp;&nbsp;Communicate how the change&nbsp;positively impacts your teamCommunication is the key for the new sales strategy to succeed.&nbsp; Sales managers must take the time to explain the reason for implementing changes.&nbsp; The explanation does not have to be a drawn out detailed overview, simply explain the reasons for the new changes. The explanation should be clear to all employees. &nbsp;Employees want to know why the new changes are occurring especially if the old sales strategy seems to be doing well.&nbsp; Give employees a chance to ask questions or voice their concerns in a constructive manner; employees will feel more involved with the process which contributes to the success of the new sales strategy.Encouragement goes a long wayThe explanation may not be enough to implement the new sales strategy in the business.&nbsp; You must encourage your employees throughout the process.&nbsp; Be consistent while implementing the new sales strategy.&nbsp; Consistency will show the employees&nbsp;you want the change to succeed.&nbsp; If needed, explain why the change will take a certain time span to show the end results. The employees must feel motivated to continue with the new sales strategy.&nbsp; If employees are not encouraged throughout the implementation of a new sales strategy,&nbsp;they will revert to the old system which will cost the business time and money.Provide new trainingA new sales strategy that involves different resource tools may require additional training.&nbsp; Updating current technological systems is the perfect way to aid in the success of implementing a new sales strategy. &nbsp;Utilizing the new Salesforce mobile application, for example, may require a comprehensive overview for employees who are not used to working on their phones.&nbsp;Employees cannot succeed without the proper knowledge on how to run the new system. &nbsp;Before the new strategy can be implemented, employees must be given a chance to learn new skills.&nbsp; The new tasks or approach will have to be mastered before continuing with the new strategy. Employees who do not have the proper skills to run the new changes in the organization will not implement the new sales strategy in a successful manner. If needed, schedule training seminars or workshops to aid in the process.&nbsp; Failure to train properly will result in failure of the new plan for the business.Keep your&nbsp;eyes&nbsp;on the dataCollecting data throughout the change process is the best way to find out if the new sales initiative is a success. The data will allow you a chance to view the new strategy against the old sales strategy. The data will allow you to keep track of the change during a specific sales cycle.&nbsp; Depending on the type of sales strategy initiative, you can track the difference in sales and profits, the number of new customers, and the number of referrals your company receives during this time period.&nbsp;Acknowledge the changeChange in a business can be unwelcome. When you take the time to train and implement a new sales strategy, some employees will rise to the occasion leading the way throughout the process. Recognizing successful and productive employees can help get others to embrace the change. By showing your appreciation for all the hard work, employees morale will increase which in turns increase productivity and sales.Have you successfully led a change management project at your company? Let us know what&nbsp;steps you followed in the comments below!&nbsp;Image via Flickr:&nbsp;Sebastiaan ter Burg</content:encoded>
<category>legal</category>
<pubDate>
Tue, 09 Dec 2014 21:00:01 GMT
</pubDate>
<guid>https://blog.springcm.com/5_steps_to_successfully_introduce_change_at_your_company</guid>
<dc:date>
2014-Dec-09T21:00:01Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>[Infographic] Contract Lifecycle Management: From Chaos to Cruise Control</title>
<link>https://blog.springcm.com/contract_lifecycle_management_chaos_to_control</link>
<description>Anyone who has participated in a sales contract knows how quickly things can spin out of control. So many parties have a vested interest in the wording, not to mention the successful execution&nbsp;of the contract that it's easy for careless hiccups to derail the entire arrangement. Your sales manager is concerned with making sure the contract crosses&nbsp;the finish line. Your client wants what they're paying for. The legal teams on both sides are combing Word docs with fine_toothed digital combs to guarantee the language is airtight. And the rep is just trying to keep all of the above happy.&nbsp;Everyone is doing the job they're paid to do, but unfortunately that doesn't make the contract's lifecycle any easier.&nbsp;Hence, contract lifecycle management (CLM). A full_featured&nbsp;CLM solution set provides automation for many of the tedious tasks that create friction during the sales contract process.</description>
<content:encoded>Anyone who has participated in a sales contract knows how quickly things can spin out of control. So many parties have a vested interest in the wording, not to mention the successful execution&nbsp;of the contract that it's easy for careless hiccups to derail the entire arrangement. Your sales manager is concerned with making sure the contract crosses&nbsp;the finish line. Your client wants what they're paying for. The legal teams on both sides are combing Word docs with fine_toothed digital combs to guarantee the language is airtight. And the rep is just trying to keep all of the above happy.&nbsp;Everyone is doing the job they're paid to do, but unfortunately that doesn't make the contract's lifecycle any easier.&nbsp;Hence, contract lifecycle management (CLM). A full_featured&nbsp;CLM solution set provides automation for many of the tedious tasks that create friction during the sales contract process.Below are some interesting statistics we've pulled together that reveal why forward_thinking companies are investing in CLM for 2015.&nbsp;&nbsp;Tweet// Share this Image On Your Site&lt;p&gt;&lt;strong&gt;Please include attribution to www.springcm.com with this graphic.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://go.springcm.com/hs_fs/hub/411038/file_2211875139_jpg/ContractsLifecycle_Infographic.jpg'&gt;&lt;img src='http://go.springcm.com/hs_fs/hub/411038/file_2211875139_jpg/ContractsLifecycle_Infographic.jpg' alt='From Chaos to Cruise Control' width='2011' border='0' /&gt;&lt;/a&gt;&lt;/p&gt;&nbsp;&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Thu, 11 Dec 2014 14:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/contract_lifecycle_management_chaos_to_control</guid>
<dc:date>
2014-Dec-11T14:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>Nucleus Research Releases Enterprise Content Management Value Matrix</title>
<link>https://blog.springcm.com/nucleus_research_releases_enterprise_content_management_value_matrix</link>
<description>Nucleus Research recently published its second Technology Value Matrix for Enterprise Content Management (ECM), and provided a status report on what they see as the &ldquo;rapidly evolving&rdquo; ECM space.&nbsp;</description>
<content:encoded>Nucleus Research recently published its second Technology Value Matrix for Enterprise Content Management (ECM), and provided a status report on what they see as the rapidly evolving ECM space.&nbsp;Where's the&nbsp;future of ECM?While some consider ECM deployments and technology to be&nbsp;some of the most mature in the enterprise space, Nucleus pointed out some interesting facts to demonstrate a robust future for ECM:Enterprises are averaging $7.50 returned for every dollar spent in their ECM deployments.Despite the relative maturity of the ECM market, vendors continue to develop and enhance offerings for cloud and hybrid deployments as users increasingly turn to these environments to produce higher ROI. Recent Nucleus research showed&nbsp;cloud solutions delivering 1.7 times more ROI&nbsp;than on_premise systems.The four driving forces of ECM&nbsp;Nucleus identified four driving forces that are being integrated into the product roadmap for ECM vendors moving into 2015 to deliver these new returns, including:ECM vendors have increased focus on refining their UI to make their platforms more intuitive to the end user.ECM vendors are looking to automate processes to improve data extractions and reduce the number of touches that content receives, thereby reducing human error.ECM solutions are moving to integrate into other enterprise management platforms and seek to provide alternative functionality when cross_platform integration isnt possible. These integrations provide a more streamlined and efficient experience for the user and reduce time spent switching between interfaces, increasing data integrity.Mobility and collaboration&nbsp;functions continue to be strong focal points in the functionality road map for vendors to enable employees to securely access, create, and share content from mobile devices.How do you store your secure content? If youre still holding out moving to the cloud, are you ready to join the ranks of those enjoying high security, ease of use and an exceptional ROI?&nbsp;The full report can be found here.Image source:&nbsp;freeparking :_| via Flickr</content:encoded>
<category>legal</category>
<pubDate>
Tue, 16 Dec 2014 23:48:00 GMT
</pubDate>
<guid>https://blog.springcm.com/nucleus_research_releases_enterprise_content_management_value_matrix</guid>
<dc:date>
2014-Dec-16T23:48:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>How to implement change at your organization</title>
<link>https://blog.springcm.com/how_to_implement_change_at_your_organization</link>
<description>Change is a vital component in the successful operation of any business. Change allows a company to grow and expand all while keeping up with consumer or industry trends and your organizational needs. Change is often met with reluctance due to its impact on existing workflow and resources.&nbsp;Here are some best practice tips to a successful implementation of changes in your organization:</description>
<content:encoded>Change is a vital component in the successful operation of any business. Change allows a company to grow and expand all while keeping up with consumer or industry trends and your organizational needs. Change is often met with reluctance due to its impact on existing workflow and resources.&nbsp;Here are some best practice tips to a successful implementation of changes in your organization:1. CommunicationCommunication is the key for a new strategy to succeed. Management must take the time to explain the reason for implementing changes. The explanation does not have to be a drawn out in a detailed overview; simply explain the reasons for the new changes and who its impacting. The explanation should be clear to what is changing and when. Depending on the scope of this change your communication plan might include different level of messaging based on your audience. &nbsp;Provide your audience with a chance to ask questions or voice their concerns in a constructive manner. An engaged audience and a solid communication plan are instrumental in successfully implementing change.2. EngagementThe explanation of why may not be enough to implement new strategies in the business.&nbsp;Engage your employees throughout the process. Be consistent while implementing new strategies by keeping the door open for feedback. Engagement with your audience will show that you want the change to succeed.&nbsp;If needed, explain why the change will take a certain time span to show the end results. The people impacted by the change must feel motivated and engaged in a positive manner in order for them to adopt what is taking place.&nbsp;If your audience feels like they have not been engaged or encouraged throughout the implementation,&nbsp;they may ignore or revert back to business as usual.3. TrainingA new business strategy that involves different resource tools should require additional training. Updating current technological systems is the perfect way to aid in the success of implementing a new business strategy. For example, utilizing the Salesforce1 mobile application may require a comprehensive overview for employees who are not used to working on their phones.&nbsp;Employees cannot succeed without the proper knowledge on how to run the new system. &nbsp;Before the new strategy can be implemented, employees must be given an opportunity to learn new skills. Schedule training seminars or workshops to aid in the process.&nbsp; Employees who do not have the proper training or skills to run the application will only hurt the implementation, lowering your adoption on the new business strategy. Failure to train properly will result in failure. Cover your bases with a training curriculum.4. Data CollectionHow are you defining if this new strategy was a success? Collecting data throughout the change process is the best way to find out. Have a baseline so that you have some place to start, then keep track of the change during a specific cycle.&nbsp;For example, you can track the difference in sales and profits, the number of new customers and the number of referrals your company receives during this time period.5. AcknowledgementChange in a business can be unwelcome. When you take the time to train and implement a new strategy, some will rise to the occasion leading the way throughout the process. Recognizing those successful and productive employees can help get others to embrace the change making them the official Change Champions. Showing your appreciation for all the hard work can increase morale and your new strategies can get the adoption you need to be successful.Denise Carbone is the Chicago Salesforce User Group Leader and a Salesforce MVP. She focuses&nbsp;on sales analytics with an emphasis on best practices, business process improvement and pipeline management. You can find her on LinkedIn or follow her on Twitter.&nbsp;Image:&nbsp;tracyshaun&nbsp;on Flickr&nbsp;</content:encoded>
<category>legal</category>
<pubDate>
Tue, 23 Dec 2014 14:30:00 GMT
</pubDate>
<guid>https://blog.springcm.com/how_to_implement_change_at_your_organization</guid>
<dc:date>
2014-Dec-23T14:30:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>The 5 Most Popular Contract Management and Content Posts of 2014</title>
<link>https://blog.springcm.com/the_5_most_popular_contract_management_and_content_posts_of_2014</link>
<description>At this point in the year, you're probably&nbsp;focused on all that you're going to accomplish in 2015. Before you finish that impressive list of next year's goals, take a few minutes to review all that you accomplished in 2014.</description>
<content:encoded>At this point in the year, you're probably&nbsp;focused on all that you're going to accomplish in 2015. Before you finish that impressive list of next year's goals, take a few minutes to review all that you accomplished in 2014.Whether you increased your close rate, closed more deals, got a meeting with a prospect you've been targeting for awhile or upsold&nbsp;an existing customer; looking back and learning from&nbsp;everything that took place in 2014&nbsp;(good, bad or indifferent) will set you up for success in the new&nbsp;year. &nbsp;It's hard for us to pick just one highlight of our year. One that really stands out to us, though, is sharing contract management and content_related insight right here on the SpringCM blog. (We're planning on upping the ante in 2015.&nbsp;Subscribe to get new posts delivered to your inbox.)Here are the 5 most_viewed SpringCM blog posts of 20145. Contract management and lawyers: 3 common misconceptionsIt's nearly impossible&nbsp;to close&nbsp;a solid deal&nbsp;without a lawyer's involvement. In this post, we covered three common misconceptions about a lawyers role in contract management,&nbsp;and&nbsp;how simple fixes can save your company both time and budget when closing deals.4. [Infographic] What is predictive content?Our friends at Aragon Research&nbsp;put together this infographic highlighting what you NEED to know about predictive&nbsp;content.&nbsp;3. Three eSignature features necessary for contract managementAt the end of any contract process there is always a&nbsp;signature. There are plenty of e_signature platforms out there that make it easy to sign on the dotted line from your computer or mobile device.&nbsp;But when it comes to an enterprise_class contract management&nbsp;solution, what are some of the e_signature features you should be looking for?2. How to run a cloud software company in your 50sOur CEO, Greg Buchholz, authored our&nbsp;second most popular post of 2014. As a 50_something running a cloud software company,&nbsp;many VC's would consider him&nbsp;too old or "past his&nbsp;prime". How does he do it?&nbsp;1. Contract Management: 5 pitfalls to avoid in SalesforceJessica VanOflen, our Director of Sales Operations,&nbsp;has seen&nbsp;sales reps work on a deal for months.&nbsp;Her&nbsp;experience has shown that everything that can happen will happen while creating, negotiating and managing a contract.&nbsp;What&nbsp;hinders the process and how can you avoid those obstacles?&nbsp;What was your favorite contract or content&nbsp;blog post of 2014? Please share in the comments.&nbsp;Image source: Pixaby&nbsp;Have an article that performed great on your blog about Contract or Content Management? Share it here.</content:encoded>
<category>legal</category>
<pubDate>
Tue, 30 Dec 2014 13:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/the_5_most_popular_contract_management_and_content_posts_of_2014</guid>
<dc:date>
2014-Dec-30T13:00:00Z
</dc:date>
<dc:creator>Team SpringCM</dc:creator>
</item>
<item>
<title>5 predictions for contract lifecycle management in 2015</title>
<link>https://blog.springcm.com/predictions_for_contract_lifecycle_management_in_2015</link>
<description>We're all seeing a lot of "Best of 2014" posts pop up in our feeds this week, and while it's well and good to take stock of 2014's wins, those in the SaaS space _ particularly the Salesforce ecosystem _ should be looking to, and preparing for 2015. There are a lot of areas open to disruption, and one of them is contract lifecycle management (CLM). According to Bluewolf, CLM is one of the top three focus areas for current Salesforce users.Here are some predictions for how CLM will evolve in 2015 and change the way your company does business.&nbsp;</description>
<content:encoded>We're all seeing a lot of "Best of 2014" posts pop up in our feeds this week, and while it's well and good to take stock of 2014's wins, those in the SaaS space _ particularly the Salesforce ecosystem _ should be looking to, and preparing for 2015. There are a lot of areas open to disruption, and one of them is contract lifecycle management (CLM). According to Bluewolf, CLM is one of the top three focus areas for current Salesforce users.Here are some predictions for how CLM will evolve in 2015 and change the way your company does business.&nbsp;1. Outdated and manual&nbsp;contract management processes will lead to big dollar liabilityThere will be multiple seven&nbsp;figure disagreements and settlements between service providers&nbsp;and the customers, all because signed contracts couldn't be located, there were rogue terms and conditions in the final agreement, or unknown&nbsp;special terms and conditions.2. Legal will have a more active role in contract managementWhile sales teams will continue looking to view CLM as a way to increase the velocity of the contract process, legal teams will assume a greater and more active role managing contract risk and compliance.&nbsp;3. A demand for scalable, flexible and mobile CLMBuyers will realize CLM solutions&nbsp;need to bescalable and flexible, with&nbsp;the ability to&nbsp;integrate with multiple CRM solutions.&nbsp;2015 will bring even more complex contract work processes, withworkflow taking center stage. As with most other software solutions, people will expectCLM to go mobile, and it will. Everyone from the sales rep to the executive sponsor will be able to track and support contract processes from any device.&nbsp;4.&nbsp;The rise of customer experience in CLMThe customer (or buyer) experience has continued to gain traction as a deciding factor in the success of SaaS companies. CLM&nbsp;will reach a maturity that allows companies to differentiate based on customer experience, whereas features and price will enter the domain of table stakes.&nbsp;5. CLM late adopters will continue to underwhelm new customers&nbsp;The businesses that haven't&nbsp;streamlined their contract process will fall even further behind. Late adopters&nbsp;will&nbsp;have poor relationships with&nbsp;new customers and partners. Those that have committed to automating contracts management will push CLM vendors even further to increase productivity, improve visibility and reduce risk for their business.How do you think contract lifecycle management will change in 2015?&nbsp; Image source:&nbsp;Steve Bowbrick&nbsp;on Flickr</content:encoded>
<category>legal</category>
<pubDate>
Wed, 31 Dec 2014 14:00:00 GMT
</pubDate>
<guid>https://blog.springcm.com/predictions_for_contract_lifecycle_management_in_2015</guid>
<dc:date>
2014-Dec-31T14:00:00Z
</dc:date>