Archive for February, 2008

Difference between Custom Objects and Customized Objects

I know this sounds little stupid for some people, but for some people this is helpful. I know one guy who gets confused all the time with these two terms and comes and asks me all the time. I thought I would list these here and ask him to remember PeopleSoftGuys.com, so that he can [...]

PeopleSoft AR transaction tables

The following are the common AR Transaction tables
PS_ITEM  - Item related information will be stored.
PS_GROUP_CONTROL – Groups related information will be stored
PS_PENDING_ITEM  - Pending items related to pending group will be stored.
PS_ITEM_DST - Accounting information related to a pending group will be stored.
PS_PENDING_DST - Accounting information related to a posted group will be  stored.
PS_DEPOSIT_CONTROL - [...]

PeopleSoft Change Assistant

 
PeopleSoft change assistant is a standalone application delivered with PeopleTools 8.4x onwards. PeopleSoft change assistant can be used for applying patches and fixes for maintenance updates.
PeopleSoft change assistant grabs all the required information from the Environment Management Hub and uploads it to the PeopleSoft customer connection site. With this environment information, PeopleSoft customer connection will [...]

UNIX Commands to delete older files

Recently I wrote the following UNIX command line code to delete the older files in report repository and log files. I thought it might be useful for some one.
Reports Delete
find /psreports/PSPROD/* -type d -prune -mtime +15 -exec /bin/rm -R {} \;
The above command will delete all the directories under /psreports/PSPROD directory which are 15 days [...]

COMMIT statement usage in PeopleSoft Data Mover

PeopleSoft Data Mover issues COMMIT statements after most successful SQL commands, except for EXPORT and IMPORT commands. But for EXPORT and IMPORT commands, PeopleSoft Data Mover issues a COMMIT after each record. With IMPORT commands you can associate a  SET COMMIT n command, which will perform a COMMIT after the system inserts every n rows.
Example:
SET [...]

PeopleSoft Data Mover Commands

ENCRYPT_PASSWORD
 Encrypt one or all user passwords defined in PSOPRDEFN table.
  Example: ENCRYPT_PASSWORD ROGERS;
EXPORT
 EXPORT command will be used to export the data from a table or a join of tables and store the result set in a file. You can use the generated export file as input for migrating data to any another platform.
Example:
SET OUTPUT C:\PS_CUSTOMER.dat
EXPORT [...]

PeopleSoft Data Mover Operating Modes

You can connect to PeopleSoft data mover in two modes depending on the previlages that your user id has. The following two are the modes that you can connect to the data mover.

Regular mode.

Most of the time you connect using this mode. To sign in to the data mover in regular mode, enter your PeopleSoft [...]

Conversion of SBT to PeopleSoft 8.8 FSCM

I’m currently leading a project for a public sector client and we needed to perform a data conversion of legacy data from SBT system into PeopleSoft financials and supply chain system.
The approach I designed to bring the data into the PeopleSoft system is

Export the data from SBT system (Which is in FoxPro) to .dbf files
Import the [...]

Killing a long running tuxedo service or a query.

Before you kill any service you need to identify the service to be killed. Find out from the database which pid is stuck  or go to /psappsrv and run the psadmin to take a look at the server status to see which query is not idle
Go to /psappsrv location
type psadmin and hit enter
select your domain and choose “TUXEDO command [...]