Question: What is the result of following query 'select * from po_headers'?
Answer: It will not return any row because it is just a view. Usually the difference between tables and views are tables are suffixed with 'ALL' like po_headers_all. If you wanna select from the view then you need to setup the Org_id and then you can get the data
You have to set the org_id to retrive data from this view..
begin fnd_client_info.set_org_context('XX'); end;
where 'XX' is the relevant ORGANIZATION_ID for which you want to retrive data from hr_operating_units
Question:
What is the result of following query 'select * from po_headers'?
Answer:
It will not return any row because it is just a view. Usually the difference between tables and views are tables are suffixed with 'ALL' like po_headers_all. If you wanna select from the view then you need to setup the Org_id and then you can get the data
You have to set the org_id to retrive data from this view..
begin fnd_client_info.set_org_context('XX'); end;
where 'XX' is the relevant ORGANIZATION_ID for which you want to retrive data from hr_operating_units Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
There should not be any Spelling Mistakes.
There should not be any Gramatical Errors.
Answers must not contain any bad words.
Answers should not be the repeat of same answer, already approved.
Answer should be complete in itself.
Related Questions
View Answer
What is the difference between 11.5.7 and 11.5.10 versions of oracle applications