DBA Data[Home] [Help]

APPS.PA_PAXPCIFS_XMLP_PKG SQL Statements

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

Line: 52

select meaning into enter_param from pa_lookups where
lookup_type = 'ENTER VALUE' and
lookup_code = 'ENTER_ORG_MGR';
Line: 58

    select Substr(name, 1, 60) into org_name from hr_organization_units where          organization_id = p_start_organization_id;
Line: 63

   select full_name into member_name from per_people_f where
    person_id = project_member
    and   sysdate between effective_start_date
	 and     nvl(effective_end_date,sysdate + 1)
and (Current_NPW_Flag='Y' OR Current_Employee_Flag='Y')
    and Decode(Current_NPW_Flag,'Y',NPW_Number,employee_number) IS NOT NULL ;
Line: 73

   select meaning into role_type
   from pa_project_role_types where
   project_role_type = PA_PAXPCIFS_XMLP_PKG.project_role_type;
Line: 93

     select meaning into ndf from pa_lookups where
     lookup_code= 'NO_DATA_FOUND'
     and lookup_type = 'MESSAGE';
Line: 100

     select meaning into ndf from pa_lookups where
     lookup_code= 'NO_DATA_FOUND'
     and lookup_type = 'MESSAGE';
Line: 116

  SELECT  gl.name, gl.currency_code
  INTO    l_name, l_currency
  FROM    gl_sets_of_books gl,pa_implementations pi
  WHERE   gl.set_of_books_id = pi.set_of_books_id;
Line: 136

select
 decode(p_start_organization_id,null,       start_organization_id,p_start_organization_id)
 into
     c_start_organization_id
 from
  pa_implementations;
Line: 142

insert
into
pa_org_reporting_sessions
(start_organization_id,session_id)
values
(c_start_organization_id,userenv('SESSIONID'));