DBA Data[Home] [Help]

APPS.PO_DOCUMENT_UTIL_PVT dependencies on PO_SESSION_GT

Line 40: DELETE FROM PO_SESSION_GT

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

Line 45: INSERT INTO PO_SESSION_GT

41: WHERE key = p_key;
42:
43: -- Bulk insert new values
44: FORALL i IN 1 .. p_index_num1_vals.COUNT
45: INSERT INTO PO_SESSION_GT
46: ( key
47: , index_num1
48: , index_num2
49: )

Line 73: DESCRIPTION: Inserts the values into PO_SESSION_GT at

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