Sub tabs in Employee Search Page Result for Seperating Employee Data and Manager Data
Step 1: Create a pageLayout region as you normally would.
In my case Page EmployeeSearchPG Page is already Created.
Step 2: Select the pageLayout region in the JDeveloper Structure pane, right-click and select New > Region.
Name your new region in accordance with the OA Framework File naming standards, and set its
Style property to subTabLayout i.e EmplyeeTabLayoutRN
Step 3: Add two container regions to your subTabLayout region(EmplyeeTabLayoutRN).
1.EmpDataRN
2.ManagerDataRN
step 4: Add View Object(Table) EmployeeSummaryVO1,ManagerVO in EmpDataRN,ManagerDataRN
Resion using Wizard Respectively.
Step 5: Select the subTabLayout region(EmplyeeTabLayoutRN), right-click and select New > SubTabs.
JDeveloper creates a subTabs named child.
Step 6:Select the subTabs named child, right-click and select New > SubTabBar.
Step 7: Select the subTabBar region, right-click and select New > Link. Set the link's Text property to
the label that you want to display in the subtab. Repeat for each subtab content region that
you created in Step
Link1
ID:EmplyeeData
Item Style :Link
Destination URI="OA.jsp?page=OA.jsp?page=/oracle/apps/fnd/framework/toolbox/labsolutions
/webui/EmpSearchPG&retainAM=Y&addBreadCrumb=Y&" +
OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 0
Text:Emplyee Date
ActionType:firePartialAction
Event:emp
Submit:True
Link2
ID:MangerData
Item Style :Link
Destination URI="OA.jsp?page=OA.jsp?page=/oracle/apps/fnd/framework/toolbox/labsolutions
/webui/EmpSearchPG&retainAM=Y&addBreadCrumb=Y&" +
OASubTabLayoutBean.OA_SELECTED_SUBTAB_IDX + "=" + 1
Text:MangerData
ActionType:firePartialAction
Event:mgr
Submit:True
Component Structure In jdevloper :
Employee Search Page with Sub Tabs: