PeopleSoft HRMS

  Home  Management  PeopleSoft HRMS


“PeopleSoft HRMS frequently Asked Questions by expert members with experience in PeopleSoft HRMS. These interview questions and answers on PeopleSoft HRMS will help you strengthen your technical skills, prepare for the interviews and quickly revise the concepts. So get preparation for the PeopleSoft HRMS job interview”



6 PeopleSoft HRMS Questions And Answers

1⟩ What are the setup tables?

he data which is not going to change frequently such type

of data is stored in setup tables.

Exp: Company Address,Phone No,Company Locations,Company

Name,Business Units,Departments , Positions.

 155 views

2⟩ How to retrieve the data from 3rd scroll, using traversing?

getlevel0.getrow(1).getrecord(record.level1record)getrow(2).

getrecord(record.level2record)getrow(3).

getrecord(record.level3record);

The above answer is for to retrieve the 3rd scroll recoed

level data only.

If u want the field level information use below syntax

getlevel0.getrow(1).getrecord(record.level1record)getrow(2).

getrecord(record.level2record)getrow(3).

getrecord(record.level3record)getfield(field.fieldname);

 143 views

3⟩ How to run the sqr in command prompt. What are the parameters that are used for running the sqr from command prompt?

Let's say your PeopleTools is installed in D:PT848

D:PT848binsqrDB2BINWsqrw.exe

D:pt848SQRinfup_file_name.sqr -iD:pt848SQR

-ZIFD:pt848SQRpssqr.ini -S -DEBUGX -PRINTER:PD -EH_PDF

-fD:pt848output_file_name.pdf -oD:pt848log_file_name.log

Where:

Options:

-i => Input file Directory

-f => Output File Name

-o => Log file Name

-ZIF => SQR Initialization File Name

 174 views