DBA Data[Home] [Help]

APPS.PO_SOURCING_PVT dependencies on PO_HEADERS_INTERFACE

Line 42: -- The id that will be used to uniquely identify a row in the PO_HEADERS_INTERFACE table

38: -- Creates Contract Purchase Agreement from Sourcing document
39: --Parameters:
40: --IN:
41: --p_interface_header_id
42: -- The id that will be used to uniquely identify a row in the PO_HEADERS_INTERFACE table
43: --p_auction_header_id
44: -- Id of the negotiation
45: --p_bid_number
46: -- Bid Number for which is negotiation is awarded

Line 74: p_interface_header_id IN PO_HEADERS_INTERFACE.interface_header_id%TYPE,

70: PROCEDURE create_cpa (
71: x_return_status OUT NOCOPY VARCHAR2,
72: x_msg_count OUT NOCOPY NUMBER,
73: x_msg_data OUT NOCOPY VARCHAR2,
74: p_interface_header_id IN PO_HEADERS_INTERFACE.interface_header_id%TYPE,
75: p_auction_header_id IN PON_AUCTION_HEADERS_ALL.auction_header_id%TYPE,
76: p_bid_number IN PON_BID_HEADERS.bid_number%TYPE,
77: p_sourcing_k_doc_type IN VARCHAR2,
78: p_conterms_exist_flag IN PO_HEADERS_ALL.conterms_exist_flag%TYPE,

Line 90: -- po_headers_interface

86: --Name: DELETE_INTERFACE_HEADER
87: --Pre-reqs:
88: -- None
89: --Modifies:
90: -- po_headers_interface
91: --Locks:
92: -- None.
93: --Function:
94: -- This deletes the interface header row from interface table

Line 98: -- The id that will be used to uniquely identify a row in the PO_HEADERS_INTERFACE table

94: -- This deletes the interface header row from interface table
95: --Parameters:
96: --IN:
97: --p_interface_header_id
98: -- The id that will be used to uniquely identify a row in the PO_HEADERS_INTERFACE table
99: --OUT:
100: --x_return_status
101: -- The standard OUT parameter giving return status of the API call.
102: -- FND_API.G_RET_STS_UNEXP_ERROR - for unexpected error

Line 112: p_interface_header_id IN PO_HEADERS_INTERFACE.INTERFACE_HEADER_ID%TYPE,

108: --End of Comments
109: -------------------------------------------------------------------------------
110:
111: PROCEDURE DELETE_INTERFACE_HEADER (
112: p_interface_header_id IN PO_HEADERS_INTERFACE.INTERFACE_HEADER_ID%TYPE,
113: x_return_status OUT NOCOPY VARCHAR2
114: );
115:
116: END PO_SOURCING_PVT;