Sunteți pe pagina 1din 3

Table Name Description : 1.OE_ORDER_HEADERS_ALL -->stores header information for orders in Order Manageme nt. 2.

OE_ORDER_LINES_ALL -->stores information for all order lines in Oracle Order M anagement. 3.OE_ORDER_SOURCES -->Feeder System Names that create orders in Order Management tables. 4.OE_ORDER_HOLDS_ALL -->This table stores information of all the orders and line s that are on hold and the link to hold sources and hold releases. 5.OE_SALES_CREDITS -->This table stores information about sales credits. 6.OE_TRANSACTION_TYPES_ALL -->This table stores information about the order and line transaction types 7.WSH_DELIVERY_ASSIGNMENTS -->This table stores information about Delivery Assig nments 8.WSH_DELIVERY_DETAILS -->This table stores information about Delivery Details 9.WSH_NEW_DELIVERIES -->This table stores information about the status of the de livery 10.WSH_TRIPS -->This table stores Trips information 11.WSH_TRIP_STOPS --> This table stores stop and Trips information 12.HZ_CUST_ACCOUNTS -->Stores information about customer accounts. 13.HZ_CUSTOMER_PROFILES -->Credit information for customer accounts and customer account sites 14.HZ_CUST_ACCT_SITES_ALL -->Stores all customer account sites across all operat ing units 15.HZ_CUST_SITE_USES_ALL -->Stores business purposes assigned to customer accoun t sites. 16.HZ_LOCATIONS -->Stores Physical addresses 17.HZ_PARTIES -->Information about parties such as organizations, people, or gro ups 18.HZ_PARTY_SITES -->Links party to physical locations 19.HZ_PARTY_SITE_USES -->The way that a party uses a particular site or address 20.FND_APPLICATION -->Applications registered with Oracle Application Object Lib rary 21.FND_CONCURRENT_PROGRAMS -->Concurrent programs 22.FND_LOOKUP_TYPES -->Oracle Application Object Library QuickCodes 23.FND_LOOKUP_VALUES -->QuickCode values

24.MTL_TRANSACTION_ACCOUNTS -->Material transaction distributions 25.MTL_TRANSACTION_TYPES -->Inventory Transaction Types Table 26.WSH_DELIVERY_LEGS -->the table link between the WSH_TRIP_STOPS (using STOP_ID ) and WSH_DELIVERIES (using delivery_id) 27.MTL_MATERIAL_TRANSACTIONS_TEMP -->Staging for Pick Confirm 28.HR_OPERATING_UNITS -->view which contains the information about all the opera ting units in a particular instance. 29.ORG_ORGANIZATION_DEFINITIONS -->

------------------****--------------------------------Queries on OM tables-1.SELECT ood.organization_code Warehouse_code, ood.organization_name Warehouse, ood.operating_unit OU_ID, hou.name OU_Name, hle.name Legal_entity, hle.set_of_books_id, gsob.name SOB FROM org_organization_definitions ood, hr_operating_units hou, hr_legal_entities hle, gl_sets_of_books gsob WHERE ood.operating_unit = hou.organization_id AND hou.legal_entity_id = hle.organization_id AND gsob.set_of_books_id = hle.set_of_books_id 2.Link between Hz_locations and hz_cust_site_uses_all SELECT hzl.location_id FROM hz_cust_site_uses_all hcsu , hz_cust_acct_sites hcas , hz_party_sites hps , hz_locations hzl WHERE hcsu.cust_acct_site_id = hcas.cust_acct_site_id AND hcas.party_site_id = hps.party_site_id AND hps.location_id = hzl.location_id 3.To get operating units informationselect * from hr_operating_units where organization_id=oe_order_headers_all.org_id 4.To get order type informationselect * from apps.oe_transaction_types_tl where transaction_type_id=oe_order_headers_all.order_type_id

5.To find customer information to whom items are soldselect * from hz_cust_accounts hca where cust_account_id=oe_order_headers_all.sold_to_org_id 6.To get party informationselect * from apps.hz_parties where party_id=hz_cust_accounts.party_id 7.To get 'ship to location' informationselect * from apps.hz_parties where party_id=hz_cust_accounts.party_id 8.To get shipping detailsselect * from org_organization_definitions where organization_id = wsh_new_deliveries.organization_id 9.To get Number of line processed in Order Management SELECT COUNT (line_id) Order Line Processed FROM oe_order_lines_all WHERE creation_date BETWEEN TO_DATE (:Fdate, DD/MM/YYYY) AND TO_DATE (:tdate, DD/MM/YYYY) AND flow_status_code = CLOSED; 10.To find delivery leg and pick up stop info SELECT * FROM wsh_trips wt,wsh_trip_stops wts,wsh_delivery_legs wdl WHERE wdl.delivery_id ='....' AND wts.stop_id = wdl.pick_up_stop_id AND wts.trip_id = wt.trip_id 11.

S-ar putea să vă placă și