DBA Data[Home] [Help]

APPS.PO_DOCUMENT_UTIL_PVT dependencies on PO_SESSION_GT

Line 36: DELETE FROM PO_SESSION_GT

32: PO_LOG.proc_begin(d_mod);
33: END IF;
34:
35: -- Remove any values for this gt key
36: DELETE FROM PO_SESSION_GT
37: WHERE key = p_key;
38:
39: -- Bulk insert new values
40: FORALL i IN 1 .. p_index_num1_vals.COUNT

Line 41: INSERT INTO PO_SESSION_GT

37: WHERE key = p_key;
38:
39: -- Bulk insert new values
40: FORALL i IN 1 .. p_index_num1_vals.COUNT
41: INSERT INTO PO_SESSION_GT
42: ( key
43: , index_num1
44: , index_num2
45: )

Line 69: DESCRIPTION: Inserts the values into PO_SESSION_GT at

65:
66: /*==================================================================
67: FUNCTION NAME: initialize_gt_table
68:
69: DESCRIPTION: Inserts the values into PO_SESSION_GT at
70: a new key, returning the key.
71:
72: PARAMETERS: p_index_num1_vals - the values to be inserted into
73: the GT Table's index_num1 column.