<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Yet Another Developer Blog</title>
	<atom:link href="https://jacobdotcosta.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://jacobdotcosta.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 07 Sep 2012 21:34:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">11697323</site><cloud domain='jacobdotcosta.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Yet Another Developer Blog</title>
		<link>https://jacobdotcosta.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://jacobdotcosta.wordpress.com/osd.xml" title="Yet Another Developer Blog" />
	<atom:link rel='hub' href='https://jacobdotcosta.wordpress.com/?pushpress=hub'/>
	<item>
		<title>DB Connections using Maximo</title>
		<link>https://jacobdotcosta.wordpress.com/2012/06/23/db-connections-using-maximo/</link>
					<comments>https://jacobdotcosta.wordpress.com/2012/06/23/db-connections-using-maximo/#comments</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Sat, 23 Jun 2012 00:10:18 +0000</pubDate>
				<category><![CDATA[maximo]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mbo]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://openmaximo.wordpress.com/?p=201</guid>

					<description><![CDATA[Every now and then I need an independent connection to my Maximo databasebecause I don&#8217;t want to rely on the use of MBOs. Usually this happens whenever I&#8217;m developing an interface where I need to read big amounts of data and can skip the MBO layer. Skipping the MBO layer is a necessity because it [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Every now and then I need an independent connection to my Maximo <a class="zem_slink" title="Database" href="http://en.wikipedia.org/wiki/Database" rel="wikipedia">database</a>because I don&#8217;t want to rely on the use of MBOs. Usually this happens whenever I&#8217;m developing an interface where I need to read big amounts of data and can skip the MBO layer. Skipping the MBO layer is a necessity because it speeds up the reading process and doesn&#8217;t use so much memory.</p>
<p>In this post I&#8217;ll describe the way to manage <a class="zem_slink" title="Database connection" href="http://en.wikipedia.org/wiki/Database_connection" rel="wikipedia">database connections</a> using Maximo&#8217;s connection management and user credentials.</p>
<p><span id="more-254"></span></p>
<p>For the database connection I use the psdi.mbo.DBShortcut class, this class is provided by Maximo. To create a database connection this library requires a psdi.security.ConnectionKey which can  can be obtained from the psdi.security.UserInfo class.</p>
<p>The UserInfo can be obtained either from an MboSet or the MXSession itself.</p>
<p>Here are 2 examples.</p>
<pre class="brush: java; title: ; notranslate">
...
MXSession mxSession;
...
ConnectionKey connectionKey = mxSession.getUserInfo().getConnectionKey();
...

</pre>
<p>On the other hand one can generically get this object using the MXSession class.</p>
<pre class="brush: java; title: ; notranslate">
...
MboSet mboSet;
...
ConnectionKey connectionKey = mboSet.getUserInfo().getConnectionKey();
...
</pre>
<p>Once with a connectionKey, a database connection is set using the psdi.mbo.DBShortcut class. It is created in the following manner.</p>
<pre class="brush: java; title: ; notranslate">&amp;amp;lt;br&amp;amp;gt; ...&amp;amp;lt;br&amp;amp;gt; DBShortcut dbShortcut = new DBShortcut();&amp;amp;lt;br&amp;amp;gt; dbShortcut.connect(connectionKey);&amp;amp;lt;br&amp;amp;gt; ...&amp;amp;lt;br&amp;amp;gt;</pre>
<p>Executing <a class="zem_slink" title="Data Manipulation Language" href="http://en.wikipedia.org/wiki/Data_Manipulation_Language" rel="wikipedia">DML</a> statements can be done using 2 DBShortcut methods .executeQuery(String) or .execute(SqlFormat). I personally prefer the .execute(SqlFormat).</p>
<pre class="brush: java; title: ; notranslate">

...
Date aDate;
...
String query = &quot;select * from workorder statusdate &gt; ?&quot;;
SqlFormat sqlF = new SqlFormat(query);
sqlF.setDate(1, aDate);
ResultSet resSet = dbShortcut.executeQuery(sqlF.format());
...
</pre>
<p>As a result the executeQuery returns a plain old java.sql.ResultSet which can managed as needed.</p>
<p>Very important is to close both the ResultSet as well as the DBShortcut whenever they&#8217;re not needed or you&#8217;ll be cursed by the infamous maximo error.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ibm.com/support/docview.wss?uid=swg21403916&amp;myns=swgtiv&amp;mynp=OCSSFG5E&amp;mynp=OCSS6HJK&amp;mynp=OCSSLKTY&amp;mynp=OCSSLKT6&amp;mynp=OCSSKTXT&amp;mync=R" rel="nofollow">BMXAA6421E &#8211; The system could not connect to the JDBC source:</a> (ibm.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/" rel="nofollow"><img class="zemanta-pixie-img" style="float:right;" src="https://i0.wp.com/img.zemanta.com/zemified_e.png" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2012/06/23/db-connections-using-maximo/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">254</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/zemified_e.png?x-id=7706b707-1f5b-4a0f-9a9a-983d4d1676a4" medium="image">
			<media:title type="html">Enhanced by Zemanta</media:title>
		</media:content>
	</item>
		<item>
		<title>Primary Location Systems &#8211; BMXAA2714E Each site must have 1 primary system</title>
		<link>https://jacobdotcosta.wordpress.com/2012/06/22/primary-location-systems-bmxaa2714e-each-site-must-have-1-primary-system/</link>
					<comments>https://jacobdotcosta.wordpress.com/2012/06/22/primary-location-systems-bmxaa2714e-each-site-must-have-1-primary-system/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Fri, 22 Jun 2012 21:30:22 +0000</pubDate>
				<category><![CDATA[maximo 7]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<category><![CDATA[maximo-7.1.1.6]]></category>
		<category><![CDATA[maximo7]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/?p=293</guid>

					<description><![CDATA[I&#8217;ve just added a few sites to IBM Maximo and when I was up to creating some location systems I got into trouble. When adding a new primary system, or any system at all, I received an application error from Maximo. BMXAA2714E: Each site must have 1 primary system. After analysing the problem for a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve just added a few sites to <a class="zem_slink" title="IBM" href="http://www.ibm.com" rel="homepage" target="_blank" rel="nofollow">IBM</a> Maximo and when I was up to creating some location systems I got into trouble. When adding a new primary system, or any system at all, I received an application error from Maximo.</p>
<p><strong>BMXAA2714E: Each site must have 1 primary system.</strong></p>
<p><span id="more-293"></span></p>
<p>After analysing the problem for a while I looked at the LOCSYSTEM <a class="zem_slink" title="Table (database)" href="http://en.wikipedia.org/wiki/Table_%28database%29" rel="wikipedia" target="_blank">database table</a> and found out that more than one site didn&#8217;t have a primary system. Fisrt I had to find out which were missing:</p>
<pre class="brush: sql; title: ; notranslate">
select siteid from site
where
  not exists (
    select 1 from locsystem where siteid=site.siteid and primarysystem=1
  );
</pre>
<p>With this information I decided to add the primary systems to all these sites at a time, from the application. Unfortunately this didn&#8217;t do it, I kept on getting the same message.</p>
<p>Some time latter I came to the conclusion that Maximo was validating the data in the <a class="zem_slink" title="Database" href="http://en.wikipedia.org/wiki/Database" rel="wikipedia" target="_blank">database</a>, not taking into account the records that already existed in memory and were about to be saved to the database. This meant that I had to add these records directly to the database. I would have the database generate my own insert statements.</p>
<pre class="brush: sql; title: ; notranslate">
select 'INSERT INTO LOCSYSTEM (systemid,description,network,siteid,orgid,primarysystem,locsystemid,langcode,haslg) VALUES (''PRIMARY'',''Primary System'',0,'''+SITEID+''','''+ORGID+''',1,9999,''EN'',0)'
from site where not exists (select 1 from locsystem where siteid=site.siteid and primarysystem=1);
</pre>
<p>The resulting select gave me the insert statements, I only had to update the <em>locsystemid</em> with good values.</p>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/?px" rel="nofollow"><img class="zemanta-pixie-img" style="float:right;" src="https://i0.wp.com/img.zemanta.com/zemified_e.png" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2012/06/22/primary-location-systems-bmxaa2714e-each-site-must-have-1-primary-system/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">293</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/zemified_e.png?x-id=f3c7af7d-0b8e-4b09-b585-fc86e8877d45" medium="image">
			<media:title type="html">Enhanced by Zemanta</media:title>
		</media:content>
	</item>
		<item>
		<title>IBM Using System Instance Properties to Control Cron Tasks &#8211; United Kingdom</title>
		<link>https://jacobdotcosta.wordpress.com/2011/12/25/ibm-using-system-instance-properties-to-control-cron-tasks-united-kingdom/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/12/25/ibm-using-system-instance-properties-to-control-cron-tasks-united-kingdom/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Sun, 25 Dec 2011 14:27:34 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ibmeam]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/?p=233</guid>

					<description><![CDATA[http://bit.ly/vwcAQY Posted from WordPress for Android]]></description>
										<content:encoded><![CDATA[<p><a href="http://bit.ly/vwcAQY">http://bit.ly/vwcAQY</a></p>
<p><span class="post_sig">Posted from WordPress for Android</span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/12/25/ibm-using-system-instance-properties-to-control-cron-tasks-united-kingdom/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">233</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>
	</item>
		<item>
		<title>Where Is My Whopper?</title>
		<link>https://jacobdotcosta.wordpress.com/2011/10/06/where-is-my-whopper/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/10/06/where-is-my-whopper/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Thu, 06 Oct 2011 07:24:49 +0000</pubDate>
				<category><![CDATA[asset]]></category>
		<category><![CDATA[assetmgmt]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<category><![CDATA[maximo 7]]></category>
		<category><![CDATA[svcmgmt]]></category>
		<category><![CDATA[tivoli]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/2011/10/06/where-is-my-whopper/</guid>

					<description><![CDATA[https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/where_is_my_whopper5?lang=en]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/where_is_my_whopper5?lang=en">https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/where_is_my_whopper5?lang=en</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/10/06/where-is-my-whopper/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">232</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>
	</item>
		<item>
		<title>Delivered Report Analysis for Upgrading Clients</title>
		<link>https://jacobdotcosta.wordpress.com/2011/10/04/delivered-report-analysis-for-upgrading-clients/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/10/04/delivered-report-analysis-for-upgrading-clients/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 17:16:08 +0000</pubDate>
				<category><![CDATA[ibm]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/2011/10/04/delivered-report-analysis-for-upgrading-clients/</guid>

					<description><![CDATA[http://www.ibm.com/support/docview.wss?uid=swg21566746&#38;myns=swgtiv&#38;mynp=OCSSLKT6&#38;mync=R]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.ibm.com/support/docview.wss?uid=swg21566746&amp;myns=swgtiv&amp;mynp=OCSSLKT6&amp;mync=R">http://www.ibm.com/support/docview.wss?uid=swg21566746&amp;myns=swgtiv&amp;mynp=OCSSLKT6&amp;mync=R</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/10/04/delivered-report-analysis-for-upgrading-clients/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">231</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>
	</item>
		<item>
		<title>BiLog: Delivered Reports&#8230;.What Is In&#8230;What Is Out</title>
		<link>https://jacobdotcosta.wordpress.com/2011/10/04/bilog-delivered-reports-what-is-in-what-is-out/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/10/04/bilog-delivered-reports-what-is-in-what-is-out/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 17:14:33 +0000</pubDate>
				<category><![CDATA[ibm]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<category><![CDATA[tivoli]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/2011/10/04/bilog-delivered-reports-what-is-in-what-is-out/</guid>

					<description><![CDATA[https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/bilog_delivered_reports_what_s_in_what_s_out13?lang=en]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/bilog_delivered_reports_what_s_in_what_s_out13?lang=en">https://www.ibm.com/developerworks/mydeveloperworks/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/bilog_delivered_reports_what_s_in_what_s_out13?lang=en</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/10/04/bilog-delivered-reports-what-is-in-what-is-out/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">230</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>
	</item>
		<item>
		<title>IBM Technote (troubleshooting): Lock Out Tag Out info to be displayed on workorders &#8211; United States</title>
		<link>https://jacobdotcosta.wordpress.com/2011/07/10/ibm-technote-troubleshooting-lock-out-tag-out-info-to-be-displayed-on-workorders-united-states/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/07/10/ibm-technote-troubleshooting-lock-out-tag-out-info-to-be-displayed-on-workorders-united-states/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Sun, 10 Jul 2011 22:01:07 +0000</pubDate>
				<category><![CDATA[maximo]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[tivoli]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/?p=226</guid>

					<description><![CDATA[Problem(Abstract) This document provides instructions for having Lock Out Tag Out info loaded on the Work Order Tracking application. IBM Lock Out Tag Out info to be displayed on workorders &#8211; United States. Related articles IBM Technote (FAQ): The Purpose of Classification in Create Service Request application (jacobdotcosta.wordpress.com)]]></description>
										<content:encoded><![CDATA[<h2>Problem(Abstract)</h2>
<p>This document provides instructions for having Lock Out Tag Out info loaded on the Work Order Tracking application.</p>
<p><a href="https://www-304.ibm.com/support/docview.wss?mynp=OCSSLKT6&amp;mync=R&amp;uid=swg21504772&amp;myns=swgtiv"><span id="more-226"></span>IBM Lock Out Tag Out info to be displayed on workorders &#8211; United States</a>.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="https://jacobdotcosta.wordpress.com/2011/06/29/ibm-technote-faq-the-purpose-of-classification-in-create-service-request-application/">IBM Technote (FAQ): The Purpose of Classification in Create Service Request application</a> (jacobdotcosta.wordpress.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/" rel="nofollow"><img class="zemanta-pixie-img" style="float:right;" src="https://i0.wp.com/img.zemanta.com/zemified_e.png" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/07/10/ibm-technote-troubleshooting-lock-out-tag-out-info-to-be-displayed-on-workorders-united-states/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">226</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/zemified_e.png?x-id=a3001177-b8b3-4407-8336-1ca9bb66a8f0" medium="image">
			<media:title type="html">Enhanced by Zemanta</media:title>
		</media:content>
	</item>
		<item>
		<title>IBM Technote (FAQ): The Purpose of Classification in Create Service Request application</title>
		<link>https://jacobdotcosta.wordpress.com/2011/06/29/ibm-technote-faq-the-purpose-of-classification-in-create-service-request-application/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/06/29/ibm-technote-faq-the-purpose-of-classification-in-create-service-request-application/#comments</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Wed, 29 Jun 2011 15:51:28 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<category><![CDATA[maximo6]]></category>
		<category><![CDATA[maximo7]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/?p=220</guid>

					<description><![CDATA[Question We have the options of Select Value and Classification for the Asset field in the Create Service Request application, what is the advantage of using Classification over Select value? Answer The Select Value feature brings up a lookup dialog box that navigates to the Asset table as a whole, that lets end users associate [&#8230;]]]></description>
										<content:encoded><![CDATA[<h1>Question</h1>
<p>We have the options of Select Value and Classification for the Asset field in the Create Service Request application, what is the advantage of using Classification over Select value?<span id="more-220"></span></p>
<h1>Answer</h1>
<p>The Select Value feature brings up a lookup dialog box that navigates to the Asset table as a whole, that lets end users associate an item to a Service Request.</p>
<p>More information on the IBM Site: <a href="http://bit.ly/lXPdQz">IBM &#8211; The Purpose of Classification in Create Service Request application</a>.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://maximotimes.com/maximo/import-asset-classification-hierarchies-and-classification-attributes-with-mif/" rel="nofollow">Import asset classification hierarchies and classification attributes with MIF</a> (maximotimes.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/" rel="nofollow"><img class="zemanta-pixie-img" style="float:right;" src="https://i0.wp.com/img.zemanta.com/zemified_e.png" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/06/29/ibm-technote-faq-the-purpose-of-classification-in-create-service-request-application/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">220</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/zemified_e.png?x-id=2922dfd2-d6ba-4cc8-93b7-df5c815d9cb2" medium="image">
			<media:title type="html">Enhanced by Zemanta</media:title>
		</media:content>
	</item>
		<item>
		<title>IBM Webcast: IBM Job Plans in Preventive Maintanance &#8211; United States</title>
		<link>https://jacobdotcosta.wordpress.com/2011/06/28/ibm-webcast-ibm-job-plans-in-preventive-maintanance-united-states/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/06/28/ibm-webcast-ibm-job-plans-in-preventive-maintanance-united-states/#respond</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Tue, 28 Jun 2011 15:46:52 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[ibmeam]]></category>
		<category><![CDATA[maximo]]></category>
		<category><![CDATA[maximo6]]></category>
		<category><![CDATA[maximo7]]></category>
		<category><![CDATA[webcast]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/?p=217</guid>

					<description><![CDATA[Overview of Job Plans, PM, Work orders, work order generation process, job plan sequence, PM counter, job plans on PM generated work orders, and DEMO.]]></description>
										<content:encoded><![CDATA[<p>Overview of Job Plans, PM, <a class="zem_slink" title="Work order" href="http://en.wikipedia.org/wiki/Work_order" rel="wikipedia">Work orders</a>, work order generation process, job plan sequence, PM counter, job plans on PM generated work orders, and DEMO.</p>
<p>via <a href="http://bit.ly/mFBGjR">IBM Job Plans in Preventive Maintanance &#8211; United States</a>.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ibm.com/support/docview.wss?uid=swg21501163&amp;myns=swgtiv&amp;mynp=OCSSLKT6&amp;mync=R" rel="nofollow">IBM Maximo Calibration and IBM Maximo for Life Sciences Upgrade Issue in Version 7.5</a> (ibm.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/" rel="nofollow"><img class="zemanta-pixie-img" style="float:right;" src="https://i0.wp.com/img.zemanta.com/zemified_e.png" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/06/28/ibm-webcast-ibm-job-plans-in-preventive-maintanance-united-states/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">217</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/zemified_e.png?x-id=18fbf258-3538-413b-90aa-065e95496ad3" medium="image">
			<media:title type="html">Enhanced by Zemanta</media:title>
		</media:content>
	</item>
		<item>
		<title>IBM Technote (FAQ): AddUser utility is hardcoded for MXServer in the mxe.name section of the maximo.properties file.</title>
		<link>https://jacobdotcosta.wordpress.com/2011/05/17/ibm-technote-faq-adduser-utility-is-hardcoded-for-mxserver-in-the-mxe-name-section-of-the-maximo-properties-file/</link>
					<comments>https://jacobdotcosta.wordpress.com/2011/05/17/ibm-technote-faq-adduser-utility-is-hardcoded-for-mxserver-in-the-mxe-name-section-of-the-maximo-properties-file/#comments</comments>
		
		<dc:creator><![CDATA[jacobdotcosta]]></dc:creator>
		<pubDate>Tue, 17 May 2011 12:22:44 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jacobdotcosta.wordpress.com/2011/05/17/ibm-technote-faq-adduser-utility-is-hardcoded-for-mxserver-in-the-mxe-name-section-of-the-maximo-properties-file/</guid>

					<description><![CDATA[IBM AddUser utility is hardcoded for MXServer in the mxe.name section of the maximo.properties file. &#8211; United States http://bit.ly/ihm5vb From: http://bit.ly/ihm5vb]]></description>
										<content:encoded><![CDATA[<p>IBM AddUser utility is hardcoded for MXServer in the mxe.name section of the maximo.properties file. &#8211; United States <a href="http://bit.ly/ihm5vb">http://bit.ly/ihm5vb</a></p>
<p>From: <a href="http://bit.ly/ihm5vb">http://bit.ly/ihm5vb</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jacobdotcosta.wordpress.com/2011/05/17/ibm-technote-faq-adduser-utility-is-hardcoded-for-mxserver-in-the-mxe-name-section-of-the-maximo-properties-file/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">214</post-id>
		<media:content url="https://0.gravatar.com/avatar/fed8af06ebab2dfaa72b5be7bac301b6e41f43adc54aa792c42ecba07f3849ef?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jacobdotcosta</media:title>
		</media:content>
	</item>
	</channel>
</rss>
