What is the result of following query 'select * from po_headers'?

Showing Answers 1 - 3 of 3 Answers

Anoo

  • Nov 29th, 2005
 

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. 

Hope this would help

  Was this answer useful?  Yes

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

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions