<?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 | Sheila | Activity</title>
	<link>https://clovertech.infor.com/members/pari-shaffe/activity/</link>
	<atom:link href="https://clovertech.infor.com/members/pari-shaffe/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Sheila.</description>
	<lastBuildDate>Sat, 11 Apr 2026 10:18:08 -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">de0bf22f5f6edbba998aa0d137a1972f</guid>
				<title>Sheila replied to the topic OBX-5 Help with Tilde &#034;~&#034; removal/replacement .br in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119288</link>
				<pubDate>Fri, 22 Oct 2021 20:14:18 -0400</pubDate>

									<content:encoded><![CDATA[<p>I was able to resolve the issue by doing a COPY of @null -&gt; @obx5.  Then CONCAT &#8220;.br &#8221; to the OBX5 within an ITERATE.  This got rid of the ~&#8217;s (tildes) and placed &#8220;.br &#8221; to the end of each subsegment.</p>
<p>After the iterate, I COPY&#8217;d the variable to the OB OBX-5 and Tcl&#8217;d Trimmed Right:</p>
<p>lassign $xlateInVals obx<br />
set obx [string trimright $obx &#8220;.br &#8220;&hellip;<span class="activity-read-more" id="activity-read-more-24021"><a href="https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119288" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">4bf068232fd1f7e20ae134ce19e74da4</guid>
				<title>Sheila replied to the topic OBX-5 Help with Tilde &#034;~&#034; removal/replacement .br in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119286</link>
				<pubDate>Thu, 21 Oct 2021 20:23:42 -0400</pubDate>

									<content:encoded><![CDATA[<p>Ok so the goal is to take OBX-5 (see example below):</p>
<p>|test1~test2~test3 test4 test5~test6 test7|</p>
<p>And make it look like this:</p>
<p>|test1.br test2.br test3 test4 test5.br test6 test7|</p>
<p>My approach is 3 parts.</p>
<p>PART 1 &#8211; Add &#8220;.br &#8221; to the end of each segment even the last one.  I have completed this part successfully.  I was able to iterate through a&hellip;<span class="activity-read-more" id="activity-read-more-24018"><a href="https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119286" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">9f23b9b43da2a4d285f2b61fb99ced91</guid>
				<title>Sheila replied to the topic OBX-5 Help with Tilde &#034;~&#034; removal/replacement .br in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119284</link>
				<pubDate>Thu, 21 Oct 2021 19:07:58 -0400</pubDate>

									<content:encoded><![CDATA[<p>We are running 10.16.  The issue I am having is that it is only reading the first element.   So only test1 is read in. What I need to figure out is how to set a variable to the number of subsegments.  where that value can change from one message to another&#8230;</p>
<p>Then I might be able to loop through to concat or append&#8230;.</p>
<p>|test1~test2~test3 tes&hellip;<span class="activity-read-more" id="activity-read-more-24016"><a href="https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/#post-119284" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">a56f267d11afcf22a10f25e9f09edbf6</guid>
				<title>Sheila started the topic OBX-5 Help with Tilde &#034;~&#034; removal/replacement .br in the forum Cloverleaf</title>
				<link>https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/</link>
				<pubDate>Tue, 19 Oct 2021 22:53:24 -0400</pubDate>

									<content:encoded><![CDATA[<p>I am trying to create one OBX-5 segment from the following:</p>
<p>|test1~test2~test3 test4 test5~test6 test7|</p>
<p>The outbound result would look like:</p>
<p>|test1.br test2.br test3 test4 test5.br test6 test7|</p>
<p>So I am trying to read in the entire OBX-5 segment and replace &#8220;~&#8221; with &#8220;.br &#8220;.  I have tried several things and am able to get &#8220;.br &#8221; but that is&hellip;<span class="activity-read-more" id="activity-read-more-24007"><a href="https://usspvlclovertch2.infor.com/forums/topic/obx-5-help-with-tilde-removal-replacement-br/" rel="nofollow ugc">Read more</a></span></p>
]]></content:encoded>
				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">c5a9a81eaeb11d96a0af3cc2b7e57372</guid>
				<title>Sheila became a registered member</title>
				<link>https://clovertech.infor.com/activity/p/23936/</link>
				<pubDate>Wed, 29 Sep 2021 16:50:26 -0400</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
		
	</channel>
</rss>