WHAT IS THE VIEW IN ORACLE APPS?HOW IS IT CREATED?
Answers were Sorted based on User's Feedback
Answer / kumar
In apps you will find n number of views
During the creation of view based on the Base table in the
where clause ,below condition will be mentioned.
So that it will take the value of profile MO:Operating Unit
and display the values of corresponding Org_id.
WHERE NVL (org_id,
NVL (TO_NUMBER (DECODE (SUBSTRB (USERENV
('CLIENT_INFO'),
1,
1
),
' ', NULL,
SUBSTRB (USERENV
('CLIENT_INFO'),
1,
10
)
)),
-99)) =
NVL (TO_NUMBER (DECODE (SUBSTRB (USERENV
('CLIENT_INFO'),
1,
1
),
' ', NULL,
SUBSTRB (USERENV
('CLIENT_INFO'),
1,
10
)
)),
-99);
if you simply select from the view without setting the apps
environment , no output will be displayed.
To set the apps environment,
The following block of code has to be executed.
BEGIN
DBMS_APPLICTION_INFO.SET_CLIENT_INFO('ORG_ID');
END;
OR
BEGIN
FND_CLIENT_INFO.SET_ORG_CONTEXT('ORG_ID');
END;
THE VALUES OF ORG_ID DEPENDS ON YOUR REQUIREMENTS.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / roshan
view is a virtual object,After creating a table in a schema
and then creating view then grant to apps.we use views as
to display data in reports.
hope the answer.
roshan
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / viswa
view is one of the object, it is like as a table ,it will
created based on table,it has no data,using this we can
retrieve particular organization information
syntax
create view<view name> as select *from <table name> where
org_id=userenv('client_info')
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / sreekanth reddy.b
View is a database object, views are created for security purpose and reduce complexity. A View is based on more than one table.
| Is This Answer Correct ? | 1 Yes | 0 No |
IN GL,AP,PO,AR WHICH MODULE DOESNOT HAVE _ALL TABLES THEN WHY?
hi gurus my name is ramesh i was completed orcale apps technical trainning i wnt to put 3+yrs experience is it correct r not ,if any freshers jobs are available in market pls suggest me. my mail id rameshmcaou@gmail.com and contact no is 9000342411
how do you describe O2C along with tables
What are do's and dont's of Interface?
what is the difference between multiorg views and multiorg tables
2 Answers Immense Source, Intelligroup, TCS,
can we execute one concurrent program through another concurrent program?
why r u move in the cus_top only why not move another top
what are version control tools used in oracle apps?
Which oracle apps version you are very confident in?
explain o2c cycle? what are the table reflected for this process?
Difference between Bind and Lexical parameters?
How will you get the concurrent program output as email?