How do you call a secondary page in PeopleSoft?
To insert a secondary page control, access the primary page:
- Select Insert > Secondary Page.
- Click the primary page where you want to display the secondary page control.
- Double-click the control to access the Secondary Page Properties dialog box: Secondary Page tab.
What is a secondary page in PeopleSoft?
Secondary Page Secondary pages gather or display supplemental information that is related to the data in a primary page but less frequently referenced or updated. Secondary pages are displayed using the DoModal PeopleCode function. See Using Secondary Pages. See DoModal.
What is secondary page and subpage in PeopleSoft?
Sub page is generally used for reuse; i.e. you have the same 4 fields. appearing the same way on several different pages. Then you’d use a. subpage with those fields and include the subpage in all those pages. Secondary page is used mostly as a pop-up type page to show additional.
What is a secondary page?
Secondary pages are optional for site sections, and they are typically used to dynamically present content on a Web site. A secondary page can have static content, but what makes secondary pages useful is their ability to have dynamically placed and replaceable content.
What is Page in PeopleSoft?
Pages are the graphical interface between your users and your application database. Using PeopleSoft Application Designer, you can create, modify, and delete page definitions in your PeopleSoft system.
How do I create a sub page in PeopleSoft?
Steps for creating a sub page:
- Click on New–>Page.
- Right click on the page and select Sub Page.
- Drag and drop the necessary fields from the Sub record.
- Save it with _SBP.
- Click on Insert–>Subpage.
- Select the Sub page from the list and click on Ok.
What is Page Composer in PeopleSoft?
PeopleSoft page composer enables your administrators to design the content and layout of fluid approval pages based on your business needs using a desktop, laptop or smartphone. No need to code or customize PeopleSoft application pages and the system makes real-time changes.
How do I add a page to components?
Adding Pages to Components
- Open a new or existing component in the workspace and make the definition active.
- Select Insert, Page into Component.
- To narrow your search, enter selection criteria, such as name, description, or project.
- Click Insert.
- Select the page that you want to add to the component.
- Click Insert.
How do I add a page in PeopleSoft?
Access PeopleCode in page definitions….Cloning Page Definitions
- Select File, Open. The Open Definition dialog box appears.
- Specify Page for the definition and locate the page that you want to clone.
- When the system retrieves the page definition, select File, Save As.
- Enter a new page name.
- Click OK.
How do you create a component and add components to the page?
Setup Summary
- Create the the desired component in the site’s Extras Folder (called the “Data Source”)
- On the page the component is to be added to, open Presentation > Details in the Sitecore ribbon.
- Select the type of component you want to add.
- Assign the component to an area on the page (called the “placeholder”)
What is grid in PeopleSoft?
Scroll areas and grids serve as containers or organizers for multi-field data entry. You can think of all of the fields in each of these controls as belonging to one table in your database. Three types of grid layouts appear in PeopleSoft applications: Original grids. Scrollable grids.
How do I add a component to a page?
Adding Components to a Page
- Create the the desired component in the site’s Extras Folder (called the “Data Source”)
- On the page the component is to be added to, open Presentation > Details in the Sitecore ribbon.
- Select the type of component you want to add.
Why is PeopleCode not running on the secondary page?
This means that if your secondary page control is inserted in scroll level 1 of the standard page, Peoplecode running when the secondary page is active will not have access to scroll level 0 fields, or the other records and fields on scroll level 1 that is not on the secondary page itself.
How to call more than one secondary page?
Can use more than one Domodal function in single event peoplecode to call more than one secondary page. Any variable declared as a Component variable will still be defined after using a DoModal function.
When to use domodal to call a secondary page?
Secondary pages are modal, meaning that the user must dismiss the secondary page before continuing work in the page from which the secondary page was called. To use Domodal function set the Destination as ‘PeopleCodeCommand’ in Pushbutton properties as shown below. Note : Domodal is also used to call Standard page.