views:

566

answers:

2

What are the mandatory fields in the following tables that I need to populate in order that they can pass validation and can be imported in the respective base tables

  • PO_HEADERS_ALL (Purchasing documents open interface)
  • PO_LINES_ALL (Purchasing documents open interface)
  • PO_LINE_LOCATIONS_ALL (Purchasing documents open interface)
  • PO_DISTRIBUTIONS_ALL (Purchasing documents open interface)
A: 

You're using Oracle Apps right? Well, that's a complicated schema. But you should be able to DESCribe the table in SQL*Plus or whatever IDE you're using. In which case, the minmim set of columns you have to populate are the ones which are declared NOT NULL.

APC
It would be a pretty bad idea to write directly to an APPS schema just using describe to gather information. This could lead to inconsistent/incoherent data.
Vincent Malgrat
+1  A: 

Hi Bhavya3p,

These tables ARE the base tables. You should not normaly write directly to them.

The open interfaces of the Purchasing module (for EBS 11.5.10) are described in Metalink note 359295.1. Review the documentation carefully before using the interfaces. Don't write directly to the base tables -- this could void your support.

Vincent Malgrat