Monday, September 15, 2008
CIs: Connecting to PeopleSoft Jolt sever from VB.net. Why & How. Part 4
Sunday, September 14, 2008
CIs: Connecting to PeopleSoft Jolt sever from VB.net. Why & How. Part 3
[If you are looking to Load 100k+ rows into PeopleSoft quickly, this isn't the post for you! This is a multi post piece on Component Interfaces. Hopefully it is informative reading...]
Part 3
Saturday, September 13, 2008
CIs: Connecting to PeopleSoft Jolt sever from VB.net. Why & How. Part 2
Part 2
If these already exist, obviously just add missing parts...
CLASSPATH=C:\PS\8.49\web\psjoa\psjoa.jarPATH=C:\PS\8.49;C:\PS\8.49\jre\bin\client
C:\PS\8.49 is where my PeopleTools is located.
As for what is needed for a peopleTools CI only environmnet, you don't need to whole thing. Here are the files that are needed:Everything under .\jre and \webIn .\bin\client\winx86:
dbghelp.dll msvcp71.dll msvcr71.dll psapiadapter.dll psbtunicode.dll pscmnutils.dll pscompat.dll pslibeay32.dll pspetssl.dll trio.dll zlib1.dll
PeopleSoft_PeopleSoft.reg & PeopleSoft_PeopleSoft.tlb are what you get when you build the PeopleSoft APIs from appdesigner.
In order to get familiar with the code, I'd like to suggest that you take a look at the demo code that you can generate by right clicking on your CI from app designer and selecting the generate visual basic template. This is in VB6-or-less layout in a .bas file.
Friday, September 12, 2008
CIs: Connecting to PeopleSoft Jolt sever from VB.net. Why & How. Part 1
Tuesday, September 11, 2007
App Designer Basic Considerations
There are a lot of objects that can be in a project that aren't listed ing the "Development" Tab. The reason for this is that you can move objects with App Designer that you can't edit with app designer. They are made part of the project, but aren't editable. These objects sit on the "Upgrade" tab.
A prime example is content References and folders.
These are great to have in the project so that when you move it around you don't have to keep re-registering components, but can be bad if the parent folders aren’t there in the target environment etc etc…
Things to watch for:
Menus
Content References
Permission Lists
Folders
PeopleCode not pertinent to your project (it by definition shouldn’t be in your project!)
Closing:
Always check the "Upgrade" Tab on the project explorer to make sure you're not moving stuff that doesn’t need to be moved.