DBA Data[Home] [Help]

APPS.PER_IMAGES_PKG SQL Statements

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

Line: 11

select 'Y'
from   per_images
where  table_name = p_table_name
and    parent_id = p_parent_id;
Line: 35

    select per_images_s.nextval
    from sys.dual;
Line: 42

procedure insert_row (p_image_id IN OUT NUMBER
                     ,p_table_name VARCHAR2
                     ,p_parent_id NUMBER) is
--
-- Run Procedures required at insert.
--
begin
   per_images_pkg.check_unique(p_table_name =>p_table_name
                              ,p_parent_id =>p_parent_id);
Line: 52

end insert_row;