DBA Data[Home] [Help]

APPS.OE_ACCEPTANCE_PVT dependencies on OE_ORDER_PUB

Line 13: Procedure Process_Acceptance(p_request_tbl IN OUT NOCOPY OE_ORDER_PUB.request_tbl_type

9: TYPE FLAG_TYPE IS TABLE OF VARCHAR2(1) INDEX BY BINARY_INTEGER;
10: TYPE DATE_TYPE IS TABLE OF DATE INDEX BY BINARY_INTEGER;
11:
12: --This procedure is called by Process_Order_Actions for processing actions 'ACCEPT_FULFILLMENT' and 'REJECT FULFILLMENT'.
13: Procedure Process_Acceptance(p_request_tbl IN OUT NOCOPY OE_ORDER_PUB.request_tbl_type
14: ,p_index IN NUMBER DEFAULT 1
15: ,x_return_status OUT NOCOPY Varchar2);
16:
17: --This procedure builds the line table for all eligible lines when the entity passed in request_rec is 'HEADER'

Line 18: Procedure Build_Header_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type

14: ,p_index IN NUMBER DEFAULT 1
15: ,x_return_status OUT NOCOPY Varchar2);
16:
17: --This procedure builds the line table for all eligible lines when the entity passed in request_rec is 'HEADER'
18: Procedure Build_Header_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type
19: ,x_return_status OUT NOCOPY Varchar2);
20:
21: --This procedure will check if the given line is eligible for acceptance and then adds that line to line_tbl
22: Procedure Build_Line_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type

Line 22: Procedure Build_Line_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type

18: Procedure Build_Header_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type
19: ,x_return_status OUT NOCOPY Varchar2);
20:
21: --This procedure will check if the given line is eligible for acceptance and then adds that line to line_tbl
22: Procedure Build_Line_Acceptance_table(p_request_rec IN OUT NOCOPY OE_ORDER_PUB.request_rec_type
23: ,p_line_id IN NUMBER DEFAULT NULL
24: ,x_return_status OUT NOCOPY Varchar2);
25:
26: --This procedure progress the workflow for each of the lines that were processed for acceptance or rejection.