DBA Data[Home] [Help]

APPS.GMI_ITEM_LOT_CONV_PVT SQL Statements

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

Line: 51

FUNCTION Insert_Ic_Item_Cnv
(  p_ic_item_cnv_rec  IN ic_item_cnv%ROWTYPE)
RETURN BOOLEAN
IS

BEGIN

  INSERT INTO ic_item_cnv
  ( item_id
  , lot_id
  , um_type
  , type_factor
  , creation_date
  , last_update_date
  , created_by
  , last_updated_by
  , trans_cnt
  , delete_mark
  , text_code
  , type_factorrev
  , last_update_login
  )
  VALUES
  ( p_ic_item_cnv_rec.item_id
  , p_ic_item_cnv_rec.lot_id
  , p_ic_item_cnv_rec.um_type
  , p_ic_item_cnv_rec.type_factor
  , p_ic_item_cnv_rec.creation_date
  , p_ic_item_cnv_rec.last_update_date
  , p_ic_item_cnv_rec.created_by
  , p_ic_item_cnv_rec.last_updated_by
  , p_ic_item_cnv_rec.trans_cnt
  , p_ic_item_cnv_rec.delete_mark
  , p_ic_item_cnv_rec.text_code
  , p_ic_item_cnv_rec.type_factorrev
  , p_ic_item_cnv_rec.last_update_login
  );
Line: 98

                           , 'Insert_Ic_Item_Cnv'
                          );
Line: 103

END Insert_Ic_Item_Cnv;