DBA Data[Home] [Help]

APPS.WMS_RE_COMMON_PVT SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 68

   g_inp_tbl.DELETE;
Line: 223

PROCEDURE UpdateInputLine (
  p_transaction_quantity IN NUMBER
 ,p_secondary_quantity IN NUMBER  DEFAULT NULL
) IS
BEGIN
   g_inp_tbl(g_inp_pointer).transaction_quantity := p_transaction_quantity;
Line: 230

END UpdateInputLine;
Line: 236

PROCEDURE DeleteInputLine IS
BEGIN
   -- delete first record
   IF g_inp_pointer = g_inp_first THEN
      g_inp_first := g_inp_next;
Line: 246

END DeleteInputLine;
Line: 254

   g_rule_tbl.delete;