Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

This operation can only be used in peoplesoft package deployment projects of type PEOPLESOFT.

Target Properties

Property Name

Property Code

Required

Description

Database Type

FDPSOFT_DATABASE_TYPE

Yes

The type of source database to which to connect to. (e.g. ORACLE, SYBASE, etc.)

Database Name

FDPSOFT_DATABASE_NAME

Yes

The name of the source database to which you are connecting.

PeopleSoft User

FDPSOFT_USER_ID

Yes

The user ID to use to sign into the source database. 

PeopleSoft Password

FDPSOFT_PASSWORD

Yes

The password for the specified user ID for the source database.

PeopleSoft Connect ID

FDPSOFT_CONNECT_ID

No

The ID that is used to connect to the database.

PeopleSoft Connect Password

FDPSOFT_CONNECT_PASSWORD

No

The password for the specified connect ID.

PeopleTools Executable Path

FDPSOFT_PEOPLETOOLS_EXE

Yes

The path to the PeopleTools executable. (pside.exe)

Customizations Home Folder

FDPSOFT_CUSTOMIZATIONS_HOME

No

Location where your customized PeopleSoft application files are installed.

Project Properties

Property Name

Property Code

Required

Description

PeopleSoft Project Name

FDPSOFT_PROJECT_NAME

Yes

The name of the PeopleSoft project.

PeopleSoft Object Types

FDPSOFT_OBJECT_TYPES

No

Comma separated list of object types as numbers to be included. If not provided all object types will be included. (e.g. 0,2,65,78)

Database SQL Files Extension Order

FDPSOFT_SQL_EXTENSIONS

No

SQL file extensions indesired order. Will be used for discover and sort. Files with these extensions will discover as type DATABASE Object. Specify the list of comma-separated extensions if you would like to change.
Default value is: {{seq,tbl,idx,typ,tps,tpb,sql,pkh,plb,pks,pkb,pls,pck,fnc,trg,spc,bdy,prc}}

Internal Files Root Source Directory

FDPSOFT_CUSTOMIZATIONS_ROOT_SOURCE_DIR

No

Where xml/INI file's package resides. Default is internals.

Customization Files Root Source Directory

FDPSOFT_INTERNALS_ROOT_SOURCE_DIR

No

Where customization file's package resides. Default is customizations.

Database Files Root Source Directory

FDPSOFT_DATABASE_ROOT_SOURCE_DIR

No

Where SQL file's package resides. Default is sql.

Datamover Files Root Source Directory

FDPSOFT_DATAMOVER_ROOT_SOURCE_DIR

No

Where Datamover dms file's package resides. Default is dms.

Project File Includes

FD_PARTIAL_FILE_INCLUDES

No

Controls files included in Project Files during populate. Enter expressions separated by ##. Leave empty to select all files. Begin or end the expression with * for simple wildcards. Otherwise, regex is used (e.g. /java/*##*.java##*person*##/java/.*[tT]est.*\.java).  

Project File Excludes

FD_PARTIAL_FILE_EXCLUDES

No

Controls files excluded from Project Files during populate. Enter expressions separated by ##. Leave empty to select all files. Begin or end the expression with * for simple wildcards. Otherwise, regex is used (e.g. /java/*##*.java##*person*##/java/.*[tT]est.*\.java).

Inputs

Input Name

Input Code

Required

Description

Additional Parameters

FDPSOFT_INP_ADDITIONAL_PARAMETERS

No

Additional parameters to be added to the PeopleTools command.

Artifacts

This operation builds a zip file artifact and saves it to the artifacts repository.  

...

  1. Internals

  2. Customizations

  3. Database

  4. Datamover

Notes: DataMover Scripts(.dms)

Data Mover is the best way to export and import data between PeopleSoft databases.

PeopleSoft Data Mover requires two files to be available on the target before execution:

  • Control file (which ends with a .dms extension)

  • Data file (could be any file CSV, db, DAT)

Sample EXPORT script is

Code Block
-- REF0001 DD/MM/YYYY Author
-- Brief explanation of what is being exported
 
SET LOG C:\REF0001_EXPORT.log;
SET OUTPUT C:\REF0001.dat;
 
EXPORT TABLE_NAME;

sample IMPORT script is

Code Block
-- REF0001 DD/MM/YYYY Author
-- Brief explanation of what is being exported
 
SET LOG C:\REF0001_EXPORT.log;
SET INPUT C:\REF0001.dat;
 
IMPORT TABLE_NAME;

If a package contains both EXPORT and IMPORT scripts,

During the packageBuild operation, the DMS EXPORT scripts are executed, generating an output DAT file.

This generated output is then saved to the artifact along with the EXPORT and IMPORT scripts.

During the packageDeploy operation, the IMPORT scripts read the input DAT file from the artifact (generated by the build operation) and execute the IMPORT scripts.