<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Clovertech | Sean Farley | Activity</title>
	<link>https://clovertech.infor.com/members/sean-farley/activity/</link>
	<atom:link href="https://clovertech.infor.com/members/sean-farley/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Sean Farley.</description>
	<lastBuildDate>Thu, 16 Apr 2026 14:36:17 -0400</lastBuildDate>
	<generator>https://buddypress.org/?v=</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
	
						<item>
				<guid isPermaLink="false">91412a0fb7f4897cbb5fdb9d0bb00bd2</guid>
				<title>Sean Farley replied to the topic how to filter message based on patient gender? in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/how-to-filter-message-based-on-patient-gender/#post-86310</link>
				<pubDate>Fri, 22 Jun 2018 20:24:04 -0400</pubDate>

									<content:encoded><![CDATA[<p>The following code would filter off all messages where the gender is male. &nbsp;Or to be more technical, where the PID:8 value is &#8220;M&#8221;</p>
<p>If you have any questions, let me know.</p>
<p>#########################################################################<br />
# Name: &nbsp; &nbsp; &nbsp; &nbsp; gender_filter.tcl&hellip;<span class="activity-read-more" id="activity-read-more-1465"><a href="https://usspvlclovertch2.infor.com/forums/topic/how-to-filter-message-based-on-patient-gender/#post-86310" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">401e8521aa4ead5a6daa6d6311df6062</guid>
				<title>Sean Farley replied to the topic HL7 2.6 OBX 23-25 Perfoming Organizatino for Lab in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/hl7-2-6-obx-23-25-perfoming-organizatino-for-lab/#post-85444</link>
				<pubDate>Fri, 18 Aug 2017 18:18:47 -0400</pubDate>

									<content:encoded><![CDATA[<p>I&#8217;ve never heard from the state or government what they prefer.</p>
<p>We have a Mirth engine set up as our HIE server so we can interface lab, rad, and transcriptions to private practices. &nbsp;Our organization currently has 4 hospitals so the first question that always comes up when we take on one of these projects is, how do we display the resulting&hellip;<span class="activity-read-more" id="activity-read-more-9699"><a href="https://usspvlclovertch2.infor.com/forums/topic/hl7-2-6-obx-23-25-perfoming-organizatino-for-lab/#post-85444" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">77d069ade413e823277dd08a572124ff</guid>
				<title>Sean Farley replied to the topic TCL scrip for changing date from MM/DD/YYYY to YYYYMMDD in the forum Tcl Library</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/tcl-scrip-for-changing-date-from-mm-dd-yyyy-to-yyyymmdd/#post-85267</link>
				<pubDate>Thu, 17 Aug 2017 18:30:45 -0400</pubDate>

									<content:encoded><![CDATA[<p>Charlie&#8217;s answer is best! &nbsp;I wasn&#8217;t sure if &#8220;clock scan&#8221; liked the MM/DD/YYYY&#8221; format, but I verified that it does in fact work.</p>
<p>set xlateOutVals [clock format [clock scan $date] -format &#8220;%Y%m%d&#8221;]</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">26e44ad7ddd502c79070425daf63906c</guid>
				<title>Sean Farley replied to the topic Date/Time formatting in the forum General</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/date-time-formatting/#post-85110</link>
				<pubDate>Thu, 17 Aug 2017 18:15:34 -0400</pubDate>

									<content:encoded><![CDATA[<p>You should be able to use something like the following:</p>
<p>set sDate &#8220;201704270933&#8221;</p>
<p>set xlateOutVals [clock format [clock scan $sDate -format &#8220;%Y%m%d%H%M&#8221; ] -format &#8220;%m/%d/%Y %H:%M&#8221;]</p>
<p>This will turn 201704270933 into 04/27/2017 09:33.</p>
<p>Thanks.</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">7e799d2ea7b9f81d25770bb184c6d122</guid>
				<title>Sean Farley replied to the topic TCL scrip for changing date from MM/DD/YYYY to YYYYMMDD in the forum Tcl Library</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/tcl-scrip-for-changing-date-from-mm-dd-yyyy-to-yyyymmdd/#post-85265</link>
				<pubDate>Wed, 16 Aug 2017 20:52:12 -0400</pubDate>

									<content:encoded><![CDATA[<p>You have already broken the date into a list. &nbsp;Each element in the list is part of the new date format that you need. &nbsp;I think you can just change your last line to:</p>
<p>set xlateOutVals &#8220;[lindex $date 2][lindex $date 0][lindex $date 1]&#8221;</p>
<p>That should put it in YYYYMMDD format. &nbsp;I hope that helps.</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">0bd2a605078819ba434338f245aa7278</guid>
				<title>Sean Farley replied to the topic Using cloverleaf to send to HTTP or LLP/MLLP endpoints in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/using-cloverleaf-to-send-to-http-or-llp-mllp-endpoints/#post-83521</link>
				<pubDate>Wed, 13 Jan 2016 20:55:06 -0500</pubDate>

									<content:encoded><![CDATA[<p>I can&#8217;t confirm or deny if Cloverleaf supports sending to HTTP destinations. But figured it might be worth sharing what we did in a similar situation. </p>
<p>We have an interface in which the final destination is an HTTP post also. &nbsp;The sending interface is also a Cerner OpenEngine interface. &nbsp;We pass the message from OpenEngine to Cloverleaf, and then&hellip;<span class="activity-read-more" id="activity-read-more-4747"><a href="https://usspvlclovertch2.infor.com/forums/topic/using-cloverleaf-to-send-to-http-or-llp-mllp-endpoints/#post-83521" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">c46782d462906f3daf35e4bfc0ad7ab1</guid>
				<title>Sean Farley replied to the topic Configuring single alert to email multiple email addresses. in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/configuring-single-alert-to-email-multiple-email-addresses/#post-83526</link>
				<pubDate>Wed, 13 Jan 2016 18:19:52 -0500</pubDate>

									<content:encoded><![CDATA[<p>Thank you Brent and G! &nbsp;I never would have guessed that. &nbsp;I have confirmed this works on our engine.</p>
<p>Thanks again!</p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">63dc27ad8448800960c2e007ac0261db</guid>
				<title>Sean Farley replied to the topic Question about deleting outbound threads and their routes. in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/question-about-deleting-outbound-threads-and-their-routes/#post-81775</link>
				<pubDate>Wed, 31 Dec 2014 15:04:30 -0500</pubDate>

									<content:encoded><![CDATA[<p>Looking back at the configurations, the source thread was, in fact, in a different process than the outbound thread. &nbsp;It is possible that I only bounced the one process and not the other, leaving the configuration in the source process applied. This would explain how the messages got built up in the recovery database.</p>
<p>I will also look into adding&hellip;<span class="activity-read-more" id="activity-read-more-11382"><a href="https://usspvlclovertch2.infor.com/forums/topic/question-about-deleting-outbound-threads-and-their-routes/#post-81775" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
		
	</channel>
</rss>