PeopleSoft Crazy

My Experiments with PeopleSoft

Avoiding Search page in PeopleSoft

leave a comment »

There are 2 ways I know that can directly take you to the page without displaying you the search page.

  1. You can use a PS_INSTALLATION record on the “Search Record” field of the component properties. This works because INSTALLATION table doesn’t have any key structure. If there is no key structure defined, then obviously the user cannot search on anything.
  2. The other way is to use Peoplecode in SearchInit event. You can use SetSearchDialogBehaviour(0). This works provided all the keys required for the component is given. If only partial keys are provided, then the search dialog is still displayed inspite of a code written in the SearchInit peoplecode event. On the other hand, if you want to force display the search page, even if all the keys are available for the component, then use SetSearchDialogBehaviour(1) instead.

Written by limemintcooler

July 16, 2008 at 4:53 pm

Posted in Peoplesoft

Tagged with

Leave a Reply