DBA Data[Home] [Help]

APPS.BEN_BENACTIV_XMLP_PKG SQL Statements

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

Line: 14

  l_comp_object_selection_rule ff_formulas_f.formula_name%type ;
Line: 15

  l_person_selection_rule      ff_formulas_f.formula_name%type ;   l_life_event_reason          ben_ler_f.name%type ;   l_organization               hr_all_organization_units.name%type ;   l_postal_zip_range           varchar2(800);
Line: 37

     p_comp_object_selection_rule => L_COMP_OBJECT_SELECTION_RULE,
     p_person_selection_rule      => L_PERSON_SELECTION_RULE,
     p_life_event_reason          => L_LIFE_EVENT_REASON,
     p_organization               => L_ORGANIZATION,
     p_postal_zip_range           => L_POSTAL_ZIP_RANGE,
     p_reporting_group            => L_REPORTING_GROUP,
     p_plan_type                  => L_PLAN_TYPE,
     p_option                     => L_OPTION,
     p_eligibility_profile        => L_ELIGIBILITY_PROFILE,
     p_variable_rate_profile      => L_VARIABLE_RATE_PROFILE,
     p_legal_entity               => L_LEGAL_ENTITY,
     p_payroll                    => L_PAYROLL,
     p_status                     => L_STATUS);
Line: 63

  CP_COMP_OBJECT_SELECTION_RULE := l_comp_object_selection_rule;
Line: 64

  CP_PERSON_SELECTION_RULE      := l_person_selection_rule;
Line: 79

  select loc.location_code into CP_LOCATION
  from hr_locations loc,
  ben_benefit_actions bft
  where bft.request_id = P_CONCURRENT_REQUEST_ID
  and bft.location_id = loc.location_id;
Line: 91

  select bng.name into CP_PERSON_BNFT_GRP
  from ben_benfts_grp bng,
  ben_benefit_actions bft
  where bft.request_id = P_CONCURRENT_REQUEST_ID
  and bft.benfts_grp_id = bng.benfts_grp_id;
Line: 103

  select decode(audit_log_flag, 'Y', 'Yes', 'N', 'No')  into CP_AUDIT_FLAG
  from   ben_benefit_actions bft
  where bft.request_id = P_CONCURRENT_REQUEST_ID;
Line: 114

  select decode(lmt_prpnip_by_org_flag, 'Y', 'Yes', 'N', 'No')  into CP_LMT_BY_ORG_FLAG
  from   ben_benefit_actions bft
  where bft.request_id = P_CONCURRENT_REQUEST_ID;
Line: 192

  l_persons_selected           varchar2(30);
Line: 205

     p_persons_selected           => L_PERSONS_SELECTED,
     p_persons_processed          => L_PERSONS_PROCESSED,
     p_persons_unprocessed        => L_PERSONS_UNPROCESSED,
     p_persons_processed_succ     => L_PERSONS_PROCESSED_SUCC,
     p_persons_errored            => L_PERSONS_ERRORED);
Line: 215

  CP_PERSONS_SELECTED           := l_persons_selected;
Line: 260

  SELECT fcp.concurrent_program_name
    FROM ben_benefit_actions bft, fnd_concurrent_programs fcp
   WHERE bft.program_id = fcp.concurrent_program_id
     AND bft.request_id = cv_request_id;
Line: 276

       run_mode := 'SELECTION';
Line: 337

 Function CP_COMP_OBJECT_SELECTION_RULE1 return varchar2 is
	Begin
	 return CP_COMP_OBJECT_SELECTION_RULE;
Line: 341

 Function CP_PERSON_SELECTION_RULE_p return varchar2 is
	Begin
	 return CP_PERSON_SELECTION_RULE;
Line: 401

 Function CP_PERSONS_SELECTED_p return number is
	Begin
	 return CP_PERSONS_SELECTED;