PeopleSoft General

  Home  Management  PeopleSoft General


“PeopleSoft Common guideline for job interview preparation. Explore list of PeopleSoft General frequently asked questions(FAQs) asked in number of PeopleSoft Common interviews. Post your comments as your suggestions, questions and answers on any PeopleSoft General Interview Question or answer. Ask PeopleSoft General Question, your question will be answered by our fellow friends.”



102 PeopleSoft General Questions And Answers

70⟩ What are different peoplecode events?

fiels edit,fi

eldchange,

field default,

field formula

rowinit

,rowdelete

,rowinsert

,rowselect

,prebuild

,postbuild,

saveedit,

saveprechange

,savepostchange

,worlflow

 138 views

72⟩ Explain What are different peoplecode events?

searchinit,

searchsave,

rowselect,

prebuild,

fielddefault,

fieldformula,

rowinit,

postbuild,

activate,

rowinsert,

rowdelete,

saveedit,

saveprechange,

workflow,

savepostchange,

fieldedit,

prepopup,

fieldchange,

itemselected.

 130 views

73⟩ How to debug AE?

To run a program in debug mode:

Set the debug option.

You can set the debug option in the following locations:

Start PeopleSoft Configuration Manager and select the Process Scheduler tab.

In the Application Engine group, enable debug by selecting the Debug check box. This is the method that applies to all methods of invocation.

If you used the command line option to invoke your Application Engine program, then you can include the −DEBUG Y parameter in the command line you submit to PSAE.EXE.

 130 views

74⟩ Can you explain the difference between SaveEdit and FieldEdit?

Field edit can be used to locally check the syntactial errrors made by end user( mostly). It can be used for conplex checking operations too but rarely.

Save edit is used to check the logical existance or invalid datta inputs.It can be used for conplex checking operations.

Example if a broker becomes ineffective after a perticualr date, and if some calculations are done after that date, logic can be written in save edits to stop further processing and help the user identify another broker whose effictive date is valid for the date specified.

Field Edit peoplecode is fired when you try to change the value of a field on the page and Save Edit peoplecode is fired when you try to save the page. Both validates data but Field Edit peoplecode is used to validate the data for only that particular field which is changed and Save Edit peoplecode is used to validate all the data changes made to the fields on the page

 133 views

79⟩ Explain Difference between SavePreChanges and SavePostChanges w.r.t SAVEEDIT?

Save edit validates data and gives messages or warnings.when no error/warnings exist then saveprechange fires. it helps by doing one last check before the save process. save post change updates/inserts data into the records that have not been brought into to component buffer. it is recomended not to give error or warning messages in prechange and postchange events.

 161 views