DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_GROUPING_PVT dependencies on PO_TBL_VARCHAR5

Line 223: ) RETURN PO_TBL_VARCHAR5

219: -------------------------------------------------------------------------------
220: FUNCTION get_line_action_tbl(
221: p_po_line_number_tbl IN PO_TBL_NUMBER,
222: p_add_to_po_header_id IN NUMBER
223: ) RETURN PO_TBL_VARCHAR5
224: IS
225: d_mod CONSTANT VARCHAR2(100) := D_get_line_action_tbl;
226: d_position NUMBER := 0;
227:

Line 229: l_line_action_tbl PO_TBL_VARCHAR5;

225: d_mod CONSTANT VARCHAR2(100) := D_get_line_action_tbl;
226: d_position NUMBER := 0;
227:
228: l_num_lines NUMBER;
229: l_line_action_tbl PO_TBL_VARCHAR5;
230: BEGIN
231: IF (PO_LOG.d_proc) THEN
232: PO_LOG.proc_begin(d_mod);
233: PO_LOG.proc_begin(d_mod,'p_add_to_po_header_id',p_add_to_po_header_id);

Line 241: l_line_action_tbl := PO_TBL_VARCHAR5();

237: l_num_lines := p_po_line_number_tbl.COUNT;
238:
239: -- Initialize table indicating whether lines are being added to existing PO
240: -- lines.
241: l_line_action_tbl := PO_TBL_VARCHAR5();
242: l_line_action_tbl.EXTEND(l_num_lines);
243:
244: -- For each line in the doc builder, set the line action to 'ADD' if adding
245: -- to an existing PO line and 'NEW' if creating a new PO line.