<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-17486745</id><updated>2011-12-26T00:33:32.313-08:00</updated><category term='HRMS'/><category term='Upgrade'/><category term='Fusion'/><category term='PeopleSoft'/><title type='text'>Driven by PeopleSoft motivated by MicroSoft</title><subtitle type='html'>My thoughts about the ERP industry as a whole. And a peek into the future of ERPs. You can also learn about my products in this blog. Download the demo version of these products from the links presented in the posts "Demo Version of Products", "Reapply Customization" and "Oracle Fusion"</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>34</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-17486745.post-781371070585418385</id><published>2008-01-25T17:37:00.000-08:00</published><updated>2008-01-25T19:52:44.440-08:00</updated><title type='text'>PeopleSoft Security</title><content type='html'>Oh! A long break from blogging hasn't put me out of PeopleSoft - A technology I've come to love with each passing day. In this post I would discuss the recent security upgrade that I did - The world is as competitive as ever and so most people believe in keeping their smartness sealed, I'm certain that the shortcuts that I'm about to mention would have been tried and implemented by many of us in the industry, but I would do my best to reveal some of these shortcuts to upgrade/implement security.&lt;br /&gt;&lt;br /&gt;The client had an existing 8.3 PeopleSoft system and wished to upgrade to 8.9 PeopleSoft. When I was involved in the initial project proposal I quoted 2 weeks for a technical security upgrade with one resource - Would certainly agree that I did not have any clue at that time about security, just that I knew that it could be done. Many a times I've seen people struggling with a Security Matrix for month, working online and setting up security and still having issues. At the end of my task the number of issues that I had on security were 5-7.&lt;br /&gt;&lt;br /&gt;Here's how this could be done.&lt;br /&gt;&lt;br /&gt;The customer that I was working with had all custom roles and permissions. I started off by getting a the results of the following SQL from 8.3 onto an excel. ( Sheet name: "&lt;span style="font-style: italic;"&gt;83 Perm List Component&lt;/span&gt;")&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;select distinct a.classid, a.displayonly, a.authorizedactions, C.pnlgrpname, c.market&lt;br /&gt;from psauthitem a, PSMENUITEM b, pspnlgroup C&lt;br /&gt;where b.menuname = a.menuname and b.barname = a.barname&lt;br /&gt;and b.itemname = a.baritemname and c.pnlgrpname = b.pnlgrpname&lt;br /&gt;and c.market = b.market and c.itemname = a.pnlitemname&lt;br /&gt;&lt;br /&gt;The results went onto an excel. Then the results of the below SQL from 8.9 PeopleSoft were saved onto a different sheet ("&lt;span style="font-style: italic;"&gt;Original New Navg 4 Existn Cmpn&lt;/span&gt;") in the same excel workbook.&lt;br /&gt;I'm not 100% sure about the below SQL, I just wrote it and did not execute the one below, nut it is something similiar.&lt;br /&gt;&lt;br /&gt;SELECT A.MENUNAME, A.BARNAME, A.BARITEMNAME, B.ITEMNAME, A.PNLGRPNAME, A.MARKET&lt;br /&gt;FROM PSMENUITEM A, PSPNLGROUP B WHERE A.PNLGRPNAME IN (&lt;83&gt;)&lt;br /&gt;AND B.PLNGRPNAME = A.PNLGRPNAME AND B.MARKET = A.MARKET&lt;br /&gt;&lt;br /&gt;Now click the command button labeled "&lt;span style="font-style: italic;"&gt;Build SQL&lt;/span&gt;". On the sheet titled "&lt;span style="font-style: italic;"&gt;83 Perm List Component&lt;/span&gt;". The insert statements will be generated in the Insert SQL sheets.&lt;br /&gt;&lt;br /&gt;There would need to be some clean-up which would normally be based on MARKET and MENUNAME.&lt;br /&gt;&lt;br /&gt;Take a back-up of PSAUTHITEM from 8.9. Create a PS_TMP_AUTHITEM table with same structure of PSAUTHITEM and with no Keys. Use the SQLs in the INSERT statement to load data to TMP_AUTHITEM. Delete and analyze the duplicate rows from TMP_AUTHITEM based on AUTHITEM key - Duplicates arise as we pulled Authorizations in 8.3 based on component and different pages in a single component will have different display only/access property. Dump the clean data to PSAUTHITEM, after you have purged all the custom roles in PSAUTHITEM.&lt;br /&gt;&lt;br /&gt;I initially had the intent of minimizing the data analysis work required and hence preferred the PNLITEMNAME from 8.3 and tried matching it with 8.9, this is when I figured PeopleSoft likes changing the Page Names but will retain component names between releases. Don't pounce on me now, I was also responsible for 8.9 Talent acquisition manager and candidate gateway design and implementation - I know how much has changed with this module in terms of component names. Still, security implementation was done with sql scripts alone, the above SQLs must give you some pointers. Remember to run Portal Sync after the mass update to PSAUTHITEM.&lt;br /&gt;&lt;br /&gt;Security doesn't end here, we still need to be cautious of the Web Libraries, Query trees, Row level security and Department trees. There we did it, Security Upgrade two weeks one resource. I've really enjoyed working on Security, Talent Acquisition Manager and Candidate Gateway. Doing something different in every project makes me feel good, must be the same for everyone out there. &lt;br /&gt;&lt;br /&gt;Finally, here is the link for the excel file which would generate the Insert SQLs for PSAUTHITEM.&lt;br /&gt;&lt;br /&gt;http://www.fileul.com/view.php?file=33SoQN&lt;br /&gt;&lt;br /&gt;The above link is for an excel workbook that I saved from the original using Office 2007. If there are problems accessing this version, let me know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-781371070585418385?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/781371070585418385/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=781371070585418385&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/781371070585418385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/781371070585418385'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2008/01/peoplesoft-security.html' title='PeopleSoft Security'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-9217065355169956451</id><published>2007-02-03T06:48:00.000-08:00</published><updated>2007-02-03T07:43:38.962-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PeopleSoft'/><category scheme='http://www.blogger.com/atom/ns#' term='Fusion'/><title type='text'>PeopleSoft to Fusion - "The Gaps"</title><content type='html'>I did write about the PeopleCode to Java switch, which might prove difficult in convincing the customers for a switch from PeopleSoft to fusion. But the real problem - PeopleSoft is a product that evolved over a period of Fifteen years - I'll discuss this in detail later. ERP products like PeopleSoft are bought and implemented by big corporations, these companies might not think too much about the Training Costs for the workforce or the new implementation costs, instead they might need their business processes intact after a switch – These guys are demanding!&lt;br /&gt;&lt;br /&gt;Fusion development currently lays way too much focus on better architecture, tools and consolidation of best processes. I might have started believing that the Fusion Toolset will be one of the Best in the industry (We might see the Process monitor Page get refreshed automatically when the process status changes!) – If I were a Fusion Sales executive, I will imagine tough times, convincing the Customers to buy an ERP for better Toolset (As the current Toolsets are not way too behind). The customers will be more concerned about the GAPS the new product will bring to his business processes. &lt;br /&gt;&lt;br /&gt;PeopleSoft's evolution over a period of 15 years made it stronger, this will be the case with Fusion. The GAPS that I expect is because of this evolution time. Hence, I believe that it might be till version 5 of Fusion that we will not see these GAPS reducing. Oracle’s plans of continued Development of Fusion might come to an end when Oracle realizes this problem - Only when the evolution stops can Fusion have a chance at reducing the PeopleSoft-Fusion GAP. &lt;br /&gt;&lt;br /&gt;These are my expectations – 1. PeopleSoft will stay intact till 2015 as customers might not prefer a switch until that time. 2. No major enhancements after PeopleSoft v9.1 (As Oracle will eventually realize the pitfalls of continued development by the time PeopleSoft v9.1 becomes available).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-9217065355169956451?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/9217065355169956451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=9217065355169956451&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/9217065355169956451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/9217065355169956451'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2007/02/peoplesoft-to-fusion-gaps.html' title='PeopleSoft to Fusion - &quot;The Gaps&quot;'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-1538076497831140171</id><published>2007-01-08T07:02:00.000-08:00</published><updated>2007-01-08T07:04:38.639-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PeopleSoft'/><category scheme='http://www.blogger.com/atom/ns#' term='HRMS'/><category scheme='http://www.blogger.com/atom/ns#' term='Upgrade'/><title type='text'>PeopleSoft HRMS 8.9 Upgrade</title><content type='html'>Yeah, I’m not going to excuse myself this time… 3 months I know!&lt;br /&gt;&lt;br /&gt;Lets get straight into some tips, this is something that I thought will be useful for people involved in PeopleSoft upgrade (Yes! That’s what I’m gonna start with this time too.) Certain watch out tips for Peopleinvolved in upgrade to 8.9….&lt;br /&gt;&lt;br /&gt;So, we all know that PeopleSoft in 8.9 brings ‘PERSON MODEL’ (So what??). We got a copy of production, upgraded the system to 8.9 – Tried hiring an employee. First add a person and then “add the relashionship”. No!!! The person will simply not get hired into our system. We checked the customizations (Yeah! We should have read the PeopleSoft Red Papers!) and damn the system will simply not hire the employee. Then we found the most basic difference; there was no EMPL_RCD on any of our search pages (“Multiple Jobs Allowed” Checkbox in PeopleTools options). Yes Peoplesoft in 8.9 requires “Multiple Jobs allowed” to be turned on for the system to work. That is the business process on which the entire “HR 8.9 – PERSON Model” stands on. I’m still thinking why did they leave the checkbox… if it can take only one value! Neverthless never underestimate PeopleSoft.&lt;br /&gt;&lt;br /&gt;What are the other impacts of the above-mentioned problem? All custom interfaces need to include Empl_Rcd value to search for an employee. Take a lot of caution while handling your SQR programs and Application Engines too.&lt;br /&gt;&lt;br /&gt;EMPLOYMENT is a view in 8.9 – This is common knowledge, but the PeopleSoft Red Papers talk a lot about “PER_ORG_INST” being the virtual parent of PER_ORG_ASGN. So this is just an extended feature to distinguish concurrent and non-concurrent jobs. Get clear indicators of the customer’s business process to move the custom fields from EMPLOYMENT to either of the above-mentioned tables.&lt;br /&gt;&lt;br /&gt;EMPLOYMENT still contains REHIRE_DT – But, this is the Last Start Date from job and hence will have the value of HIRE_DT for employees who were never terminated. Custom programs need a closer look to take care of this.&lt;br /&gt;&lt;br /&gt;DEPENDENT_BENEF is a view… All the peoplecode from tables in old release must be moved to appropriate tables in 8.9 – Careful!&lt;br /&gt;&lt;br /&gt;JOB.ACTION is no longer a translate – It is a prompt from ACTION_TBL. SQRs must select appropriate data.&lt;br /&gt;&lt;br /&gt;Employee Review is obsolete! This means the customer can only use that for viewing history data… Please don’t make customizations, as they will be useless :(. Customers must use the ePerformance module.&lt;br /&gt;&lt;br /&gt;Security! – Whats new??? The person model allows non-employees so expect Security to be driven by OPRID instead of EMPLID – makes sense.&lt;br /&gt;&lt;br /&gt;PeopleCode tip – from 8.17 to 8.46 – ViewURL function needs to be replaced with ViewContentUrl function.&lt;br /&gt;&lt;br /&gt;PeopleTools 8.48 – Haven’t really worked on it, but this is what I heard – Composite reports to compare more than two databases! File References (SQRs, COBOLS and DMS) are comparable objects. PeopleCode “Merge and Compare utility”.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Uh!! I can keep writing on this topic but for now, got to get back to my GMAT preperation ;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-1538076497831140171?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/1538076497831140171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=1538076497831140171&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/1538076497831140171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/1538076497831140171'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2007/01/peoplesoft-hrms-89-upgrade.html' title='PeopleSoft HRMS 8.9 Upgrade'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-115994806699478795</id><published>2006-10-04T00:25:00.000-07:00</published><updated>2006-10-04T00:47:47.016-07:00</updated><title type='text'>'E-Change' Demo</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;I thought I’d post the demo version of ‘E-Change’; here are the download links,&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="" lang="FR"&gt;E-Change&lt;span style=""&gt;     &lt;/span&gt;---&gt; &lt;a href="http://www.fileul.com/view.php?file=PhOX9ZH"&gt;http://www.FileUL.com/view.php?file=PhOX9ZH&lt;/a&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="" lang="FR"&gt;E-Configure ----&gt; &lt;a href="http://www.fileul.com/view.php?file=BJmSlx8"&gt;http://www.FileUL.com/view.php?file=BJmSlx8&lt;/a&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="" lang="NO-BOK"&gt;E-Restore ------&gt; &lt;a href="http://www.fileul.com/view.php?file=mrff5swv"&gt;http://www.FileUL.com/view.php?file=mrff5swv&lt;/a&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;E-Help ---------&gt; &lt;a href="http://www.fileul.com/view.php?file=Rl5o23s"&gt;http://www.FileUL.com/view.php?file=Rl5o23s&lt;/a&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;The demo version will not provide any compare report repository (The Project Compare report will not contain any objects as the report filter has been set to “0”)&lt;o:p&gt;.&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;I’m currently working on a requirement where users wanted to upload some design documents along with the compare report. The next priority would be to provide a Viewer where they could select objects and view the modification History.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;Some work on SQR application is still pending (We did have a lot of SQR Upgrade applications; unfortunately my friend had lost them, me in the process of re-development.)&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;And I would like to thank Jim and Chris for their comments on explaining the PeopleCode constraint. The links are &lt;a href="http://psguyblog.blogspot.com/2006/03/peoplecode-to-java.html#c115696461443474473"&gt;here&lt;/a&gt;,&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:100%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-115994806699478795?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/115994806699478795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=115994806699478795&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115994806699478795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115994806699478795'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/10/e-change-demo.html' title='&apos;E-Change&apos; Demo'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-115573271633633450</id><published>2006-08-16T05:29:00.000-07:00</published><updated>2006-08-16T05:51:58.056-07:00</updated><title type='text'>Seeking Your Suggestion</title><content type='html'>I have been interacting with users of Stat, a couple of findings…. Stat feels like a complete application as compared to what I’ve developed (No kidding here, I know the amount of time that I took to develop this application!). Interestingly, users find a great deal of value in having a complete application. This post is to seek your valuable suggestion on this.&lt;br /&gt;&lt;br /&gt;Should I include Issue Tracking and store a record (would typically include the User and Date Time details) of all the actions performed on any single object? Or is there any application available in the market which I must look at integrating my Change Management application (I named it ‘E-Change’ – Enterprise Change Management, although it is PeopleSoft specific!) with?&lt;br /&gt;&lt;br /&gt;Should I build File object Version Control too in ‘E-Change’? Or should I leave it to applications available in the market?&lt;br /&gt;&lt;br /&gt;And finally, should I provide the “Build Capabilities” to ‘E-Change’? I do have a separate stand-alone application which could be used for Building objects in PeopleSoft, this I did before I started working on ‘E-Change’ and it should not be a great deal to provide this capability to the application. I’m only concerned about whether it would be acceptable from the Customer end.&lt;br /&gt;&lt;br /&gt;I would be exited in knowing your views on these and you can help me by leaving a comment here (Oh! I remember, please do not send me a mail….my mail box is full of spam!).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-115573271633633450?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/115573271633633450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=115573271633633450&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115573271633633450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115573271633633450'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/08/seeking-your-suggestion.html' title='Seeking Your Suggestion'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-115434739268495524</id><published>2006-07-31T05:00:00.000-07:00</published><updated>2006-07-31T05:03:12.693-07:00</updated><title type='text'>PeopleSoft Change Management</title><content type='html'>&lt;p class="MsoNormal"&gt;You can view the help document for “PeopleSoft Change Management” &lt;a href="http://www.fileul.com/view.php?file=zPLupXnj"&gt;here&lt;/a&gt;. Kindly let me know your valuable suggestion. I’ll upload the applications as soon as possible.&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-115434739268495524?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/115434739268495524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=115434739268495524&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115434739268495524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115434739268495524'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/07/peoplesoft-change-management.html' title='PeopleSoft Change Management'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-115313727051919621</id><published>2006-07-17T04:45:00.000-07:00</published><updated>2006-07-17T04:54:30.540-07:00</updated><title type='text'>PeopleSoft Version Control</title><content type='html'>&lt;p class="MsoNormal"&gt;Two Months! That is the time since I’ve not posted on this blog! The reasons are &lt;a href="comment.g?blogID=17486745&amp;postID=114533804787870312&amp;amp;isPopup=true"&gt;here&lt;/a&gt;. And as stated I was busy with a lot of things. I was looking into my blog today and thought I’ll contribute something!&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;Version Control has been a big problem and this is a follow up to the &lt;a href="http://psguyblog.blogspot.com/2006/05/peoplesoft-system-restore.html"&gt;post&lt;/a&gt;. I started coding the application from where I left the last time around (took 3 precious hours out of my routine.). The application completed as of today will help you in the following ways…&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;             &lt;p class="MsoNormal"&gt;Firstly, when there is an enhancement which must be made to my existing PeopleSoft application. I intend to it on my DEV environment. (Let’s forget about TEST and other environments and try looking into what the application can do.) I identify the (on-line (just laughed out loud…remembered what Nietzche said “the parenthesis is for donkeys.” – That was not intended to abuse anybody)) objects which will be part of the enhancements and insert it into a project in development.&lt;/p&gt; &lt;p class="MsoNormal"&gt;Secondly, I modify the objects in my DEV. After this I use the application which will run a PeopleSoft project compare and create a report of all the changes that will be made to production as a result of this enhancement - The compare reports will be available as HTML (8.46 supports this feature) and sorted according to the date (i.e. inside the folder marked with the date of  . Now, to take a snapshot of the objects in PRD I must use the application which will take a snapshot of all the objects in the DEV project from PRD. The effort saving is that I do not have to identify and insert the objects into a PRD project.&lt;br /&gt;&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;Thirdly, the application will migrate the project from DEV to PRD.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;Lastly, the application will allow the user to “Restore” the system back to a specific date (At the on-line object level). When I choose 01-JAN-2006, the application will apply all the snapshots starting from today to 01-JAN-2006 (In the reverse order) and hence I do not have to worry about identifying each of these snapshots from my file server in the specific order.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;I intend to do a couple more things like – Define a path DEV &lt;span style="font-family: Wingdings;"&gt;&lt;span style=""&gt;--&gt;&lt;/span&gt;&lt;/span&gt; TEST &lt;span style="font-family: Wingdings;"&gt;&lt;span style=""&gt;--&gt;&lt;/span&gt;&lt;/span&gt; PRD and make sure the users do not skip any of these. The second feature will be object locking.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;If you would like to test this application reach me on my mail. (n e x t r e v o l u t i o n i n e r p @ y a h o o . c o m)&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;The various things that I’ve been up to are far from over and will give everybody an update shortly.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-115313727051919621?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/115313727051919621/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=115313727051919621&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115313727051919621'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/115313727051919621'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/07/peoplesoft-version-control.html' title='PeopleSoft Version Control'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114784158375371160</id><published>2006-05-16T21:50:00.000-07:00</published><updated>2006-05-16T21:53:03.776-07:00</updated><title type='text'>PeopleSoft System Restore</title><content type='html'>There is one important aspect of Microsoft XP which helped me get out of the worst situations with ease – System Restore (I buy all the latest games and install it, download all internet games and without System Restore I would have been doomed). I’ve wondered many a times how will it be if we could perform System Restore in an ERP. This makes me feel good about choosing the appropriate blog title. System Restore is not impossible to achieve with an ERP system, but the complexity lies with the Table structures being modified result in loss of data in certain cases and this cannot be effectively handled with a System Restore that we try and build. Let me provide a scenario, a patch delivered by PeopleSoft changes the Field type from Number to Char and we alter the table to make this change. After a few weeks the Char data which flows into the system might make it impossible for us to revert back to our Numeric field type.&lt;br /&gt;&lt;br /&gt;Although it could not be so useful incase of the Field properties which require “Alter” on all tables containing the Field, it would be suitable for all the other Field property changes (like Labels, Descriptions, etc.). The online objects like Pages, Components, PeopleCode, etc. could prove a big advantage for System Restore. This post will mention how we could achieve system restore with PeopleSoft and provide an automated application to achieve the same.&lt;br /&gt;&lt;br /&gt;Before applying a project to our existing environment we are bound to perform a PeopleSoft Project compare. We initially apply the Patch project to our Demo environment and then compare with our Development/Test environment and copy the object to our Dev/Test, we reapply our customizations with the help of compare reports, perform tests on the Dev/Test environment and finally copy the project from Dev/Test to Production. To back up and restore our system we can manually list all the objects in our Test/Dev environment and back-up the corresponding rows from PeopleTools tables for the objects in the project. The back-up can be through data mover scripts and the exported .dat file from production can be used to revert back to any specific point.&lt;br /&gt;&lt;br /&gt;The manual task of identifying the objects in Test/Dev and then writing export programs to get the Meta Data of these objects in Production can be automated. The link provided below contains an application which will help you achieve system restore for Fields – The application can only back-up and restore the on-line object (the current application can only do it for Fields in a selected project.), it cannot build these changes at the database level – Remember &lt;a href="http://www.erpassociates.com/wiki/index.php?title=Automate_Those_Migrations"&gt;Automate those Migrations&lt;/a&gt; by Brent! The export-import through data mover used by the application cannot be suitable for PeopleCode; we might have to use database level import-export options.&lt;br /&gt;&lt;br /&gt;Use the link below to download a Zip file which will contain the Setup.exe and the help document. (Approx. 2MB) – Valid for 30 days from today (17th May 2006). Do not be alarmed by “FileUL.com is being moved to a different server, we are sorry for the inconvenience this may cause”. Instead search for this “You can download the file here.” – “here” is the download link.&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=T0gzdY"&gt;http://www.fileul.com/view.php?file=T0gzdY&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The application is still at its primitive stages and I do not expect it to be perfect. Test it and let me know your suggestions. If you want to work on the Source Code and extend the applications features, feel free to send me a mail at &lt;a href="mailto:nextrevolutioninerp@yahoo.com"&gt;nextrevolutioninerp@yahoo.com&lt;/a&gt;. I can provide you with the source code and certain design documents to extend the benefits of this application. The application was built with Visual Basic and tested on Windows XP and PeopleTools 8.46. Do not complain about Translate changes as the application will only handle Fields currently and Translates are distinct on-line objects in PeopleSoft projects.&lt;br /&gt;&lt;br /&gt;I still feel like a developer at heart and would like to leave consulting for development – Just like the little boy in Alchemist! I’m not sure when that day will dawn, but I’ll keep this blog to motivate myself in the right direction.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114784158375371160?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114784158375371160/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114784158375371160&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114784158375371160'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114784158375371160'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/05/peoplesoft-system-restore.html' title='PeopleSoft System Restore'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114734459100998931</id><published>2006-05-11T03:44:00.000-07:00</published><updated>2006-05-17T02:04:58.963-07:00</updated><title type='text'>PeopleSoft - "Applications Unlimited"</title><content type='html'>After the Big News “Applications Unlimited” – by Charles Phillip, I thought I would do some research on these promises. The almost obvious aspect of this announcement was the fear of Oracle in SAP stealing their customer base. PeopleSoft was not procured for its strength in applications; Oracle went in for the huge Customer base that the acquisition would give them – But this is of least importance, as most of know where all this was heading to - Monopoly. The deeper meaning in this announcement when understood will only shatter our hopes of where the IT industry is heading to.&lt;br /&gt;&lt;br /&gt;The first PeopleSoft 9.0 product release that I found on Customer Connection was Enterprise Learning Management. Now, that PeopleSoft 9.0 was released for this product I wanted to know what the ELM Development team was up to; for my disappointment I heard that this development team was scrapped and moved to product fusion (This might not really be true, as this one came from a rather unreliable source – But cannot rule this out as impossible!). Nevertheless, let us take a closer look at what, if this were true, are Oracle’s intentions with “Applications Unlimited”. Oracle I guess is looking to convert most of the Development teams of PeopleSoft, Siebel, JDE and Oracle under one umbrella as per their previous plan of Fusion development. Then, what about “Apps Unlimited”, the support development teams will be responsible for developing future releases of PeopleSoft (post 9.0), Siebel and JDE. “Apps Unlimited” will only provide certain enhancements to Customers wanting to stick with PeopleSoft and if any real improvement which the Customer would require from the applications - He might have to move to Fusion. The support development teams might be discouraged from making major enhancements to future releases of existing Application products, while these will be part of Fusion –Customers who would like to make use of these benefits must move ahead to Fusion.&lt;br /&gt;&lt;br /&gt;Oracle has pulled this one to perfection; it can now retain the Customers in existing applications and at the same time will be working hard on building and selling Fusion. The real story is what is demeaning; I am yet to see another business where a Company dictates terms to its Customers. Why should this happen in the IT industry? Probably the next decade will save Customers the trouble of depending too much on the product vendor. Probably, we will have a lot more competition in this sphere to pull the client out of the current situation. So much for all these probable statements!&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Kindly be informed - these are my personal views and Oracle Corporation has no role to play with this post.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114734459100998931?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114734459100998931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114734459100998931&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114734459100998931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114734459100998931'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/05/peoplesoft-applications-unlimited.html' title='PeopleSoft - &quot;Applications Unlimited&quot;'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114673045465733559</id><published>2006-05-04T01:10:00.000-07:00</published><updated>2006-05-07T20:52:53.033-07:00</updated><title type='text'>PeopleSoft SQR Upgrades</title><content type='html'>It has been really sometime since I have written something. I am dedicating most of my time to the Re-Implementation project planning phase, I seem to have taken it personally, and the main reason is – One of my previous colleagues from the PeopleSoft Solution Center said “You will need all the experience inside our solution center to pull this off”, by which he means at least 600 projects that was completed by the Solution center. He has a point and I respect his views, but a challenge is always exiting. So as per my expectations these long breaks between my posts is going to continue. In this post I would like to give some suggestions to achieve the SQR Upgrade during a PeopleSoft upgrade process and the kind of Tools that you could develop to achieve the process with ease. This post talks about how I would handle the project, most of it is based on what I learnt out of my previous experience. If I’m missing something kindly let me know, missing pieces are perfectly possible because I work from India with absolutely no client interaction and no knowledge of the Real Time issues with this process. The offshore process described will involve the Technical Upgrade of the SQRs and I believe the process defined for this specific portion is precise.&lt;br /&gt;&lt;br /&gt;The PeopleSoft SQR Upgrade must be divided into three phases,&lt;br /&gt;SQR Technical Upgrade&lt;br /&gt;SQR Functional Upgrade&lt;br /&gt;Testing and Issue Resolution&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SQR Technical Upgrade&lt;/strong&gt;&lt;br /&gt;The SQR Technical Upgrade is further classified into,&lt;br /&gt;SQR Upgrade for Custom Added SQRs&lt;br /&gt;SQR Upgrade for Custom Modified SQRs&lt;br /&gt;&lt;br /&gt;Each Custom Added SQR is made compatible with the new PeopleSoft instance, this being a Technical Upgrade we will only consider the effects of Table structure modifications which would prevent an SQR from execution, the results of the SQR can only be perfected after Functional Upgrade and Testing. The Table structure changes must be provided in a document to help the Technical Consultant achieve his goal. The usual Format of this document will contain the changes that must be incorporated into each of the SQRs (This document is the Technical Design document). The Technical Design document can be created by parsing each SQR for table names within the SQRs and printing all the differences in the table structure for these tables. The table structure differences are pulled out of the Meta Tables from our old and new release PeopleSoft databases, another important aspect which must not be overlooked is the impact of “Renamed” objects. The utility which creates the SQR TDD must also look into the path specific rename scripts. The path specific rename scripts are the scripts in your new release pshomes which will be executed for your upgrade path. So the inputs to our TDD utility are folder containing Custom SQRs, Old Release database, New Release Database and the rename scripts. Understanding the precise use of the TDD is very important, at no point in time should we forget the real objective of this stage – Make the old release SQRs executable in the new release. When the report points to a field which was deleted from a specific table, we must look into the data conversion programs to identify the replacement RecordField. When a new Field is added to a table we must look out for the INSERT statements in the SQR containing these tables, and add these newly added fields in the Insert statement, if the values being inserted can be identified easily for these new RecordFields the Technical Consultant can include the precise values else we either include a Default value for the field or data type specific defaults (for CHAR – ‘ ‘, for number – 0, for date – NULL). The values entered in these insert statements will be evaluated during the subsequent phases. Renames must be done depending on the TDD pointers. Finally, the PERSONAL_DATA changes must be made to the SQRs depending on the upgrade path – that is if the upgrade path has transferred all the data from PERSONAL_DATA to PERSON, ADDRESSES, PER_DATA_EFFDT etc. An example for this is – The Custom SQR which looks like this,&lt;br /&gt;BEGIN-SELECT&lt;br /&gt;EMPLID&lt;br /&gt;NAME&lt;br /&gt;ADDRESS&lt;br /&gt;ADDRESS_OTHER&lt;br /&gt;FROM PS_PERSONAL_DATA&lt;br /&gt;WHERE EMPLID = ‘xxxx’&lt;br /&gt;&lt;br /&gt;We will have to convert the program to this format in the new release,&lt;br /&gt;BEGIN-SELECT&lt;br /&gt;! Modified by UpgraderName for SQR Upgrade Project Name - Begins&lt;br /&gt;A.EMPLID&lt;br /&gt;B.NAME&lt;br /&gt;C.ADDRESS1&lt;br /&gt;D.ADDRESS1&lt;br /&gt;FROM PS_PERSON A, PS_NAMES B, PS_ADDRESSES C, PS_ADDRESSES D&lt;br /&gt;WHERE A.EMPLID = ‘xxxx’&lt;br /&gt;AND B.EMPLID = A.EMPLID&lt;br /&gt;AND B.NAME_TYPE = ‘PRI’&lt;br /&gt;AND C.EMPLID = A.EMPLID&lt;br /&gt;AND C.ADDRESS_TYPE = ‘HOME’&lt;br /&gt;AND D.EMPLID = A.EMPLID&lt;br /&gt;AND D.ADDRESS_TYPE = ‘MAIL’&lt;br /&gt;! Modified by UpgraderName for SQR Upgrade Project Name – Ends&lt;br /&gt;&lt;br /&gt;I guess I have covered the PERSONAL_DATA changes in detail. Look out for the comments these serve as perfect documentation trails within the SQRs. After we do this sort of Documentation whenever a change was made, we make sure the summary goes to the Top of the SQR like this,&lt;br /&gt;!***********************************************************&lt;br /&gt;!             SQR Technical Upgrade by Co. Name on May 4, 2006&lt;br /&gt;!&lt;br /&gt;!           + Renamed XLATTABLE to PSXLATITEM – 7 Occurrences&lt;br /&gt;!           + Implemented PERSONAL_DATA changes in the procedure&lt;br /&gt;!                       Get-Personal-Info&lt;br /&gt;!***********************************************************&lt;br /&gt;The steps listed above must be performed to complete the SQR Upgrade for Custom Added tables. These steps can be automated; the tool must make all the desired changes, and make proper documentation in the SQR. There are number of instances to be considered, Renames must only be made to the Table or Column name and not to the variables that appear with the same names.&lt;br /&gt;&lt;br /&gt;Technical Upgrade of Custom Modified SQRs are done with the help of Beyond Compare (or any such file comparison program) the Custom Modified SQR is compared with the Delivered SQR in the old release and the Customizations are identified. The Delivered SQRs between the Old and New releases are compared to identify the changes made by PeopleSoft. If the Customization can be carried forward it should be carried forward to the New Delivered SQR. This would have been my next objective had I stayed with my old team – Create a tool to automate this analysis of SQRs and then customize them with the help of a code.&lt;br /&gt;&lt;br /&gt;All the Technically upgraded SQRs are compiled with the help of another tool – it does nothing more than pass the command line parameters using the common flags set.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SQR Functional Upgrade&lt;br /&gt;&lt;/strong&gt;The Technically upgraded SQRs are executed with Test data and the results are analyzed. The issue is identified as a business process issues which have come into effect as a result of an upgrade in this stage will be evaluated by the Functional Consultants to provide suitable solutions.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Testing and Issue Resolution&lt;br /&gt;&lt;/strong&gt;As always we finish our project with this phase.&lt;br /&gt;&lt;br /&gt;I’ll probably upload all the Tools mentioned in this post in sometime and provide the links. Currently working on a Tool to get a complete Application Engine program from the back-end, this will include the exact sequence in which the Application Engines are being executed (Dynamic Call section must be handled, Application Designer doesn’t do it! Just trying my best will let you know how it goes – Required for Re-Implementation project.) and the contents (PeopleCode too (Yes!)) and properties of the various steps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114673045465733559?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114673045465733559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114673045465733559&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114673045465733559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114673045465733559'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/05/peoplesoft-sqr-upgrades.html' title='PeopleSoft SQR Upgrades'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114605364082602520</id><published>2006-04-26T05:12:00.000-07:00</published><updated>2006-04-26T05:14:00.843-07:00</updated><title type='text'>On-Demand Applications - What I did not say?</title><content type='html'>It has been sometime since my last post, I was a bit busy with the Re-Implementation Strategies (Actually I wanted it to be the first post on my blog for sometime so that I could get some more ideas!). I was going through the success story of Salesforce.com and found out that it can be attributed to hosting applications. The mid-sized companies which need an IT solution to their business are quick to realize the cost benefits of this On-Demand version of software applications. Remember the post titled “&lt;a href="http://psguyblog.blogspot.com/2006/03/past-present-and-future-of.html"&gt;Past, Present and Future of Applications&lt;/a&gt;”, I did discuss about the future of ERP industry will most likely be the hosted applications. On-Demand is how we call it! Would you believe it if I told you that I did not know On-Demand was what I was referring to? I’m disappointed at myself! I was under the assumption that, I’ve come up with a brilliant idea. But the reality is I’m not reading all the news! I hate myself for doing that.&lt;br /&gt;&lt;br /&gt;But the idea already in existence does not ward me off. After I made the post I knew how to achieve On-Demand (to a certain extent!) but the problem that I knew and did not let know is what I’m going to discuss in this post (Probably, I should have been in marketing!). When a Customer chooses a XYZ’s On-Demand services, his entire IT infrastructure is with XYZ, this makes a move from XYZ to ABC almost impossible. If ABC after certain years comes up with the best possible application architecture and business process the Customer might regret his choice of XYZ applications. This problem is most similar to the one faced by Bigger Customers who have chosen an application (ORACLE/SAP/PeopleSoft/Siebel) which suited their requirements when they bought the applications. I hate this inflexibility, but this is what drives the business of the product vendors (Customers watch out!).&lt;br /&gt;&lt;br /&gt;The second issue in choosing an On-Demand service is this, if a large number of Customers are being hosted with a single infrastructure, the Customer looses his freedom of upgrade at HIS pace. Although the architecture change which the On-Demand vendor wants to make to his existing systems would definitely add value to my application, I’ll not enjoy the constraint of moving to the new release at a time when I have my own business issues to take care of. Additional cost which must be incurred might bring my business down.&lt;br /&gt;&lt;br /&gt;I’m still searching for answers to these questions in the World Wide Web, will let you know if I find one.&lt;br /&gt;&lt;br /&gt;Today morning my friend called me up and told me that Oracle has extended the development plans of PeopleSoft. Read &lt;a href="http://www.erpassociates.com/blogs/index.php/2006/04/25/peoplesoft_development_to_continue_past_2013"&gt;more&lt;/a&gt;. I hope my &lt;a href="http://psguyblog.blogspot.com/2006/03/peoplecode-to-java.html#c114136445320374437"&gt;predictions&lt;/a&gt; will come true!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114605364082602520?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114605364082602520/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114605364082602520&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114605364082602520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114605364082602520'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/04/on-demand-applications-what-i-did-not.html' title='On-Demand Applications - What I did not say?'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114533804787870312</id><published>2006-04-17T22:07:00.000-07:00</published><updated>2006-04-17T22:27:27.903-07:00</updated><title type='text'>Re-Implementing PeopleSoft Data Conversion Strategies</title><content type='html'>&lt;p align="left"&gt;Although I strongly believe that my current Customer should not have opted for a re-implementation, I do not intend to squeeze every penny out of his pocket. Now it is my responsibility to reduce the amount of effort required in this project.  The effort required in data conversion will define the project and I badly wish that I pull it off. Today I started documenting the various strategies which could be followed for data conversion and I look forward to your valuable suggestions to choose the best out of these. The complexity with this project seems to be never ending - The customer has a single 7.5 instance and he wants to split the single instance into two different 8.9 instances (X and Y). The amount of customer data amounts to approximately 300GB.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Re-Implementation - Data Conversion Strategies&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The purpose of this post is to analyze the various data conversion strategies that can be adapted during a PeopleSoft Re-Implementation when the Customer intends to move from PeopleSoft version 7.5 to 8.9. The biggest challenge in a PeopleSoft implementation is data conversion and the right strategy adopted at this stage marks the early success of the project. Let us look into the various data conversion strategies available in brief.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Upgrade-Like Approach&lt;/strong&gt;&lt;br /&gt;In this approach, data conversion is achieved by using the PeopleSoft delivered Application Engine programs customized to suit our requirement. To achieve our objective of migrating the application data from the Old PeopleSoft system (7.5) to our new system (8.9) we must first upgrade the PeopleTools release of our 7.5 system to 8.46 and then copy the records, fields and record fields from our newly implemented 8.9 (We must have applied the customizations to the new system) system to the 7.5 system. After this we run “Alter without deletes”. Copy the application engine programs delivered by PeopleSoft for data conversion into the 7.5 system. Customize the conversion programs to suit our requirements. Run data conversion programs and then “Alters with Deletes”. The application data in our 7.5 system can now be migrated directly to our new system using database tools for export and import. Finally we can purge the data not required by X and Y in the X and Y systems respectively.&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;Pros&lt;br /&gt;&lt;/span&gt;The effort required to create the data conversion scripts can be greatly reduced.&lt;br /&gt;The delivered data conversion scripts can be used with slight modifications (Modifications are required to handle data conversion programs specific to the upgrade path 7.5 to 8.8 as these programs will be expecting the records to have structures of 7.5+8.8, what we have in our database is 7.5+8.9)&lt;br /&gt;The data conversion process is handled efficiently in this approach and hence the time required for conversion and migration is reduced greatly.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Cons&lt;br /&gt;&lt;/span&gt;The PeopleSoft delivered data conversion scripts are path specific, hence effort required to merge the two sets of conversion programs (7.5 to 8.8 and 8.8 to 8.9) into a single program must be taken into account.&lt;br /&gt;During the final move to production there is an added overhead which requires us to perform the PeopleTools upgrade of the 7.5 system.&lt;br /&gt;PeopleTools upgrade will also require database migration from an older release of Oracle to the supported Oracle database release.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;‘RE’-Implementation Approach&lt;/strong&gt;&lt;br /&gt;In this approach we develop SQL scripts which will convert the data in the 7.5 system to the data format required by the 8.9 system. The SQL scripts will convert data by a series of CREATE, ALTER, UPDATE and INSERT statements depending on the data format required by 8.9. The data conversion happens within the 7.5 system and hence it is very efficient. These scripts are created with the help of the PeopleSoft delivered data conversion programs. Once data conversion is complete we can migrate the data from the old system into our new system using data migration tools. Data segregation between the X and Y systems can be achieved by purging the data that is not required in each of these systems (Scripts must be developed for this purpose, these are simple DELETE statements with conditions specific to purge X and Y data).&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pros&lt;/span&gt;&lt;br /&gt;The overhead of upgrading the PeopleTools release of the 7.5 system during final move to production is removed.&lt;br /&gt;The data conversion process is optimized by directly migrating the data from 7.5 to 8.9 system after conversion within 7.5 system.&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;Cons&lt;/span&gt;&lt;br /&gt;The effort required to develop the conversion scripts is huge.&lt;br /&gt;The reliability of the conversion scripts cannot be assured until we obtain the comprehensive test results.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;DBLinks Approach&lt;br /&gt;&lt;/strong&gt;Data conversion programs delivered by PeopleSoft for the upgrade paths of 7.5 to 8.8 and 8.8 to 8.9 are analyzed and merged to create a single Data conversion application engine program. The data conversion programs are customized to read data from the old release database using DBLinks and insert the data into our new release systems. Data segregation for X and Y specific data is achieved by customizing these programs to suit our requirements. The tables which are not handled by the conversion programs can be directly migrated from the old release database to the new release database.&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pros&lt;br /&gt;&lt;/span&gt;The overhead of upgrading the PeopleTools release of the 7.5 system during final move to production is removed.&lt;br /&gt;Data segregation between the X and Y systems are achieved in a single step.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Cons&lt;/span&gt;&lt;br /&gt;The migration of data between databases using DBLinks is not desirable for large amounts of data as this may require a large amount of CACHE to hold the selected data from the old release database.&lt;br /&gt;DBLinks in Application Engine programs is not recommended by PeopleSoft.&lt;br /&gt;Migrating data from the old release database could be time consuming if the Servers are in different locations, this would be the scenario with X and Y systems.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Database Schema Approach&lt;/strong&gt;&lt;br /&gt;The application data is migrated from Copy of Production to a new schema in the database server containing the new release database. The delivered data conversion scripts must be customized to read data from the tables that exist on the database schema for copy of production and insert the data into the tables present in the new release database schema. This would increase the efficiency of data migration. Data segregation for X and Y specific data is achieved by customizing the delivered programs to suit our requirements.&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pros&lt;/span&gt;&lt;br /&gt;The overhead of upgrading the PeopleTools release of the 7.5 system during final move to production is removed.&lt;br /&gt;Data segregation between the X and Y systems are achieved in a single step.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Cons&lt;/span&gt;&lt;br /&gt;Although this sounds logically feasible, the complexity involved can only be addressed by a PeopleSoft DBA.&lt;br /&gt;The conversion programs must be tediously analyzed and the schema names must be added to each of the conversion scripts.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;&lt;strong&gt;Pure Implementation Approach&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;Data conversion and migration are achieved in this approach by developing Application Engine programs in the 8.9 system to migrate and convert data from the 7.5 system. The migration and conversion can be achieved by developing Component Interfaces. Separation of X and Y data can be handled from within these conversion programs.&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pros&lt;br /&gt;&lt;/span&gt;The overhead of upgrading the PeopleTools release of the 7.5 system during final move to production is removed.&lt;br /&gt;Data segregation between the X and Y systems are achieved in a single step.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Cons&lt;/span&gt;&lt;br /&gt;Migration and conversion can be achieved using Component Interfaces or Application Engines only if application data is present in a flat file format, hence during final move to production all the data in the 7.5 system must be converted to flat file format.&lt;br /&gt;Cut off time required during final move to production is considerably increased due to the requirement of converting the data into flat file.&lt;br /&gt;The conversion process will not be as efficient as the conversion within the database as in the previous case.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Partial Implementation Approach&lt;/strong&gt;&lt;br /&gt;In this approach we identify all the tables which do not require any structural changes for data migration (Customer created tables are the best examples to this class of tables). Migrate all these tables from 7.5 to 8.9 using database migration tools. For the tables requiring conversion we develop the conversion programs as described in the Pure Implementation Approach. Data segregation for X and Y systems can be achieved in the conversion scripts for tables that have a structure change between the old and new releases. For the tables which do not have structural modifications, data segregation can only be achieved by purging the data that is not required in each individual system.&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pros&lt;/span&gt;&lt;br /&gt;The overhead of upgrading the PeopleTools release of the 7.5 system during final move to production is removed.&lt;br /&gt;The data conversion process is optimized by directly migrating the data which do not need conversion.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Cons&lt;/span&gt;&lt;br /&gt;Although data conversion is optimized by directly migrating data from tables which do not need any data conversion, ideally the amount of data within these tables will only amount to a small percentage of the entire application data in the system.&lt;br /&gt;Cut off time required during final move to production is considerably increased due to the requirement of converting the data into flat file.&lt;br /&gt;The conversion process will not be as efficient as the conversion within the database.&lt;br /&gt;&lt;/p&gt;&lt;p align="left"&gt;&lt;span style="color:#660000;"&gt;Kindly vote for the approach that you would be following or if you have a better approach do let me know.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114533804787870312?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114533804787870312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114533804787870312&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114533804787870312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114533804787870312'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/04/re-implementing-peoplesoft-data.html' title='Re-Implementing PeopleSoft Data Conversion Strategies'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114473761265122587</id><published>2006-04-10T23:34:00.001-07:00</published><updated>2006-04-11T00:05:08.170-07:00</updated><title type='text'>PeopleSoft Missing Key</title><content type='html'>I’m back from my vacation! It was a wonderful trekking experience – People who came along with me were shocked at my stamina, which I think is at its worst! Back to blogging. This is something that I always wanted to write, and the attribution comes in the beginning – this story is a brain child of one of my friend &lt;a href="http://www.blogger.com/profile/6258090"&gt;kartick&lt;/a&gt; (He works for ORACLE Corporation - not me!). He doesn’t write Technical stuff, so don’t be disappointed after reaching his blog.&lt;br /&gt;&lt;br /&gt;Most of you know that I enjoy working with the application directly from the back-end. I’ve used Meta-Data manipulation more than PeopleTools. The most interesting part was when I created a page using SQL INSERT statements. It was a wonderful sight. All this backend playing was totally alright when you are developing objects, but manipulating application data requires you to be extra cautious. The reason as we all know is that data integrity is maintained in PeopleSoft by the Application Server code. When we insert a parent record and a child record in a PeopleSoft page, it is the responsibility of the internal code to maintain data integrity. A few months back my friend was given the task of uploading some data into the PeopleSoft Test environment, with absolutely no Functional knowledge (Just like me!) he uploaded the data into the child without taking the parent into account. This I think could have been prevented had PeopleSoft provided the capability of Foreign Keys.&lt;br /&gt;&lt;br /&gt;Foreign keys, this is what I intend to discuss in some length. PeopleSoft used almost all the delivered capabilities of the database world, why did they miss this? The reason could go something like this – Development training for a record creation is very simple in PeopleSoft, had they implemented Foreign keys then the training will require the consultant to clearly understand the parent-child relation at the very beginning instead of the normal page creation part of it, I don’t think this to be a valid reason for somebody to overlook Foreign keys. The other reason could be that PeopleSoft does not recommend users to update data directly from the backend. What has just happened is that PeopleSoft had to build their integrity code; I strongly feel that we could have used the database delivered integrity to achieve our goal - Efficiency.&lt;br /&gt;&lt;br /&gt;The tough times keep coming! This is what I currently do for identifying the all the parents of a given record, I do “Find All Definition References” and then manually try identifying the parent. This could have been easily simplified had integrity been enforced at the database level – Makes life simpler for a technical consultant.&lt;br /&gt;&lt;br /&gt;To conclude, Foreign keys must have been provided in the application. All delivered business processes having a clear link between the parent and child record at the database level could have proved valuable. I don’t like being pessimistic, but is there something that I’m missing? I’ll leave the question to be answered by the readers.&lt;br /&gt;&lt;br /&gt;I’m currently learning NA Payroll from PeopleBooks (trying hard to be a Functional Consultant). My first impression is – The complexity of the PeopleSoft is not at its development environment level, it is more so at the Business process level. The Enterprise product packages all the requirements and provides a lot of flexibility to the customer, but the amount of flexibility is the problem (not really Customers want more flexibility!). Trying to build flexibility into the application has resulted in expecting parameters for each simple process to manipulate it differently. If I find more time to actually become a Functional Consultant, probably this blog will move into its next domain – Functional Needs of a Customer ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114473761265122587?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114473761265122587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114473761265122587&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114473761265122587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114473761265122587'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/04/peoplesoft-missing-key_10.html' title='PeopleSoft Missing Key'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114440734656048490</id><published>2006-04-07T03:54:00.000-07:00</published><updated>2006-04-07T03:55:46.576-07:00</updated><title type='text'>God save Customers!</title><content type='html'>God save Customers! I am currently on a vacation and today morning got an emergency mail from my organization. I thought I’ll share it with all the PeopleSoft experts and ask them their advice on this. The current project we are on is a 7.5 to 8.9 HRMS upgrade, the Customer wants us to perform a re-implementation of HRMS 8.9 and then migrate and convert the data from their 7.5 system to the newly implemented 8.9 system. The reason being stated is that a 7.5 to 8.9 upgrade will take two hops to reach 8.9 and the customer is worried about the RISK involved in the two hops (calls it cumulative risk!). The customer wants us to implement HRMS 8.9 and then migrate and convert the data from 7.5 to 8.9. Now the biggest dilemma that I face is, I think a vendor (I mean a service provider!) conversion from 7.5 to 8.9 will have more risk involved in it than the delivered conversion from 7.5 to 8.9. The customer calls it less riskier because he says we can test the application after we convert our data to 8.9, rather than hop from 7.5 to 8.8 and then from 8.8 to 8.9 and finally test the errors and figure out the exact place where our conversion got screwed (Could be between 7.5 to 8.8 or 8.8 to 8.9). My God! I think he is missing another vital piece of it, migrating and converting all the data is going to take at least twice the time compared to what two data conversions from 7.5 to 8.9. This in turn results in double the down-time. The amount of effort required in writing the conversion scripts is going to be huge. Implementation time required for applying the required customizations to the system can be reduced to a certain extent, but it still is going to be higher. The effort required in making the setup is going to be high. I do not see any benefit to this approach.&lt;br /&gt;&lt;br /&gt;I’m looking forward to your valuable suggestions. I’ll post more once I’m back from my vacation on Monday, hopefully. You can mail me at &lt;a href="mailto:nextrevolutioninerp@yahoo.com"&gt;nextrevolutioninerp@yahoo.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114440734656048490?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114440734656048490/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114440734656048490&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114440734656048490'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114440734656048490'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/04/god-save-customers.html' title='God save Customers!'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114354122162954904</id><published>2006-03-28T02:19:00.000-08:00</published><updated>2006-03-28T02:20:21.653-08:00</updated><title type='text'>PeopleSoft Upgrade Applications</title><content type='html'>If you would have noticed the recent changes to the Side bar in this blog you would have known that I did upload the recent demo version of Reapply Customizations utility which I had built. To actually know the approach followed by me in building this Tool take a look at &lt;a href="http://psguyblog.blogspot.com/2006/01/reapply-customization.html"&gt;this&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I’ve also included the Help document for all these Tools to walk you through the steps required to run the applications. If you have any questions kindly let me know. I would like to hear your feedback after you test these applications. I would also love to hear your suggestions for improvement.&lt;br /&gt;&lt;br /&gt;But be warned you will need at least three instances to test the Reapply Customization application. I know – Flash Demo for Reapply Customization is pending. I am working hard on making Reapply Customization work for “Pages” – this is a challenge basically because PNLFLDID was added to PSPNLFIELD only after PeopleTools 8.40. We can see PeopleSoft Compare process failing in identifying exact page Customizations in the PRT files prior Tools 8.40. One of my friend actually wants to know why LASTUPDOPRID field was not added to PSPNLFIELD, I think it is more to do with the tedious task of updating this field for position changes (position changes are actually not very significant in the Report). I think PS could have added this field and updated it when something other than the position of the field changes in the Page – these are just thoughts.&lt;br /&gt;&lt;br /&gt;The Customization Analyzer utility available in the Demo version does not provide the complete features – the missing portion is that the utility gives all the Navigation paths for each object in the report to help the functional consultant.&lt;br /&gt;&lt;br /&gt;The Reapply Customization utility is aimed at providing comprehensive Documentation for the objects to which it reapplied the customizations. Certain tweaks would actually make these comments more comprehensive.&lt;br /&gt;&lt;br /&gt;If you are interested in taking a challenge - try writing an algorithm to achieve Reapply Customizations for Pages (Points to ponder – Must be Tools compatible, Must only reapply customizations.). Any luck on this let me know.&lt;br /&gt;&lt;br /&gt;Test it and let me know your feedback at &lt;a href="mailto:nextrevolutioninerp@yahoo.com"&gt;nextrevolutioninerp@yahoo.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114354122162954904?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114354122162954904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114354122162954904&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114354122162954904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114354122162954904'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/peoplesoft-upgrade-applications.html' title='PeopleSoft Upgrade Applications'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114312438640740986</id><published>2006-03-23T06:24:00.000-08:00</published><updated>2006-03-23T06:33:07.366-08:00</updated><title type='text'>PeopleSoft Upgrade Contribution</title><content type='html'>Oracle’s ideas on FUSION are headed in the right direction, thanks to its acquisitions. PeopleSoft PeopleTools/Application development worked so closely with the upgrade teams, which resulted in a good upgrade path (I would not call it Best! I still think PeopleSoft could have automated the process of Reapplication of Customizations – at least to a certain extent. With only one programmer at my disposal (which is me!) I was able to automate reapply customizations for records, fields, record fields, indexes, components, menus, indexes and translates (whew!)). They (The Upgrade Development Team) worked closely with the PeopleTools/Application development and ensured that the New Release does not put too much effort requirement into the Upgrade. Can't really take the credit away from PS because a single developer could not have achieved this had they not worried about the Upgrades.&lt;br /&gt;&lt;br /&gt;Let me give you a clear pointer to this, PeopleSoft PeopleTools development wanted to remove Menus, but the Upgrade Development team identified the complexity which this would have brought to the upgrade. Although, attaching components to Menus involves a bit of effort it does provide us with the much needed grouping of related business processes. If I remember correctly, it was my mentor who put me this question “Why do we need Menus?” and digging into somebody told us it is for compatibility with Older PeopleSoft releases. We did agree upon this because we thought the advantage of Menus could easily be over-ridden by allowing the user to optionally attach these components to a Menu – This is what we thought the PeopleTools development wanted to achieve with the replacement of Menus. I have always wanted to ask somebody in PeopleSoft development whether this was actually a plan or a Myth! But this being a Myth or reality doesn’t really change things here; the Upgrade development played a critical role in PeopleSoft. Looking into the way Upgrades were presented in PeopleSoft, we really know that this did happen.&lt;br /&gt;&lt;br /&gt;I’ll get back to the first line of this post; “Oracle’s ideas on FUSION are headed in the right direction, thanks to its acquisitions”. During my recent conversation with x-colleagues I heard them say that the Upgrade development team is involved with the FUSION development in pointing the challenges which FUSION will have on PS upgrades.&lt;br /&gt;&lt;br /&gt;Another important aspect of this post is, I’m not trying to underestimate the capabilities of other Application products. ORACLE could have done it (But doesn’t look like it to me, when I was introduced to ORACLE application upgrade, it did not look like I would have understood it in 2 days. This was the amount of time required to understand PS upgrades.). If there is another company (other than PS) in FUSION whose contribution I wouldn’t doubt it is definitely SIEBEL.&lt;br /&gt;&lt;br /&gt;Small note here, another of those useful information which I came across recently is, a Customer of ORACLE migrated from ORACLE applications to PS. One of the senior members in PS had this to say, “PS HRMS 8.9 is easily the best product available in the market currently. Did you ever hear about a Customer moving from the parent company to the acquired company?” Of course heard about this from x-colleagues. I was not successful enough in getting this information from the internet, and I'm not able to recall the name of the Customer. Probably give it to you in a later post.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Disclaimer:&lt;/strong&gt; The thoughts mentioned here are strictly mine.&lt;br /&gt;&lt;br /&gt;Oh! blogs are so much easier to write (No flashy marketing lingo required), White Papers are not!!! I really have miles to go before I could finish the White Papers assigned to me. I'll try finishing atleast a couple before I could return to the blogspot.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114312438640740986?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114312438640740986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114312438640740986&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114312438640740986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114312438640740986'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/peoplesoft-upgrade-contribution.html' title='PeopleSoft Upgrade Contribution'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114258394368531367</id><published>2006-03-17T00:22:00.000-08:00</published><updated>2006-03-17T00:25:43.690-08:00</updated><title type='text'>Past, Present and Future of Applications</title><content type='html'>&lt;strong&gt;1980’s&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;XYZ Corp is a huge organization, the business requirements of this organization are spread across various processes. XYZ is facing the requirement of using Software to make their business process efficient. XYZ talks to developers and suggest that they build applications for each of their complex business process. The developers at this stage build applications for XYZ which will help XYZ in making their business process efficient. The problem with this was that the developers had to build each business process individually and the amount of effort required for this is a lot. Applications developed for different processes were developed using different technologies. Now, when the XYZ thinks about integration the Technology factor of the applications has a big disadvantage. The other constraint on these applications was that, certain developers chose not to make their source code available to the Customer. XYZ has to depend on the developer to make any changes to the application and XYZ were at the mercy of these developers to support these applications.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1990’s&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;XYZ Corp was looking for something reliable. The ERP companies came to the market with lots of promises. An ERP would contain all the applications required for any organization – this reduces the requirement of building separate applications for each business requirement. These applications would be built on a single platform – makes life so much easier! XYZ has gained control on the developers and restricts them to use only the ERP development framework to build the applications. The other major breakthrough which came in was, the ERP companies were willing to make available all the code which drives the various business processes – XYZ has the capability to customize the application and can make it work the way they want.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2000’s&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;The ERP industry has become a place where only big players can be present. All the major ERP players (Why did I say that? I could have said the two major players!) are focused on companies like XYZ Corp. The major players know for a fact that companies like XYZ can provide all the funds required for running the ERP industry. The annual support fee charged by the ERP players would give them the capability to grow in the market. Also companies like XYZ would move to the newer releases of ERP. XYZ expects these newer releases to make their life simpler, replace their Customizations with delivered Processes, whereby the number of staff (read: Customer staff) required in maintaining these Customizations can be reduced. But in reducing these Customizations they do not realize the fact that these applications are making their business rigid. Yes I concur with this quote which I took from &lt;a href="http://parallax.blogs.com/parallax_calculating_tech/2006/03/point_counterpo.html#comment-15002335"&gt;Neil’s comment&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;“Yes, I like that term: “adaptation” rather than “customization”.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2010’s&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;The major players in the ERP industry have forgotten about the millions (or billions) of small and mid sized companies which could prove to be a bottomless well of fortune. The next generation of major ERP players are raising the bars rapidly. The Customers of interest for these ERP vendors are the smaller companies which face the same problem as what XYZ did in the 1980’s. Now these ERP vendors provide the smaller customers the applications required by them at a very low cost of ownership. They have achieved this by allowing multiple Customers to be placed on a single instance which will be hosted by these ERP companies. The data security is the responsibility of the ERP Company and they have achieved this by extending the Row-Level (Row-Level security allows user’s with proper rights to access their information) security concept of the previous decade. These ERP companies also allow Customizations to these applications by providing the Customer with the business process source-code. The Customer can make Customizations to the business processes and send the Customizations back to the ERP Company; they would host his application with Customizations at a slightly higher fee than the non-customized applications.&lt;br /&gt;&lt;br /&gt;Although, the very essence of hosting Applications in a single instance started with the concept of all the application available to the Customers will be uniform. The decade saw the process evolve, the Processing Server (Application Server in the case of PeopleSoft) knew how exactly to present different Customizations to different Customer’s from a single instance. But at this stage these companies have found out ways of allowing multiple processes co-exist nevertheless still can’t find ways of making the Customizations at the Database Table (PeopleSoft Record) level co-exist.&lt;br /&gt;&lt;br /&gt;The important aspect of this post is that 2010 has not started and there will be many more innovations which would drive 2010 to be what I expect it to be. And for the constraints that I’ve mentioned and omitted, the solution will be provided by a conglomeration of ideas (I mean not just my thoughts!). I’ve a couple of White Papers to write and should be some time before I can start posting again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114258394368531367?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114258394368531367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114258394368531367&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114258394368531367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114258394368531367'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/past-present-and-future-of.html' title='Past, Present and Future of Applications'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114223705242130137</id><published>2006-03-12T23:55:00.000-08:00</published><updated>2006-03-13T00:15:29.103-08:00</updated><title type='text'>Security Part 2</title><content type='html'>It was an awesome week! (I mean the last week) I went out trekking with my cousins. I was out of work for two weeks and I make sure that I do not go to the computer when I’m on a break. I’m back to work today and back blogging. I just finished preparing a presentation and started to hack PeopleSoft. Thought I would reveal some aspects of it here.&lt;br /&gt;&lt;br /&gt;Firstly, PeopleSoft PeopleTools Team is great. I hacked into the first level (I’ll not precisely mention the route which I took, but it is all there in the post “Security”.) and found out the private key used by PeopleSoft to encrypt the password. My God! What a Key (It just made me feel what it said)! (As before, I’ll not give it out.) Then started doing a Google search for this particular weakness of PeopleSoft at the Development Environment in two-tier and this is what I found,&lt;br /&gt;&lt;br /&gt;&lt;a href="http://seclists.org/lists/bugtraq/2006/Feb/0080.html"&gt;http://seclists.org/lists/bugtraq/2006/Feb/0080.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I would like to quote a few points from the above mentioned link; PeopleSoft (ORACLE) has provided the following solution…&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Vendor Solution: (Provided by Oracle)&lt;/em&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;In Enterprise PeopleTools 8.47 and above, PeopleTools provides Triple DES encryption (i.e 3DES) for increased data security. The PSCipher Utility has been enhanced to provide a command line utility to encrypt a variety of text values stored in various configuration files throughout your system. In addition, the PSCipher includes the following features: &lt;/em&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;em&gt;Dynamic Key generation: The ability to generate unique encryption keys. &lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Version maintenance: The key file maintains a version history of all previous versions of the keys, which enables text previously encrypted to be encrypted or decrypted.&lt;/em&gt; &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Important additional information:&lt;/strong&gt;&lt;/em&gt; &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;em&gt;It is important to provide proper scope to the usage of PSCipher.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;PeopleSoft does NOT use PSCipher for the following encryption purposes:&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;PSCipher is NOT used for the encryption of ANY application data - &lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;PSCipher is NOT used for the encryption of ANY data stored in the PeopleSoft DB. &lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;ALL user passwords stored in the DB are hashed using the SHA-1 Secure Hash Algorithm&lt;/em&gt; &lt;/p&gt;&lt;p&gt;At last with PeopleTools 8.47 we have Dynamic Key generation and version maintenance. But still it can be hacked! How safe is safe? This time I’ll not tell how I’m planning to break this Dynamic Key security, but if you see closer you could probably see the weakness.&lt;br /&gt;&lt;br /&gt;So, what is my purpose with hacking PeopleSoft? (I’ll not be unethical in retrieving sensitive information.) It is got to do with the Tools that I have; I just want to add the feature of PeopleSoft USER ID capability to the Tools. One of the Tools which I’ve built will actually run all the SQRs (in any given folder) in one shot, but it requires access id and password. This did not find much appreciation because Reports were to be run with specific user privileges, for this I wanted the users to create separate access ids with different grant permissions and then use the Tool. Users are against the concept of creating separate ids and want it to be done with PeopleSoft User id. This can only be achieved if I could decrypt the PeopleSoft encrypted password and use it to connect to the database (Initial connection to retrieve passwords can be done using connect id and password).&lt;br /&gt;&lt;br /&gt;Although the other aspect which has to be considered for the SQR tool is that Application Server will have direct access to the SQRs but I’ll need the exact location of the files to be provided to the utility and most users will not have this information. Trying to work something out for this. If I dynamically accept SQR locations, user could very well provide a fake location and place a custom SQR with the SQR name that he has access to and write any SELECT or INSERT within it! Security not to be overlooked from my side.&lt;br /&gt;&lt;br /&gt;I have lots more to write about (a post on Foreign Key usage in ERP….a post on removing Menus from PeopleSoft….). I would reserve these for sometime later in this week. Think it is going to be a hectic week, two-week work pending!&lt;br /&gt;&lt;br /&gt;PS: Started learning Java. I tried coding a Message Box….oooppphhh…it sure is one coding language…then settled for printing in the console.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114223705242130137?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114223705242130137/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114223705242130137&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114223705242130137'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114223705242130137'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/security-part-2.html' title='Security Part 2'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114129248641598330</id><published>2006-03-02T01:37:00.000-08:00</published><updated>2006-03-02T01:41:26.426-08:00</updated><title type='text'>PeopleCode to Java</title><content type='html'>A couple of my x-Team-members told me recently that they would be a part of the Team which would build the PeopleSoft-Oracle Fusion Upgrade (Note: I was never part of ORACLE Corporation and will never be.). I was exited about this and thought I would post some ideas that I would have implemented if I were to do this.&lt;br /&gt;&lt;br /&gt;Most of the blogs that I’ve read recently point to one of the most crucial aspect of this Upgrade – Replacing PeopleCode with Java. I will post some thoughts of achieving this and then talk about the object level differences. The amazing thing about PeopleSoft upgrades is that they make life of an Upgrade Consultant to be a cake-walk.&lt;br /&gt;&lt;br /&gt;The Fusion team must first concentrate on building an application which would parse the PeopleCode and convert them into Java equivalents. Make modifications to PeopleTools so that the compiler will actually compile Java instead of PeopleCode. Now, anybody who has written a small piece of code to parse a file will know for certain that the amount of time required to parse the file is going to take ages. Let me give you an example, I used to upgrade SQRs from older PS release to newer releases (7.5 to 8.8). PERSONAL_DATA was a pain – if an SQR had PERSONAL_DATA in old release, then in 8.8 it was not available to upgrade the SQR we had to replace PERSONAL_DATA with PERSON, ADDRESSES, NAMES and PERSDATAEFFDT depending on which fields were selected from PERSONAL_DATA, i.e. if in the old release NAME was selected from PERSONAL_DATA we had to replace it with NAMES and add two more criteria (NAME_TYPE = ‘PRI’ and EFFDT = current date). The code that I wrote had to check for so many different possibilities (Nobody follow standards!) and also take care of the documentation within the SQR ( “! Modified by ps-guy” – this kind of stuff for each modification). I think that is enough (I feel bored about it!), the point that I’m trying to make here is, when I finished this code I astonished by the amount of memory constraint on my machine and the amount of time it took, although I used a very efficient logic (This could also be attributed to the fact that I’m a VB programmer and not a Java geek – Too lazy to learn something, VB and PeopleSoft did not require any effort – Refer to the Title “Driven by …” – a small note here planning to change the Title to “Powered by PeopleSoft Motivated by MicroSoft”). The other important aspect of an application performing that job for you is that you do not have to do it anymore – Keep your machine busy rather than yourself. Although there will be huge amount of constraint on the time required for the application to complete this conversion of PC (PeopleCode) to Java it could save the effort.&lt;br /&gt;&lt;br /&gt;But I think that ORACLE should plan this properly, Replacing Java compiler for PC compiler should be done with one more release of PeopleTools (say Tools 8.9, I heard that work for Tools 8.48 has started). Build PC-Java Converter and convert all the PS delivered PC for Application 8.9. Now the PS QA team (PS QA has a total strength of approximately 60 people for HR CORE compare this to 5 people on ORACLE side – Info based on yesterday’s discussion with my friends – PeopleSoft does not treat QA lightly) - will have their part to play, they will have to test all these conversions and make sure that they work as they used to. If any error is found then PC-Java team must review the code and try modifying the application to handle this scenario.&lt;br /&gt;&lt;br /&gt;Once PC-Java is internally tested ORACLE could deliver it to the clients so that they can convert all their Customizations in PeopleCode to Java. The PC-Java application must allow the user to select all the PeopleCode that he wishes to convert (This will allow me to convert only the Customized PC and replacing the Non-Customized PC with the new delivered Java Code), thus reducing the amount of time required at the Client location. The application must allow the user to phase the conversion of PC to Java.&lt;br /&gt;&lt;br /&gt;So will the PC-Java converter do the trick for us? It will to a certain extent, but still there is an issue of Customer training. We cannot ignore this factor as a Client would have recruited 100 Consultants with PC skills, they being his permanent employees and he cannot do away with them. For this ORACLE must take an initiative which would benefit them in the long run. ORACLE must provide Java training to all the Clients and Partners at their own expense. This would motivate the Clients in moving to Fusion (A benefit in the long run!).&lt;br /&gt;&lt;br /&gt;I have solved the PC – Java puzzle to a certain extent (I strongly believe that this can be achieved!). How about the other objects? It still remains a mystery to me as to how ORACLE is planning to store the objects (Fields, Records, Pages etc…PS terms). I do have some idea on the approach that ORACLE will be taking and as always have a plan to clean things up – I’ll reserve that for a later post.&lt;br /&gt;&lt;br /&gt;This is how I would handle Fusion Migration. If you have better ideas do let me know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114129248641598330?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114129248641598330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114129248641598330&amp;isPopup=true' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114129248641598330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114129248641598330'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/peoplecode-to-java.html' title='PeopleCode to Java'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114121837380693681</id><published>2006-03-01T05:04:00.000-08:00</published><updated>2006-03-01T05:10:39.486-08:00</updated><title type='text'>SQL</title><content type='html'>There is one question which keeps coming to my mind, Are my thoughts wise or rotten? The answer to which is still not known, but I use this blog to document all that which comes to my mind about an ERP product. Another important reason is that if someday I start building my ERP it should at least be satisfactory to myself.&lt;br /&gt;&lt;br /&gt;The PSQuery is a very good application to develop your queries; but I’m not satisfied with it. When I want to create a query which will select all the employee names from person table with some criteria, the steps to be performed are:&lt;br /&gt;&lt;br /&gt;New Query&lt;br /&gt;Select PERSON from the list of tables.&lt;br /&gt;Select NAME from PERSON table&lt;br /&gt;Go to the criteria tab and provide my criteria&lt;br /&gt;&lt;br /&gt;Simple isn’t it? A simpler solution would be, allowing me type “SELECT NAME FROM PS_PERSON WHERE blah-blah”. The SQL tab provided by PSQuery is non-editable. The reason is, once I build the query following PeopleSoft PSQuery standards then the application will know how to construct the SQL from my definition, this is non-geek. PeopleSoft answer to the non-geek community. This is where the geek community should be addressed, it would be wonderful if the SQL tab is editable and allows me to directly type the SQL and then constructing the Query objects (Query objects refers to PeopleTools data for each query) from my SQL statement.&lt;br /&gt;&lt;br /&gt;Although the Application Designer has become an integral part of every Technical Consultant, the geek interface for this is still missing. I know how to create a table using SQL and Application Designer (I agree that most of us do know this), but wouldn’t it be better if I could do this,&lt;br /&gt;&lt;br /&gt;New Record&lt;br /&gt;From SQL&lt;br /&gt;Type in the SQL – “CREATE….”&lt;br /&gt;The Application Designer must parse this statement and create the field definition. (I know I’m missing a lot of pieces here…read on)&lt;br /&gt;Then create the record definition&lt;br /&gt;&lt;br /&gt;When the Application Designer tries to create the first field it would get the basic information (Field name, Field type and length) but there are other properties which will be needed by the Application Designer to complete the creation of field, it includes Labels, Formats, the option of creating translates in a few cases, description and chartfield. The Application Designer must prompt the user to provide these inputs which cannot be found in the SQL. If a Field name does not fulfill the criteria set by PeopleSoft for fieldnames it could prompt the user to change the fieldname and set the cursor on that field in the SQL. The record creation will include the complexity of index creation, but this should not be an issue if we follow the same pattern as prompting the user for key information or allowing him to type the “CREATE INDEX” SQL.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114121837380693681?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114121837380693681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114121837380693681&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114121837380693681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114121837380693681'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/03/sql.html' title='SQL'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114102100609417579</id><published>2006-02-26T22:15:00.000-08:00</published><updated>2006-02-26T22:16:46.106-08:00</updated><title type='text'>Security</title><content type='html'>Is it easy to hack PeopleSoft? The answer to this question is not a simple ‘NO’. You could keep arguing on this, but let me give you some background on what I did, trying to achieve this and also provide a feature which any ERP must package along with its application.&lt;br /&gt;&lt;br /&gt;I was into my sixth month as a PeopleSoft consultant and did not know much about PeopleSoft at this point I was reading a book on cryptanalysis (I don’t remember the name of the book, it was not any computer hacking book instead it gave a very good Mathematical analysis on the topic); my interest in hacking the PeopleSoft system could be attributed to this book. One place where I thought PeopleSoft was weak in its security offering was the Application Designer connected to the database in two-tier mode, PeopleSoft Peoplebooks has this to say about Application Designer in two-tier;&lt;br /&gt;&lt;br /&gt;“A determined hacker could hack into the PeopleSoft system if he is provided with this.”&lt;br /&gt;&lt;br /&gt;A first step here is to realize the simple fact that when we log on to the Application Designer we use PeopleSoft user id and password. PeopleSoft user id and password are stored in the database; PeopleSoft Application Designer must be able to establish a connection to the database before it could validate the user id and password – interesting! This is when I remembered the connect id and password, and the grant.sql in pshomes where I could set the connect id and password. The connect id and connect password are the access id and access password to the database with permissions to select from PSSTATUS, PSACCESSPRFL and PSOPRDEFN. This is where the Application Designer validates the PeopleSoft user id and retrieves the access id and password to log on to the database.&lt;br /&gt;&lt;br /&gt;I have found the place from where I can retrieve the information but know it is encrypted (This is where you must be “determined hacker”). Application Designer has a C++ code which actually knows how to decrypt the passwords retrieved from the database (A determined hacker would be able to obtain the code by decompiling the application at this level, will also find himself behind bars for obtaining the source-code of a commercially licensed product). I realized that there is still another place, if I get the encryption logic with the key (once I get the encryption code, the key should be within the piece of code that was used for encryption.). PeopleSoft user profile creation page allows the user to enter a password and on saving a user profile it encrypts the password that we typed in. Had PeopleSoft been stupid enough (which they are absolutely not) they would have written the encryption code as a PeopleCode, but instead they provided a peoplecode built-in function “HASH” to encrypt the passwords (I would love to set a PeopleCode trace and know if the code for an inbuilt function is visible….I know for certainty that it would not be).&lt;br /&gt;&lt;br /&gt;Can I stop my hacking desire here? No, because I remember something that was taught to me during my initial PeopleSoft Boot-Camp – we could encrypt the passwords using Data Mover (this is just an encrypt.dms which again uses a PeopleSoft inbuilt function) and cipher.bat file. Cipher.bat file interested me and made me think that I can do it now. But I outsourced this particular job to one of my friends and he told me that this bat file calls a number of java class files (I’m not certain about this and not sure whether we could decompile the class files – not a geek when it comes to programming languages). People who are interested can actually try something out here.&lt;br /&gt;&lt;br /&gt;But if only you are a mathematical hacker you could hack the encrypted passwords and get the key used by PeopleSoft, if I do this I would probably land in RAND or behind bars (basically because PeopleSoft must be using the RSA and it has one private key which is built-in, RSA decryption is not a simple thing but we can get lots of sample data by creating our own user ids and passwords.) This is sure to take a lot of time but it is not without its benefits, read on to know how you could benefit out of this particular effort.&lt;br /&gt;&lt;br /&gt;I have seen a lot of customers who blindly use people and peop1e to be connect id and password respectively in their PeopleSoft system (We should be through to get the encrypted passwords). PeopleSoft does provide the option of extended encryptions to Customer’s passwords, but this code (and algorithm) has to be developed by the Customer. Not even a single Customer who I came across has done this, reasons could be that you have to find a mathematician to develop the algorithm and then implement it. None of the service providers could take the pains of accomplishing this. If we could somehow obtain the PeopleSoft encryption key, we get access to almost all the PeopleSoft systems on planet Earth (remember we must have two-tier access). At the three-tier level I have a strong feeling that PeopleSoft is very secure.&lt;br /&gt;&lt;br /&gt;So is there something that can be done about this? The solution is that an ERP should provide strong encryption algorithms (PeopleSoft already does this) along with this the Customer must be allowed to choose his private key which can only be used to decrypt the passwords. The Application Development environment (Application Designer in the case of PeopleSoft) must get the private key from the Customer and then use the inbuilt decryption algorithm to decrypt the password.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114102100609417579?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114102100609417579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114102100609417579&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114102100609417579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114102100609417579'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/security.html' title='Security'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114070015053438224</id><published>2006-02-23T05:05:00.000-08:00</published><updated>2006-02-23T05:09:10.546-08:00</updated><title type='text'>Wink</title><content type='html'>Firstly, I apologize for the non-erp post but was not able to resist writing about the new software that I found on the web, &lt;a href="http://www.debugmode.com/wink"&gt;WINK&lt;/a&gt;. This is an amazing software which allows you to create a Flash Presentation in no time and very user-friendly. Took me a couple of minutes to understand it; the user-forum dedicated for the application solves most of our problems. Although I’ve not used multiple call-outs on a single page, it can be done. Steps for that,&lt;br /&gt;&lt;br /&gt;After we finish our recording, save the project as “.wnk”&lt;br /&gt;Export the file to HTML&lt;br /&gt;Open the folder containing the images for the HTML document.&lt;br /&gt;Edit the required image with MSPAINT&lt;br /&gt;Delete the existing thumb-nail for the image in WINK&lt;br /&gt;Create a blank thumb-nail in its place&lt;br /&gt;Copy-Paste the image file that we edited in step 4&lt;br /&gt;&lt;br /&gt;I did find these steps from the user-forum, posted it here just to make sure that you don’t overlook it. This application is just great. I’ve created a flash presentation for Customization Analyzer (You can find it in the side-bar, it is not complete...will post the complete presentation soon). It makes the job of presentations so much easier, that I enjoyed doing this one. Did I forget something? What is the price of this application? It’s a freeware!&lt;br /&gt;&lt;br /&gt;Almost forgot the attribution part. WINK is a product of &lt;a href="http://www.debugmode.com/"&gt;DebugMode&lt;/a&gt; Software.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114070015053438224?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114070015053438224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114070015053438224&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114070015053438224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114070015053438224'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/wink.html' title='Wink'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114051505270034711</id><published>2006-02-21T01:42:00.000-08:00</published><updated>2006-02-21T02:27:33.746-08:00</updated><title type='text'>Version Control</title><content type='html'>This post is intended in documenting one of the most important aspects of MY ERP. This morning I saw my post and found a valuable suggestion from &lt;a href="http://www.erpassociates.com/blogs/"&gt;Brent Martin&lt;/a&gt;, a very valuable suggestion which I did overlook. Brent did give another link to look into before knowing the exact problem, &lt;a href="http://blog.greysparling.com/2006/01/peoplesoft-version-control.html"&gt;Grey Sparling&lt;/a&gt;&lt;br /&gt;&lt;p class="MsoNormal"&gt;As we all know Grey Sparling Solutions is an organization run by able x-PeopleSoft employees. I thought I better read it before I make any suggestions out here. The biggest challenge when it comes to version control in PeopleSoft’s case was this, PeopleTools release means changes to Source code at the Application Designer level and Application Server level. I think this should be very easy (as the source code is in text format), we could use any commercially available Version Control application for this purpose. Although this piece of version control requires third-party tools, it will only be internal as we will not package this to the Customer.&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;The biggest challenge to PeopleSoft is in tracking the object level changes. Chris Heller (refer to Grey Sparling link above) has mentioned that they achieve this by using SUBVERSION, i.e. a text format result for these changes on database objects. Once the SUBVERSION is available it should again be easy for us to establish version control. PeopleSoft provides a Compare process which allows the user to compare objects in the database and generate reports. But as I’ve always thought, one of the main draw-backs of the PeopleSoft Compare process is that it is not PeopleTools compatible. I did develop a couple of tools to help an Upgrade Consultant; Reapply Customization was one of them. Reapply Customization will compare, analyze and then reapply the customizations and I made it PeopleTools compatible. It will compare databases between different releases and then reapply customizations; all this was achieved only with the rel-scripts at my disposal. PeopleSoft could have made their Compare process PeopleTools independent (from any new release to any old release) this would have allowed us to generate the database object level compare report in text format.&lt;br /&gt;&lt;br /&gt;Having said all this, the Compare process independent of Tools gets a tick for MY ERP. It is a feature which must be present.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114051505270034711?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114051505270034711/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114051505270034711&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114051505270034711'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114051505270034711'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/version-control.html' title='Version Control'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-114043003769063666</id><published>2006-02-20T01:42:00.000-08:00</published><updated>2006-02-20T02:07:20.503-08:00</updated><title type='text'>MY ERP Architecture</title><content type='html'>Before I really start working on MY ERP I have another important step which is finalizing the Architecture for this product. This reminds me of a presentation which I made to the ‘Architects of Oracle Fusion’* (*this was how they were introduced to me) six months ago. The presentation was intended in giving the Architects an overview of PeopleSoft Architecture. The most striking feature of PeopleSoft’s architecture is their ‘Meta-Data Driven’ part. I was always fascinated by the fact that an ERP chose this approach (Whether they were the first? I can’t answer this question). The database companies today spend valuable amount of effort in making the data retrieval process of the database to be quick and efficient, PeopleSoft did not have to worry about the efficiency of data-retrieval as they chose the Meta-Data Driven approach. As an application package ERP’s should always worry about end-user efficiency. When you choose a Meta-Data approach, the system will certainly become more efficient with time as you will only be storing required information.&lt;br /&gt;&lt;br /&gt;One of the first questions which I recall from my session is, “Wouldn’t storing all information in a database make it in-efficient?” And I said there is always a trade-off. Here is an example, a user designs a page using the application’s development environment (Application Designer incase of PeopleSoft), let us assume that the development environment is not meta-data driven. Now, the development environment will create a file for this page, the next time when the user wants to view the page, the development environment has to retrieve information from the file-server instead of a simple SQL (like: SELECT * FROM PSPNLFIELD WHERE blah-blah). The file-server version will definitely prove to be more inefficient. We can still make it efficient by adding the Application Server layer to our development environment, but there is no guarantee that this would prove to be more efficient.&lt;br /&gt;&lt;br /&gt;The Meta-Data Driven approach is not without its disadvantage, customers will not relish the fact that half (not literally) of their database space is occupied by the application. As I said before there is always a trade-off. One thing is for certain I’ll surely not think about Batch Programs (Application Engine in PeopleSoft’s terms) residing in the database. They are better left as SQRs in a file-server. It was a great idea to allow users code their batch programs from the development environment, but I think they should have been left to the file server from where the development environment could have accessed them.&lt;br /&gt;&lt;br /&gt;I think I’ll stay with the Meta-Data driven architecture with lots of tweaks to it. But before I do so I would just love to hear opinions on this. What do you think should I choose - an approach similar to PeopleSoft (The Title says it, “Driven by PeopleSoft….’) or is there something better?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-114043003769063666?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/114043003769063666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=114043003769063666&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114043003769063666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/114043003769063666'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/my-erp-architecture.html' title='MY ERP Architecture'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113982216688586810</id><published>2006-02-13T01:15:00.000-08:00</published><updated>2006-02-13T01:16:06.896-08:00</updated><title type='text'>My Mentor</title><content type='html'>He is very important to me just for the fact that he has insights. HE is my mentor. I asked him to go through my posts last week and guess what? He gave me a perfect solution to the trial roll-out of MY ERP’s coding interface. The solution goes as below,&lt;br /&gt;&lt;br /&gt;We could call the drop-down coding interface to be the non-geek (functional) coding interface and the MY ERP’s complete code interface to be the geek (Technical) interface. This should keep the geeks and the non-geeks happy. But the basic idea of this ERP lies in eliminating the geeks (including me) and let the non-geeks build their requirements and test it. But it is still a long way to go. Planning to start my alpha version build as quickly as possible. Let you know how things proceed. I’m running out of time. Can somebody make the days run for another dozen hours?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113982216688586810?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113982216688586810/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113982216688586810&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113982216688586810'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113982216688586810'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/my-mentor.html' title='My Mentor'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113930708041079196</id><published>2006-02-07T02:10:00.000-08:00</published><updated>2006-02-07T02:11:20.426-08:00</updated><title type='text'>MY ERP Upgrade!</title><content type='html'>An important aspect to consider when you set out to build an ERP will be presented to the reader. My experience with ERP industry has been upgrades probably that drove me here. No awards for guessing the content of this post, but I certainly wish to share some thoughts on how to achieve what we desire.&lt;br /&gt;&lt;br /&gt;Today’s ERP industry is quickly becoming a legacy system. When I set out to build MY ERP my first priority would be to look at how well the application will provide the upgrades. The question which arises to the user is, “How can you estimate your upgrade when you have not built your first release?” (Appreciate your attention!). I plan to take the non-traditional route.&lt;br /&gt;&lt;br /&gt;When my business process specialists build the functional pieces of MY ERP, I would like them to look into other competitors and ensure that we provide all the features provided by our competitors. Once the essential pieces of my applications architecture has been built, I want the people in my organization to come up with an upgrade path from one of our competitors to our application. This application upgrade path should be 75% more efficient than our competitors upgrade path from his old release to his new release. The most important trick here is to ensure that we do not loose any valuable Customer data. Our upgrade application must have conversion scripts which will ensure smooth migration of our client from one ERP segment to the other. As always the next section will give you an example, so that my vision does not get blurred through your eyes.&lt;br /&gt;&lt;br /&gt;The Customer is running PeopleSoft and using the HRMS application. The Customer makes use of the HRMS product of PeopleSoft to store and manipulate his data. Our business process analysts will determine the exact location in our application where the PeopleSoft data can be used (Tedious job! But nevertheless it should not be left to the Customer). Then we will create conversion scripts to move the data from the PeopleSoft system to MY ERP. All features provided by PeopleSoft which do not exist in our system will be added to our system as Customizations. This particular script will be utilized by an upgrade Tool (Conversion Aide) which will parse the script and provide user interfaces that will ease the job of upgrade. If there are any Customizations made to the PeopleSoft system (Why did I put an ‘If’?)  then the Conversion Aide would provide suggestions to the Upgrader to handle the Customizations. E.g.: If the Customer adds a field to a particular table the Conversion Aide will identify this to be a feature which would be lost during the upgrade and hence will provide the user information related to this. It will provide the user a segment of the Conversion Road Map, which includes a pictographic representation of “how and where” the data from the Customized table gets converted. Then he will be given the option of retaining or retiring the Customization ( The Customer will require some effort to look into why the Customization was done, so the Conversion Aide will also provide him the Customization plan which would be generated by the Conversion Aide to determine “Why were the Customizations made? What is the Customization?” This would not be possible without understanding the complete architecture of PeopleSoft and what are the details to look into?). If he wishes to retain the Customization he will be prompted with another interface to apply the Customization to MY ERP. The Conversion Aide will track the Customization made by the Customer and it will make the necessary changes to the conversion script. Now the Customer should be able to verify the validity of the changes made by the Tool, hence it will provide a Compare Interface to validate and edit the changes.&lt;br /&gt;&lt;br /&gt;Most of the thoughts in the previous paragraph are targeted at Customer Modified objects, what about the Customer Added objects. Here I’ll concentrate on the other aspect of Customization, the first step in handling Customer added objects is to perform a check on, why the customization was done? The Conversion Aide will start with this simple question on a user interface which will be indexed. Now when the Customer types in the reason for the Customization the Tool will search and retrieve the business process available within MY ERP for the requirement. If the Customer is satisfied with the business process provided by MY ERP then the Conversion Aide will assist him to generate the scripts required for the conversion. Else the Customer Added object from PeopleSoft will get converted into Customer Added object in MY ERP.&lt;br /&gt;&lt;br /&gt;I certainly understand that this will require lot of effort from understanding the business process and architecture of two systems, but it will certainly save a lot of time for the Customer and increase his ROI. It will also gear us up for our own upgrade. I’ve not spoken in length about the Code section (Look closely I’ve only considered objects!). I’m an optimist when it comes to me believing the fact that code modifications can also be automated (at least to a certain extent as to ease the user effort).&lt;br /&gt;&lt;br /&gt;“Why should I migrate?” – This will be the first question asked by the Customer when you reach him, so it’s always better that we do concentrate hard on making MY ERP a better product than what the market offers and then allow the user to migrate to the better product in a better way!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113930708041079196?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113930708041079196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113930708041079196&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113930708041079196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113930708041079196'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/my-erp-upgrade.html' title='MY ERP Upgrade!'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113922237437765286</id><published>2006-02-06T02:35:00.000-08:00</published><updated>2006-02-06T02:45:38.466-08:00</updated><title type='text'>Vision Statement for MY ERP</title><content type='html'>The time is ripe for me to document all that I think of, so the best place where I can do this is in a blog. If you had been a frequent visitor to my posts you will know my reasons to start this blog; to create an ERP which will be way superior to the existing ones. &lt;a href="http://psguyblog.blogspot.com/2005/04/driven-by-peoplesft-motivated-by.html"&gt;MY ERP&lt;/a&gt; -- This is where my journey began and I wish to take it somewhere.&lt;br /&gt;&lt;br /&gt;The most essential aspect of my application is that it will not require any coding changes from the Customer end. I wish to pass all the coding arguments which the Customer would normally customize to the Properties page of each object which he creates. When a Customer intends to change the logic which drives a particular page, the application will provide the Customer a user interface where he can actually make his Customizations.&lt;br /&gt;&lt;br /&gt;The problem with all this documentation is that I’ll have to give proper examples to ensure that I’ll understand my thoughts after a while; E.g.: I want to test my emplid before I save it, the application might provide a simple Validation Check to ensure that I do not enter any special characters to the column. I being the Customer would like to add a criterion as to check whether the number added is according to my business requirements. Now the application should provide us with the option of adding the Extra Validations to the column without opening the code; that is I should be able to open the property of the column emplid and say, “Add Criterion” à Set Field Type Column to “Type” à Select “&lt;&gt;” à Select “Number” à Set Action to “Error”. Then for the next criteria I say the following to the application “Add Criterion” à Set Field Type Column to “Value” à Select “Greater than Equal to” (This could be a drop down box which should also allow me to type “&gt;=”) à and provide a value in the next column as “5000” à Set Action to “Error” (This could also point to another condition or another Set of processes which the Customer wishes to perform. E.g.: The Customer would like to provide an auto-generate option to the user which will need a message box to obtain user feedback followed by a set of calculations to determine the emplid. These will be called processes and can be added just like Criteria). Now the application should add the following code to the columns code section as follows,&lt;br /&gt;&lt;br /&gt;If emplid.type &lt;&gt; “Number” then&lt;br /&gt;Error&lt;br /&gt;End if&lt;br /&gt;If emplid.value =&gt; 5000 then&lt;br /&gt;Error&lt;br /&gt;End if&lt;br /&gt;&lt;br /&gt;-- I hate the system constraining the user with the requirement of learning the syntax to use applications code section.&lt;br /&gt;&lt;br /&gt;I think I have taken the simplest situation in Customizations, but there will be more complex customer requirements which we as developers should not ignore. E.g.: The Customer is not satisfied with the Validation Check provided by the application and prefers to comment the entire logic provided by the application and add his own criteria and processes. So we should split each and every piece of code that we put on an object into functions and allow the user to deselect the functions and create the ones that he requires. There will be instances where the Customer would choose to add some criterion at a specific point in the logic provided by the application, this should be achieved by providing our logic to the Customer in the same fashion which he will be using to create the logic. That is if the application code is also structured in the property of the object, the Customer can think about inserting his logic at any specific point in delivered code.&lt;br /&gt;&lt;br /&gt;I totally understand that there are millions of other situations which will arise and prove to be a complication to the system but with proper specifications set to build the system developers should be able to foresee all of these (I trust the developers and I’m an optimist – at least to MY ideas). The initial versions of the applications should also provide the Customer with an editor to help him code the requirements manually, just to ensure we do not get complaints about not being able to customize our applications. We should then analyze the segments where the Customer has chosen manual code customizations and improve our product.&lt;br /&gt;Although I work as a Consultant currently, I strongly believe that developers responsible for building the applications should leave no room for the Consultants to form the middle layer between the application and the Customer, even if it leaves me without a job.&lt;br /&gt;&lt;br /&gt;Before I end this post I want to say something to the people who have read this:&lt;br /&gt;If you think that this post is just a dream then you are a pessimist (According to me).&lt;br /&gt;If you think it to be a Vision, I tag you as an optimist.&lt;br /&gt;&lt;br /&gt;I belong to the pessimist sector when it comes to Oracle’s DREAM (not VISION as I’m not an optimist in this case) of building the Fusion (Coincidence “Frankenstein” also starts with “F”) with the best pieces (“Parts” also starts with “P”) from PeopleSoft, Siebel and Oracle.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113922237437765286?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113922237437765286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113922237437765286&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113922237437765286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113922237437765286'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/02/vision-statement-for-my-erp.html' title='Vision Statement for MY ERP'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113879199923071622</id><published>2006-01-31T23:46:00.000-08:00</published><updated>2006-02-01T22:41:52.596-08:00</updated><title type='text'>What I want in Oracle Fusion</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;PeopleSoft Internet Architecture brought the Internet “Look and Feel” to our application, because of which I always compare the application front-end to the best websites that I come across in the internet. Few of these websites need not be the best but still they are the once that I frequent. I want my application to match these websites. In this post I’ll list out certain features which I badly need in my application.&lt;?xml:namespace prefix = o /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;First, I check my emails regularly on Yahoo. I can do it in the following ways,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style="MARGIN-TOP: 0in" type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;Go to &lt;a href="http://www.yahoo.com/"&gt;http://www.yahoo.com/&lt;/a&gt; and then click the “mail” option available on that webpage. After which I sign on to my email account.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;Go to &lt;a href="http://www.google.com/"&gt;http://www.google.com/&lt;/a&gt; and search for “yahoo mail” and then reach the desired webpage and log on to my account.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;After I reach &lt;a href="http://mail.yahoo.com/"&gt;http://mail.yahoo.com/&lt;/a&gt; in any of the above mentioned methods I can add it to “Favorites”. When I need access to the webpage the next time I can reach it by using my Favorites.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;Go to &lt;a href="http://mail.yahoo.com/"&gt;http://mail.yahoo.com/&lt;/a&gt; and sign on to my account.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;&lt;strong&gt;Option 1&lt;/strong&gt; will be the most undesirable option as it involves these disadvantages,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;span style="font-size:+0;"&gt;1.&lt;span style="FONT: 7pt 'Times New Roman'; font-size-adjust: none; font-stretch: normal"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family:Georgia;"&gt;I have to wait for the &lt;a href="http://www.yahoo.com/"&gt;http://www.yahoo.com/&lt;/a&gt; page to open on my system before I can choose the “mail” option. Then wait for the Mail page to open.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;span style="font-size:+0;"&gt;2.&lt;span style="FONT: 7pt 'Times New Roman'; font-size-adjust: none; font-stretch: normal"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family:Georgia;"&gt;It involves two steps to be performed by the end-user, Step 1 to type the url in the address bar and Step 2 to Click the “Mail” option&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family:Georgia;"&gt;Option 2&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:Georgia;"&gt; should have been the worst nightmare to imagine (I’m not against Search Engines, kindly read on…), but I keep it lower than Option 1 because there could be instances where I forget the address of both the home page and the intended page, our Search Engines come in handy when this happens. PeopleSoft did provide you this option with the Verity Search Engine.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family:Georgia;"&gt;Option 3&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:Georgia;"&gt; is good but not the “best” (According to me!), because it is only a while before “My Favorites” gets clogged making it unreadable and unusable. PeopleSoft provides this option. I want them to look at the next.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family:Georgia;"&gt;Option 4&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:Georgia;"&gt; is the “best” option available (According to me! I insist this because applications should cater to the needs and requirements of all users). You can achieve this in PeopleSoft if you remember a variety of components that form the building blocks of a PeopleSoft url (Not very attractive!). I see two ways in which this can be implemented.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style="MARGIN-TOP: 0in" type="1"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;When we log on to PeopleSoft application we see a standard DHTML Tag containing the links to “Home” and “Sign Out” options. PeopleSoft can add an address box to this along with a “Go” button and let the user type the address of the page that he wants to visit. The user can type in “LEV_REQUEST” and access his Leave Request page. Fortunately the PNLGRPNAME field is unique. PeopleSoft can do this by a combination of SQLEXEC and a simple transfer function on the Field Change event of the button “Go”. The page will not load if the user does not have proper permissions to access the component.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal" style="MARGIN-LEFT: 0.25in"&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style="MARGIN-TOP: 0in" type="1" start="2"&gt;&lt;li class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;The other option is to enable our application server to accept a parameter from the address url and manipulate on it to determine the page intended by the user. Eg: To access leave request component (LEV_REQUEST), the user types in the url as &lt;a href="https://lev_request.my.peoplesoft.com/"&gt;https://lev_request.my.peoplesoft.com/&lt;/a&gt;, where the standard url used by the user to access the application is &lt;a href="https://my.peoplesoft.com/"&gt;https:\\my.peoplesoft.com&lt;/a&gt; and the component which he intends to access is LEV_REQUEST. I’m not certain about this option being viable as I’ve NEVER done network programming neither do I completely understand the way the Web Server and App Server function. I only believe that it is possible.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;Am I done? No not yet, there is one more function which I desire, “Remember my Password” option. Although my password manager can do this, it would be of great help if the Application can provide me with this option. I’m certain that the “classical” Security experts will not agree with this, but this is MY requirement.&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Georgia;"&gt;If I ever succeed building an ERP (MY ERP), I’ll ensure these features are packaged with it.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;span style="font-family:Georgia;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113879199923071622?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113879199923071622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113879199923071622&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113879199923071622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113879199923071622'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/what-i-want-in-oracle-fusion.html' title='What I want in Oracle Fusion'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113810095894848083</id><published>2006-01-24T03:06:00.000-08:00</published><updated>2006-01-24T03:35:03.866-08:00</updated><title type='text'>Customization Analyzer Purpose Clarified</title><content type='html'>&lt;strong&gt;Introduction&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The PeopleSoft Compare process delivered by PeopleSoft provides a reliable and efficient method to compare the online objects in PeopleSoft database. The results of the Compare are provided to the end-user in .PRT format (prior PeopleTools 8.46, from 8.46 the Compare process results in generation of .XLS and .XML files). The output file obtained from PeopleSoft Compare is often cumbersome and difficult to understand. The output file lists the objects in alphabetical order rather than the desired Classification of objects into Customer Added objects, Customer Modified Objects etc. The output file created will only contain one object per file and the classification of objects (Custom Added, Custom Modified…) is not readily recognizable to the user. The report generated by this utility helps us overcome all these pit-falls in the PeopleSoft Compare process. In addition the Customer can add any additional documentation to each of his Customizations. A sample output for the utility is available in the following link,&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=17Rgi8"&gt;http://www.fileul.com/view.php?file=17Rgi8&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This document outlines the benefits of the Customization Analyzer utility. The document is segmented into three categories depending on the application area of the utility.&lt;br /&gt;&lt;br /&gt;Ø Customization Tracking&lt;br /&gt;Ø PeopleSoft Upgrade&lt;br /&gt;Ø PeopleSoft Patch Application&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name="Customization_Tacking"&gt;Ø &lt;strong&gt;Customization Tracking&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The utility can be used to track and document all the customizations made to online PeopleSoft objects. The Customer can document all the Customizations made to his PeopleSoft system. The report generated by the utility is in a user friendly format. The Customer can review all his Customizations from a single Excel document. All the functional documentation can be added to the report, which will help in decision making for an upgrade to a newer release. It facilitates the process of identifying Customizations which are not required i.e. from the report generated the Customer can obtain all the objects created by him where he will be able to identify Customizations which are no longer required in the production.&lt;br /&gt;&lt;br /&gt;&lt;a name="PeopleSoft_Upgrade"&gt;Ø &lt;strong&gt;PeopleSoft Upgrade&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The utility aids the process of Upgrade Assessment where the effort required for the upgrade is estimated based on the number of Customizations available on the Customer’s Production environment. The utility also provides a Gap Report which identifies all the Obsolete Modified Objects i.e. the objects which were modified by the Customer in an older release of PeopleSoft that were deleted by PeopleSoft in the new release. The Gap Report aids the Functional Consultants in identifying the Gaps that have occurred between the PeopleSoft releases. The utility helps the Upgrader to delete all the Obsolete Modified Objects by toggling the “Take Action” flag in the PeopleSoft Database.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name="PeopleSoft_Patch_Application"&gt;Ø &lt;strong&gt;PeopleSoft Patch Application&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The PeopleSoft process for application of patch projects to the production environment requires the Customer to apply patches to Demo instance initially and then Compare and Copy to the production. In this scenario it will be useful to document all the objects affected by the application of patches. The Customer has the flexibility to document all Customizations affected by the application of patches and he can also document the objects omitted (objects that were delivered with the patch and not applied to the Production) by him in his patch application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113810095894848083?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113810095894848083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113810095894848083&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113810095894848083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113810095894848083'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/customization-analyzer-purpose.html' title='Customization Analyzer Purpose Clarified'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113757140450514564</id><published>2006-01-17T23:09:00.000-08:00</published><updated>2006-01-18T00:03:24.520-08:00</updated><title type='text'>Want to be an Enrepreneur? Disclaimer: I'm just advising and will not take responsibilty for anybody's failure</title><content type='html'>Its been a year since I started working and my Enrepreneur instinct has been growing rapidly. But I know for certain that instincts do not lead you anywhere. I've hated working under somebody. I dedicate this post to the millions of wanna-be Enrepreneur in my country ( Pardon me for being country specific, you will know the reason at the end. Disclaimer: Could be useful in other countries too!!!!!).&lt;br /&gt;&lt;br /&gt;*** under-grads -- refers to students pursuing their under-grads&lt;br /&gt;&lt;br /&gt;The software industry has taken a shift in its course compared to the past decade. Think about an induvidual wanting to start a software services firm in the 90's. He could have been successful with some hard work and luck. But the situation is different now. If you are a start-up services company, you might probably loose the battle (Disclaimer: Unless you know somebody like Larry Ellison!!!!). So the way to go about it is to start a Product based company. Now if you succeed in making a good product, it doesn't neccessarily mean you can sit back and relax. You should have been bruised by the time you accomplish your goal of building a product (I mean financially!! Disclaimer: Not if you are Bill Gates.). Then waiting for the people in the market to come to you and purchase your product (could be a lot more painful).&lt;br /&gt;&lt;br /&gt;Now let me analyze the situation in my country. The under-graduate curriculum  is not very punishing in my country. A large number of my friends who left to the USofA tell me that their post-graduation requires them to do a lot more work in terms of assignments(Some kind of Home work which will prevent you from playing your favorite Computer games like Max Payne, Mafia, COD etc....). But even after so much more (comparitive) effort required to finish their assignments all these buddies of mine work part-time!!!!! It just stuns me, may be I could have worked full-time in an organization during my under-graduate program. This is the energy which all the budding Entrepreneur's must tap. I can obviously hire a few of these under-grads to develop a product for me. Ohh Ohhh!!! then what about the knowledge that comes with experience!!! I did build a couple of products without knowing the basics of programming (Claim: The code is way too efficient). I did this only with the help of "Google Search"(- I cannot live a single day without it!!!). This should be our target as budding Entrepreneurs tap the under-grads when they have a lot of energy and can be hired at dirt rates. A service based company cannot do this as the CLIENTS of that organization will start doubting the capability of the organization!!!!(Whatever that means)&lt;br /&gt;&lt;br /&gt;The next consideration is that Entrepreneurs do not want under-grads with dirt IQ(Although they need them at dirt rates!!!). In this country there are other considerations too, I can stick a poster for Job vacancy outside my organization, but our under-grads will not respond properly (Number of reasons for this: He thinks "Why should I search for a job?", "What if I don't get a job?"...). This is not a failure to our announcement. Instead, we will recieve a lot of applications from people who have completed their grads and know the answer for all the questions in an under-grads mind. When we recieve these applications be sure to close you shop and start writing down the reasons for your failure.&lt;br /&gt;&lt;br /&gt;Do not Panic!!!!!! I have a suggestion to help you tackle this problem. Fortunaltely all the under-grads are exited about getting a job in their "Campus Recruitment" program. We can use this as an oppurtunity to conduct our "On-Campus Recruitment For Part-Time Jobs". Now we get under-grads at dirt rates and as a complement they do not have a dirt IQ.&lt;br /&gt;&lt;br /&gt;Once successful this program will only improve the overall economy of our country. Students can start supporting themselves, Parents can start thinking about their Dream house.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;No Rights Reseved: &lt;/span&gt;&lt;span style="color:#cc0000;"&gt;I do not want to reserve any rights to this post. Kindly make full use of the advice presented and make our country a better place to live in. ;)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113757140450514564?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113757140450514564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113757140450514564&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113757140450514564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113757140450514564'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/want-to-be-enrepreneur-disclaimer-im.html' title='Want to be an Enrepreneur? Disclaimer: I&apos;m just advising and will not take responsibilty for anybody&apos;s failure'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113713510173444477</id><published>2006-01-12T22:21:00.000-08:00</published><updated>2006-01-16T01:39:50.683-08:00</updated><title type='text'>Oracle Fusion</title><content type='html'>I was uncertain with the way Orcl will be achieving its Fusion goal. But after reading the Blog of John Wookey, Orcl Exec Vice Pres. I better change my perception. This man has vision. One of the most important aspects of future ERP systems is going to be the powerful front office tools that form a part of the ERP system. Everyone of us is looking forward to this and John did talk about this in his blog. The other aspect which I never realized was the importance of training. John spoke about that too. He talked about future training systems as an on-project guide. This is important because I could be hiring a HR personnel because my organization has a vacancy for that position because the previous employee has left. The person who I hire for this role could satisfy all the requirements to fit that position but he might not have MY ERP experience. Hence a sophisticated ERP trainer is required. The ERP system must have a training instance, where the new employee can practice his job. Then when he works on the real system the system must be able to provide him suggestions/tips for his duties. He could be needed to recruit a new resource, for this when the user searches for "RECRUIT" or any word with this the system must provide all the links and suggestions. After the user goes into the proper page where he can hire an employee, the system should be able to walk him thruoghh the entire process of recruiting an employee.&lt;br /&gt;&lt;br /&gt;This will save a lot of time. My organization will not face a downtime required to train the new employee.&lt;br /&gt;&lt;br /&gt;But the reason why I did not look at the above mentioned training product could be that I was thinking that ERP could be far less compliated than the current systems.&lt;br /&gt;&lt;br /&gt;Current ERPs being complicated is ofcourse agreed upon by other big fellows in the market. For reference read the link given below.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.workday.com/today.html"&gt;http://www.workday.com/today.html&lt;/a&gt; (By WORKDAY, started by Dave x-CEO of PplSft)&lt;br /&gt;&lt;br /&gt;But I can still see a bright future for aspiring Entrepreuners, they can look at both the products mentioned above.&lt;br /&gt;&lt;br /&gt;1. ERP Trainer.&lt;br /&gt;&lt;br /&gt;2. ERP&lt;br /&gt;&lt;br /&gt;I feel strongly it is just the beggining of a new era, where developers can aspire to control the future. Atleast for the last decade all the companies started in India were Consulting and Services based organizations. Now I personally know a lot of a ERP companies started in India, although they are small with some guidance and proper goals they should be able to achieve what non of the service based organizations in India could dream of.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Disclaimer: &lt;/strong&gt;The views mentioned above are strictly mine, I do not expect anybody to concur with it.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;With Regard to my earlier post, I have recieved complaints that the Customization Analyzer.zip is in a format which is not extractable.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;To make life simpler I'm posting the links where you can download the non-zipped files,&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=0tfLFGv"&gt;http://www.fileul.com/view.php?file=0tfLFGv&lt;/a&gt; (This is the application. I have changed the file extension to be ".doc", kindly change this to ".exe")&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=P9pZdIlM"&gt;http://www.fileul.com/view.php?file=P9pZdIlM&lt;/a&gt; (This is the help file.)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=D5bPSlfN"&gt;http://www.fileul.com/view.php?file=D5bPSlfN&lt;/a&gt; (This is the ActiveX component required by the application. For further information read the help document. I've again changed the extension of the file from ".ocx" to ".doc". Kindly do the reverse)&lt;br /&gt;&lt;br /&gt;For any further information contact, &lt;a href="mailto:nextrevolutioninerp@yahoo.com"&gt;nextrevolutioninerp@yahoo.com&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113713510173444477?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113713510173444477/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113713510173444477&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113713510173444477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113713510173444477'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/oracle-fusion.html' title='Oracle Fusion'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113687947081085330</id><published>2006-01-09T22:14:00.000-08:00</published><updated>2006-01-11T03:57:26.926-08:00</updated><title type='text'>Reapply Customization</title><content type='html'>Being a PeopleSft Upgrade Consultant, my primary job in an upgrade was to take care of Customizations(because PeopleSft has already refined all the other processes involved in an upgrade). Taking into consideration the above mentioned fact this apllication was one which I needed badly. The reason behind it was, If there is a field in 7.5 eg: EMPLID whose length the Customer chaged from 8 to 12. Then we had to open the new release field EMPLID (in release 8.9). We will ask the Customer to give his feedback in the Vanilla Compare Report that we generated, if the Customer wants the change to be retained in the new release then we will continue with the steps. If the length of the field in new release database is greater than or equal to 12, then we do not make any changes to the field, else we change ONLY the length of the field to 12 (say change it from 9 to 12) and retain all the other delivered properties of the field in the new release. The next few steps really drove me crazy, we will have to open the object in the New release database (Upgraded COP, it has all the Customer created objects in addition to the new release objects. No Customer Modified objects.) make the customization and go to the object property ( 1. File --&gt; Open --&gt; Field --&gt; EMPLID and 2. Field Property)&lt;br /&gt;&lt;br /&gt;Now add the following comment to the Field properties description,&lt;br /&gt;&lt;br /&gt;UPGCONSUL 01/10/2006&lt;br /&gt;----------------------------&lt;br /&gt;&lt;br /&gt;Reapplied Customizations. Changed the length of the field from 9 to 12.&lt;br /&gt;&lt;br /&gt;............all the new release delivered comments for the objects are retained here.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;My work doesn't end here, I'm supposed to open the Gap Report (at this stage we call this the Notes Report.) Click on the hyperlink to Custom added -- Fields. Write notes to the field EMPLID as "Changed the length of the field.)&lt;br /&gt;&lt;br /&gt;What boring work? Why do they need gratuate students to do this job??? (I guess may be to CHEAT the client)&lt;br /&gt;&lt;br /&gt;So I started building the application. I wanted the application to be release independent, the way this can be achieved is using the rel scripts. Let me give you the steps that I followed,&lt;br /&gt;&lt;br /&gt;1. Configuration Manager ---&gt; Trace ---&gt; SQL statements and SQL variables.&lt;br /&gt;&lt;br /&gt;2. Open the trace file in Textpad (This I do because Textpad looks for any changes made to the file and gives us an update)&lt;br /&gt;&lt;br /&gt;3. Log on to the application Designer&lt;br /&gt;&lt;br /&gt;4. I continue deleting the Trace file and saving it until I hit the operation that I desire.&lt;br /&gt;&lt;br /&gt;5. Then once I record the operation which I desire, I save the file as DESIREDOPERATION&lt;br /&gt;&lt;br /&gt;6. Now I'll know all the PeopleTools tables which I are required (Actually desired operation doesn't mean that I only change the length of the field, I do otherthings like creating a new field, deleting a field, running a project compare with the trace ON and making sure that the project only contains the Field)&lt;br /&gt;&lt;br /&gt;7. This is a HUGE step, I open all the rel scripts, look for the PeopleTools Table and then I do a mapping of these tables right from 7.5 to 8.9. This is not just enough, I continue documenting all the update statements for these PeopleTools table from 7.5 to 8.9.&lt;br /&gt;&lt;br /&gt;8. After all these I start coding.&lt;br /&gt;&lt;br /&gt;It actually seemed pretty simple at first, but PeopleSoft has really thought about certain things, for example saving database space in storing the properties of objects. For example, the Record Field properties are stored as a decimal number in the backend, USEEDIT1, they have also thought about the future and placed another column in the table for USEEDIT2. Now these decimal numbers converted to Binary will result in a lot of bits, each of these bits will correspond to a check box in the Record Field Property. I took a lot of time documenting these.&lt;br /&gt;&lt;br /&gt;Then for reapplying record field Customization the customer could change the position of a field, for example,&lt;br /&gt;&lt;br /&gt;7.5 the order of the fields be, here 1, 2, .. represent field names.&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;4&lt;br /&gt;5&lt;br /&gt;6&lt;br /&gt;&lt;br /&gt;The Customized order in 7.5 be,&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt;3&lt;br /&gt;4&lt;br /&gt;2&lt;br /&gt;5&lt;br /&gt;6&lt;br /&gt;&lt;br /&gt;The new release 8.9 order be,&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt;4&lt;br /&gt;3&lt;br /&gt;2&lt;br /&gt;5&lt;br /&gt;6&lt;br /&gt;&lt;br /&gt;Then the Tool will act as a Technical Consultant, it doesn't care about the actual Field name and makes the changes as follows,&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt;3&lt;br /&gt;4&lt;br /&gt;2&lt;br /&gt;5&lt;br /&gt;6&lt;br /&gt;&lt;br /&gt;I had a big argument with my colleagues that what the Tool does will be perfectly satisfying, they did not agree. So I had to generate another Excel sheet which can be reviewed by us without opening the application. For this piece kindly look at &lt;strong&gt;the link for Notes&lt;/strong&gt;, and Click on Customer Modified -- Recrd Flds. Then click on the hyperlink for "DISCIPLIN_STEP". This is the kind of satisfying results which this application has been producing.&lt;br /&gt;&lt;br /&gt;A lot of hard work and that is why I've not open sourced the application.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I'm currently workin to prepare a Demo version for the Tool. Kindly give me some more time, when I'm done I'll post the link for the Demo application and the Help Document too.&lt;br /&gt;&lt;br /&gt;Do post your feedback. This is one thing which does motivate me to write more.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;the link for Notes,&lt;/strong&gt; (Download the files in the links below into a single folder and then unzip the first file using PKZIP)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=aDzfm6xO"&gt;http://www.fileul.com/view.php?file=aDzfm6xO&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=WASY7hx"&gt;http://www.fileul.com/view.php?file=WASY7hx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=2nKKD4xK"&gt;http://www.fileul.com/view.php?file=2nKKD4xK&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=XoAuVIp7"&gt;http://www.fileul.com/view.php?file=XoAuVIp7&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113687947081085330?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113687947081085330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113687947081085330&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113687947081085330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113687947081085330'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/reapply-customization.html' title='Reapply Customization'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-113636059604923122</id><published>2006-01-03T23:35:00.000-08:00</published><updated>2006-01-04T04:57:50.006-08:00</updated><title type='text'>Demo Version Of Products</title><content type='html'>The Customization Analyzer Demo version is currently available for Download. You can download it from the SideBar. You can also Download it using the hyperlink provided below.&lt;br /&gt;&lt;br /&gt;The current Demo Version comes with a help document which will walk you through the process.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=SM6IHla5"&gt;http://www.fileul.com/view.php?file=SM6IHla5&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;People have been asking me the benefits of this utility. Let me get to the point, if you are doing an upgrade, this is your dream Tool. You will now the pain involved in documenting the Customizations and getting proper Customer Feedback.&lt;br /&gt;&lt;br /&gt;If you are applying a patch then you could have objects which are delivered with the patch. Now you will need a report instead of the PRT, so run the Tool against the Demo database where you have applied the patch, run a comapare, Run the Tool with Comapre Type = Full Compare. To Test the demo version of this Tool you will need to have records, fields and record fields in your patch project.&lt;br /&gt;&lt;br /&gt;If you want to see a sample report then use the link given below.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fileul.com/view.php?file=17Rgi8"&gt;http://www.fileul.com/view.php?file=17Rgi8&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Kindly add a comment when the links expire (It expires once the Download limit exceeds), so that I can upload the file again. Thanks.&lt;br /&gt;&lt;br /&gt;I value your suggestions and feedback.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-113636059604923122?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/113636059604923122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=113636059604923122&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113636059604923122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/113636059604923122'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2006/01/demo-version-of-products.html' title='Demo Version Of Products'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17486745.post-112851484873495113</id><published>2005-04-10T04:25:00.000-07:00</published><updated>2005-12-14T03:20:25.766-08:00</updated><title type='text'>Driven by PeopleSft Motivated by MicroSft</title><content type='html'>This post of mine is to motivate myself to build the ERP which will change the Face of the existing ERP's. I've just started visualizing how an ERP should be designed in the future, before I start describing how MY ERP will be, I'll give you the reasons which led me to this road;)&lt;br /&gt;&lt;br /&gt;I started my career as a PeopleSft Consultant. Looking at this product I thought nothing better can ever be built. Amazing!!! finally it is "I" who came up with this idea to revolutionize ERP's future. I would like to accept that this Idea of mine is totally motivated by Microsft.&lt;br /&gt;&lt;br /&gt;I start my story here, Windows is a product which removes the requirement of spending time to understand the USE of it from the end user perspective. I want to use Windows for a specific application, say I wanna watch a movie using Windows. They provide me with the Windows Media Player. I being the end user who is not satisfied with the performance of Media Player can download similiar applications which will suit my requirement and simplify my process. &lt;span style="FONT-WEIGHT: bold"&gt;This application although obtained from a third party is not very difficult to Install into the product (Windows).&lt;/span&gt; &lt;span style="FONT-STYLE: italic"&gt;Will YOU be interseted to INSTALL this application ( say Real Player or QuickTime ), if you had to hire a third party CONSULTANT and ask him to Customize your existing Windows Application?&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold"&gt; &lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I think you can see where I'm getting to: ERP's in the future should allow third parties to provide the Business Logics which a customer will require. These Business Logics should be available to the Customer as Modules which can be installed directly to his production environment. This will remove the requirement for the customer to apply customizations to the product which he purchases. Now he'll be buying from other third parties which you think would increase the cost for the customer. But with the increase in the number of third party vendors the cost of each module will definitely COME DOWN. The ERP companies can themselves test and certify each of these third party modules. This certifying process will give a lot of comfort to the customer.&lt;br /&gt;&lt;br /&gt;In summary I would like to see an ERP that can be bought for 2000$, but will still have all the Gloss of PeopleSft. The ERP should work on all databases starting from MYSQL to ORCL this would allow users of any scale to use it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(0,153,0)"&gt;The previous products &lt;/span&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(0,153,0)"&gt;that I've built are for the use of PeoplSft consultants. They can be downloaded from the links given below.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(204,0,0)"&gt;This product is called a Customization Analyzer, which will give you the results of Peoplesoft Compares. This is just a demo version which will only give you a report for Records, Fields, Record Fields.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p&gt;Sorry I've temporarily removed the links&lt;/p&gt;&lt;p&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(204,0,0)"&gt;The following product has been named as Reapply Customizations. This is too a demo version which can be used only for record fields. As the documentation will not be provided for these demo versions use the Tool Tip Text. &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;span style="COLOR: rgb(0,204,204)"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;Sorry I've temporarily removed the links&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="FONT-WEIGHT: bold"&gt;I would appreciate your valuable comments. If you wish to purchase the above listed products you can mail me at: &lt;span style="COLOR: rgb(102,0,204)"&gt;nextrevolutioninerp@yahoo.com. &lt;span style="COLOR: rgb(0,0,0)"&gt;&lt;br /&gt;&lt;br /&gt;The products come with support.&lt;/span&gt;&lt;span style="COLOR: rgb(51,51,51)"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17486745-112851484873495113?l=psguyblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://psguyblog.blogspot.com/feeds/112851484873495113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17486745&amp;postID=112851484873495113&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/112851484873495113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17486745/posts/default/112851484873495113'/><link rel='alternate' type='text/html' href='http://psguyblog.blogspot.com/2005/04/driven-by-peoplesft-motivated-by.html' title='Driven by PeopleSft Motivated by MicroSft'/><author><name>PS-GUY</name><uri>http://www.blogger.com/profile/11308706371398928615</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
