0% found this document useful (0 votes)
10 views

How To Create Train, NavigationBar and PageButtonBar in OAF

Uploaded by

Mustafa Taha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

How To Create Train, NavigationBar and PageButtonBar in OAF

Uploaded by

Mustafa Taha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

Oracle Shooter
GO to my YouTube Channel "Oracle Shooter" and enjoy more videos

How to Create Train, NavigationBar and


PageButtonBar in OAF
April 19, 2019

How to Create Train, NavigationBar and PageButtonBar in OAF

--=======================================================
Train region:-
create AM
create VO1 : -EMP_VO
create VO2:- DEPT_VO

Attache VO's in AM

create page EMP


set controller
header region => table typ eregion based on EMP_VO ==>
create one more region - Train type (allow information = TRUE)
create Link:- (set destinatuon URL :- EMP_PAGE)
create Link:- (set destinatuon URL :- DEPT_PAGE)
create one more region :- Page button BAR

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 1/6


10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

create one more region :- Navigation_BAR ( set first step = 1 and last_step = 2)
create Link:- (set destinatuon URL :- EMP_PAGE , worm_about_changes = 'False')
create Link:- (set destinatuon URL :- DEPT_PAGE)

create page DEPT


set controller
header region => table typ eregion based on DEPT_VO ==>
create one more region - Train type (allow information = TRUE)
create Link:- (set destinatuon URL :- EMP_PAGE)
create Link:- (set destinatuon URL :- DEPT_PAGE)
create one more region :- Page button BAR
create one more region :- Navigation_BAR ( set first step = 1 and last_step = 2)
create Link:- (set destinatuon URL :- EMP_PAGE , worm_about_changes = 'False')
create Link:- (set destinatuon URL :- DEPT_PAGE)

--==============================================================

VO1:-

select EMPNO, ENAME, JOB, HIREDATE, DEPTNO from scott.emp

VO2:-

select * from scott.dept

VO3:-

select EMPNO, ENAME, (select Z.ENAME from scott.emp Z where A.MGR = Z.EMPNO) MGR_NAME, SAL from scott.emp
A

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 2/6


10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

CO1:-

public void processRequest(OAPageContext pageContext, OAWebBean webBean)


{
super.processRequest(pageContext, webBean);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject vo = (OAViewObject) am.findViewObject("FIRST_VO1");
vo.executeQuery();
}

CO2:-

public void processRequest(OAPageContext pageContext, OAWebBean webBean)


{
super.processRequest(pageContext, webBean);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject vo = (OAViewObject) am.findViewObject("SECOND_VO1");
vo.executeQuery();
}

CO3:-

public void processRequest(OAPageContext pageContext, OAWebBean webBean)


{
super.processRequest(pageContext, webBean);

OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject vo = (OAViewObject) am.findViewObject("THIRD_VO1");
vo.executeQuery();

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 3/6


10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

To leave a comment, click the button below to sign in with Google.

SIGN IN WITH GOOGLE

Popular posts from this blog

E-Text Report In Fusion | Types of E-Text reports


October 18, 2021

WHAT IS Oracle Fusion E-Text Report ? An eText template is an RTF-based template that is used to generate text output
for Electronic Funds Transfer (EFT) and Electronic Data Interchange (EDI). How it generate the output for User or Bank?
At runtime, BI Publisher applies this template to an input XML data file to create an output text file. that can be …

READ MORE

Supplier API's
August 24, 2019

API's for Create Supplier, Create Supplier Site, Create Supplier Site Contacts --
======================================================================= -------------Supplier API ------------- 1.

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 4/6


10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

First Write a CURSOR for Required Data 2 FND GLOBAL APPS INITIALIZE 3 Pass required Values in Proper way 4 API :-

READ MORE

How to pass default Parameter in cursor


June 21, 2020

--==================================================== --Parameterized Cursors /* Syntax of Parameterized


Cursor :- CURSOR cur _ name (parameter list may be one, two, or more or Default ) IS SELECT statement; OPEN cur _
name (Parameter value) */ EMPNO ENAME HIREDATE DOB GENDER SAL DEPTNO COMM 1000 Sachin 11-Sep-85 01-Mar-…

READ MORE

Powered by Blogger

Theme images by Galeries

ORACLE SHOOTER

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 5/6


10/14/24, 9:37 AM How to Create Train, NavigationBar and PageButtonBar in OAF

VISIT PROFILE

Archive

Labels

Report Abuse

https://oracleshooter.blogspot.com/2019/04/how -to-create-train-navigationbar-and.html 6/6

You might also like