<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Online Database, CRM and PaaS - The LongJump Blog &#187; Case Studies</title>
	<atom:link href="http://www.longjumpblog.com/blog/category/case-studies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.longjumpblog.com/blog</link>
	<description>Discussions of SaaS, Cloud Computing, PaaS &#38; Online Database Apps</description>
	<lastBuildDate>Tue, 09 Aug 2011 20:12:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Know Your History, Using the PRIORVALUE() Function</title>
		<link>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/</link>
		<comments>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 00:13:56 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Online Database]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[change management]]></category>
		<category><![CDATA[change notification]]></category>
		<category><![CDATA[change tracking]]></category>
		<category><![CDATA[formula]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=680</guid>
		<description><![CDATA[One deeply set feature in LongJump is the ability to find out what the value of a previous field was. It&#8217;s immensely helpful, however, when you&#8217;re building data policies to be notified of changes to records, but only specific changes. To accomplish this, you&#8217;d use the PRIORVALUE() boolean function in LongJump&#8217;s formula expression engine. To [...]]]></description>
			<content:encoded><![CDATA[<p>One deeply set feature in LongJump is the ability to find out what the value of a previous field was. It&#8217;s immensely helpful, however, when you&#8217;re building data policies to be notified of changes to records, but only specific changes. To accomplish this, you&#8217;d use the <strong>PRIORVALUE()</strong> boolean function in LongJump&#8217;s formula expression engine.</p>
<p>To demonstrate, I&#8217;ll actually use a real world example: <strong>ours</strong>.</p>
<p>When users sign up for a <a title="free trial online database paas and crm" href="https://na.longjump.com/networking/Service?t=2308">free trial</a> on LongJump, a record is added in the backend, and we store the information about them as if they were a paying customer account. That record also has a TRUE/FALSE field called <strong><em>trial_account</em></strong>. Our payment system automatically flips that switch from TRUE to FALSE, once that customer converts (signs up for a paid account).</p>
<p>Because I&#8217;m a nosy marketing person, I wanted to know the exact moment that happens. It&#8217;s informative, but it also gives me a psychological lift of &#8220;<strong>Hey, we have a new paying customer!</strong>&#8221;</p>
<p>Now, I could have written a simple policy that said anytime that record is updated and the <em><strong>trial_account</strong></em> field is FALSE, send me an email. In fact, I tried that. But then anytime that record would be updated for any reason, that email would go out, and I was deluged with unusable notifications.</p>
<p>That&#8217;s where the <strong>PRIORVALUE</strong> function comes in. Here&#8217;s what it looks like. (Click on the screenshot if you want the full size view)</p>
<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/convert-from-trial-data-policy.png"><img class="alignnone size-medium wp-image-681" title="convert-from-trial-data-policy" src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/convert-from-trial-data-policy-300x188.png" alt="" width="300" height="188" /></a></p>
<p>This is an action-based policy that runs whenever the record is updated and it compares the PRIORVALUE of trial_account to the current value using the formula-based criteria. The key is to build the expression to check for both the prior and current value.</p>
<p style="padding-left: 30px;">(PRIORVALUE(trial_account) = TRUE) &amp;&amp; (trial_account = FALSE)</p>
<p>When that change happens on a record, the policy executes a simple email notification action to me that includes the name of the company that converted and the number of users. I could also send this to multiple team members.</p>
<p><a href="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/customer-conversion-notification.png"><img class="alignnone size-medium wp-image-682" title="customer-conversion-notification" src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/07/customer-conversion-notification-300x293.png" alt="" width="300" height="293" /></a></p>
<p>Of course, this basic logic could be used for a host of process situations and results. Let&#8217;s say you have an employee candidate that goes from prospective to hired. Or let&#8217;s say as part of this policy, I also want to update another field in the record. Or I want to start following that record in <a title="social enterprise" href="http://lj.platformatyourservice.com/wiki/Relay">Relay</a>. Or, through the beauty of LongJump&#8217;s data policies, you could string up multiple actions to take place. You can do a lot of process automation, simply by recognizing your historical values. PRIORVALUE can even be the basis for a view or report.</p>
<p>Have other examples of how you might use PRIORVALUE()? Submit a comment below as I&#8217;m sure we&#8217;d love to know about them.</p>
<p>For more information on <a title="data policies in LongJump" href="http://lj.platformatyourservice.com/wiki/Data_policies">Data Policies, go here</a>. And for more on our <a title="formula expressions in longjump" href="http://lj.platformatyourservice.com/wiki/Formula_Functions">Formula Expressions, go here</a>.</p>
<p>&nbsp;</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/change+management' rel='tag' target='_self'>change management</a>, <a class='technorati-link' href='http://technorati.com/tag/change+notification' rel='tag' target='_self'>change notification</a>, <a class='technorati-link' href='http://technorati.com/tag/change+tracking' rel='tag' target='_self'>change tracking</a>, <a class='technorati-link' href='http://technorati.com/tag/formula' rel='tag' target='_self'>formula</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2011/07/28/history-priorvalue-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Web Forms to Populate Your Database</title>
		<link>http://www.longjumpblog.com/blog/2011/06/21/web-forms-database/</link>
		<comments>http://www.longjumpblog.com/blog/2011/06/21/web-forms-database/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 13:08:07 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Online Database]]></category>
		<category><![CDATA[database form]]></category>
		<category><![CDATA[online form]]></category>
		<category><![CDATA[web form]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=673</guid>
		<description><![CDATA[LongJump’s web form feature is an easy, powerful way to let anyone add records to your database. Using a form embedded on a page in your website, visitors or customers can fill in the form and have it create a record in a specific object. It’s so easy, you just have to embed a single [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Easy Web Forms" href="http://lj.platformatyourservice.com/wiki/Web_Forms">LongJump’s web form feature</a> is an easy, powerful way to <strong><span class="highlight">let anyone add records to your database</span></strong>. Using a form embedded on a page in your website, visitors or customers can fill in the form and have it create a record in a specific object. It’s so easy, you just have to <strong>embed a single line of code into your page</strong> and people from outside your company can provide information.</p>
<p><img src="http://www.longjumpblog.com/blog/wp-content/uploads/2011/05/webforms.png" alt="" /></p>
<p>Web forms are  ideal for streamlining lead capture and customer inquiries, newsletter subscriptions, request for quotes, simple surveys, more.</p>
<p>Now we give you even more control with the ability to <strong>include file attachments and image fields</strong>. Maybe you’re a talent agency and are collecting headshots from prospective actors. Maybe you want your customers to submit their own photos of them using your product. Maybe you’re building a database of cats asking to eat cheeseburgers. Using web forms, you can get that information into your LongJump database in a snap.</p>
<p>And once that record is in the system, you can automatically assign it to other people, run data policies or simply analyze it with reports.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/database+form' rel='tag' target='_self'>database form</a>, <a class='technorati-link' href='http://technorati.com/tag/online+form' rel='tag' target='_self'>online form</a>, <a class='technorati-link' href='http://technorati.com/tag/web+form' rel='tag' target='_self'>web form</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2011/06/21/web-forms-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delving Deep into Digital Signatures</title>
		<link>http://www.longjumpblog.com/blog/2010/05/25/delving-deep-into-digital-signatures/</link>
		<comments>http://www.longjumpblog.com/blog/2010/05/25/delving-deep-into-digital-signatures/#comments</comments>
		<pubDate>Tue, 25 May 2010 17:07:11 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[bp]]></category>
		<category><![CDATA[digital signature]]></category>
		<category><![CDATA[epa]]></category>
		<category><![CDATA[fda]]></category>
		<category><![CDATA[gulf oil spill]]></category>
		<category><![CDATA[PaaS]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=525</guid>
		<description><![CDATA[One of the most critical features in LongJump&#8217;s Platform-as-a-Service for enabling paperless workflow and audit compliance is the use of digital signatures. For government entities, compliance-heavy industries like healthcare and manufacturing, or even the growing Green Tech verticals, LongJump provides built-in support for digitally signing records to reduce paperwork while dramatically improving accountability. An example [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most critical features in LongJump&#8217;s Platform-as-a-Service for enabling paperless workflow and audit compliance is the use of digital signatures.</p>
<p>For <a title="Government Public Sector PaaS" href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=67&amp;Itemid=186">government entities</a>, compliance-heavy industries like healthcare and manufacturing, or even the growing <a title="Green Tech PaaS" href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=71&amp;Itemid=190">Green Tech</a> verticals, LongJump provides built-in support for digitally signing records to  reduce paperwork while dramatically improving accountability. An example of when lack of certified oversight and accountability is a problem? How about test records from the oil spill in the Gulf? Without secured, certified processes in place, it&#8217;s going to be difficult to identify points of failure and establish liability.</p>
<p>The short video below provides an overview of how the Digital Signatures work.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="470" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/TiY_Jjd7FCI&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="470" height="288" src="http://www.youtube.com/v/TiY_Jjd7FCI&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>To use digital signatures in LongJump, here is what you need to know:</p>
<ul>
<li>Signatures can be encrypted using public, private or certificate keys and provide complete control for compliance and audit requirements, such as those defined in the <a href="http://www.21cfrpart11.com/">FDA’s CFR Part 11</a> or the EPA&#8217;s <a href="http://www.epa-echo.gov/echo/">ECHO</a>.</li>
<li>Digital Signatures are set up by selecting specific fields that are signed for. For example, in a approval of meeting a test record with digital signature settings in place, you can set up a hierarchy of signature areas where the submitter must first sign the record before the user’s manager can access and sign the record.</li>
<li>LongJump enables you to define who can sign a record by limiting who can see and edit the document based on their role, team, or specific users.</li>
<li>When signing a document, users are asked for their password and pass phrase.</li>
<li>A single record can also have multiple signing blocks consisting of  fields and multiple users can sign a document as part of an approval  process.</li>
<li>Once a signature is in place, those fields cannot be modified without voiding the signature.</li>
</ul>
<p>Of course, like all <a href="https://na.longjump.com/networking/Service?t=8">LongJump web-based applications</a>, you will be able to easily report on records, as well as create policies for when signed documents do or do not meet certain conditions. LongJump also keeps a log on signature related activities for a complete audit trail.</p>
<p>You can learn more about enabling the <a href="http://lj.platformatyourservice.com/~platfor1/wiki/index.php?title=Digital_Signatures">digital signature feature</a> from the Support Wiki.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/bp' rel='tag' target='_self'>bp</a>, <a class='technorati-link' href='http://technorati.com/tag/digital+signature' rel='tag' target='_self'>digital signature</a>, <a class='technorati-link' href='http://technorati.com/tag/epa' rel='tag' target='_self'>epa</a>, <a class='technorati-link' href='http://technorati.com/tag/fda' rel='tag' target='_self'>fda</a>, <a class='technorati-link' href='http://technorati.com/tag/gulf+oil+spill' rel='tag' target='_self'>gulf oil spill</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/05/25/delving-deep-into-digital-signatures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ziff Davis Enterprise eSeminar Series on PaaS</title>
		<link>http://www.longjumpblog.com/blog/2010/04/08/ziff-davis-enterprise-eseminar-series-on-paas/</link>
		<comments>http://www.longjumpblog.com/blog/2010/04/08/ziff-davis-enterprise-eseminar-series-on-paas/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 20:25:46 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[enterprise applications]]></category>
		<category><![CDATA[isv]]></category>
		<category><![CDATA[IT department]]></category>
		<category><![CDATA[PaaS]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[software-as-a-service]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=506</guid>
		<description><![CDATA[We just wrapped up our third eSeminar with ZDEnterprise &#8220;How ISVs Can Leverage Cloud Computing to Deliver New SaaS Business Apps in Months, Not Years.&#8221; Many thanks to Adam Day, VP of Business Development at HRAnswerlink for his participation on describing how his firm was able to leverage LongJump&#8217;s on-premise PaaS to drive rapid deployment [...]]]></description>
			<content:encoded><![CDATA[<p>We just wrapped up our third eSeminar with ZDEnterprise &#8220;<a href="http://www.eseminarslive.com/c/a/Cloud-Computing/LongJump040810/">How  ISVs Can Leverage Cloud Computing to Deliver New SaaS Business Apps in  Months, Not Years</a>.&#8221;</p>
<p>Many thanks to Adam Day, VP of Business Development at <a href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=24:hranswerlink-cs&amp;catid=11:case-studies&amp;Itemid=157">HRAnswerlink</a> for his participation on describing how his firm was able to leverage <a href="http://www.longjump.com/index.php?option=com_content&amp;view=article&amp;id=6&amp;Itemid=62">LongJump&#8217;s on-premise PaaS</a> to drive rapid deployment of their new SaaS offerings.</p>
<p>This follows past eSeminars including:</p>
<ul>
<li><a href="http://www.eseminarslive.com/c/a/Cloud-Computing/LongJump022510/">Cloud  Computing, SaaS and Its Impact on Channel Solution Providers</a></li>
</ul>
<ul>
<li><a href="http://www.eseminarslive.com/c/a/Application-Development/LongJump012710/">New  Strategies For Building Business Applications In 2010</a></li>
</ul>
<p>If you&#8217;d like to view this eSeminar and any in the past that cover SaaS, PaaS and Cloud Computing, you can <a href="http://www.eseminarslive.com/cp/bio/LongJump/">click here for recorded archives</a>.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/application+development' rel='tag' target='_self'>application development</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise' rel='tag' target='_self'>enterprise</a>, <a class='technorati-link' href='http://technorati.com/tag/enterprise+applications' rel='tag' target='_self'>enterprise applications</a>, <a class='technorati-link' href='http://technorati.com/tag/isv' rel='tag' target='_self'>isv</a>, <a class='technorati-link' href='http://technorati.com/tag/IT+department' rel='tag' target='_self'>IT department</a>, <a class='technorati-link' href='http://technorati.com/tag/PaaS' rel='tag' target='_self'>PaaS</a>, <a class='technorati-link' href='http://technorati.com/tag/Platform-as-a-Service' rel='tag' target='_self'>Platform-as-a-Service</a>, <a class='technorati-link' href='http://technorati.com/tag/saas' rel='tag' target='_self'>saas</a>, <a class='technorati-link' href='http://technorati.com/tag/software-as-a-service' rel='tag' target='_self'>software-as-a-service</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2010/04/08/ziff-davis-enterprise-eseminar-series-on-paas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Case Study: How LongJump Enabled AMLG to Help Homeowners During the Mortgage Crisis</title>
		<link>http://www.longjumpblog.com/blog/2009/10/19/new-case-study-how-longjump-enabled-amlg-to-help-homeowners-during-the-mortgage-crisis/</link>
		<comments>http://www.longjumpblog.com/blog/2009/10/19/new-case-study-how-longjump-enabled-amlg-to-help-homeowners-during-the-mortgage-crisis/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 21:26:54 +0000</pubDate>
		<dc:creator>dCheng</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Platform-as-a-Service]]></category>
		<category><![CDATA[Sales and CRM]]></category>
		<category><![CDATA[american mitigation law group]]></category>
		<category><![CDATA[mortgage crisis]]></category>
		<category><![CDATA[mortgage industry]]></category>

		<guid isPermaLink="false">http://www.longjumpblog.com/blog/?p=441</guid>
		<description><![CDATA[Be sure to visit our website to read about how American Mitigation Law Group, a loan modification company in Del Mar, California is helping homeowners keep their homes during the mortgage crisis. We spoke with Nick Hasselwander at AMLG about how they are using the LongJump platform and CRM to build a complete mitigation workflow [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://longjump.com/customers/amlg.htm"><img class="alignnone size-full wp-image-442" title="Nick Hasselwander, AMLG" src="http://www.longjumpblog.com/blog/wp-content/uploads/2009/10/nick-amlg-200x200.png" alt="Nick Hasselwander, AMLG" width="200" height="200" /></a></p>
<p>Be sure to <a href="http://longjump.com/customers/amlg.htm">visit our website</a> to read about how American Mitigation Law Group, a <a href="http://www.amlgloanmodification.com/">loan modification</a> company in Del Mar, California is helping homeowners keep their homes during the mortgage crisis. We spoke with Nick Hasselwander at AMLG about how they are using the LongJump platform and CRM to build a complete mitigation workflow for their clients in 30 states.</p>
<p>One of the most compelling points Nick makes is:</p>
<blockquote><p>“Even though we saw the crisis coming, which is why we were in the market, everything was still happening so fast. Because the industry changed and rules were being added, managing processes was difficult. We would refine a process to a point that it was effective, and then have to scrap it because of new requirements. There were no software tools we could acquire that would instill any best practices. The one thing we could rely on was LongJump enabling us to make changes quickly and transition the team effectively as we continued to refine and redefine new processes.”</p></blockquote>
<p>Nick and AMLG&#8217;s story was also featured in <a href="http://www.imfpubs.com/issues/imfpubs_imp/13_20/news/1000012412-1.html">Inside Mortgage Finance</a> (Subscription Required) in a story on Cloud Computing.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/american+mitigation+law+group' rel='tag' target='_self'>american mitigation law group</a>, <a class='technorati-link' href='http://technorati.com/tag/cloud+computing' rel='tag' target='_self'>cloud computing</a>, <a class='technorati-link' href='http://technorati.com/tag/mortgage+crisis' rel='tag' target='_self'>mortgage crisis</a>, <a class='technorati-link' href='http://technorati.com/tag/mortgage+industry' rel='tag' target='_self'>mortgage industry</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.longjumpblog.com/blog/2009/10/19/new-case-study-how-longjump-enabled-amlg-to-help-homeowners-during-the-mortgage-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

