DBA Data[Home] [Help]

APPS.AST_OFL_EVENT_ATTENDEES_PARAM SQL Statements

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

Line: 24

    SELECT fnd_date.date_to_chardate(SYSDATE)
      INTO v_date_time
      FROM DUAL;
Line: 42

    htp.tableData('' || htf.bold('Please specify the criteria and select OK.  ') || '', cAlign => 'center', cRowSpan => '2', cColSpan => '110', cAttributes => ' width=346');
Line: 57

      SELECT code, name
      FROM as_promotions_all
      WHERE type = 'E'
      ORDER BY 1;
Line: 100

      htp.p('    var s_day = objform.p_sd_date.selectedIndex;');
Line: 101

      htp.p('    var s_month = objform.p_sm_date.selectedIndex;');
Line: 102

      htp.p('    var s_year = objform.p_sy_date.selectedIndex;');
Line: 103

      htp.p('    var e_day = objform.p_ed_date.selectedIndex;');
Line: 104

      htp.p('    var e_month = objform.p_em_date.selectedIndex;');
Line: 105

      htp.p('    var e_year = objform.p_ey_date.selectedIndex;');
Line: 178

	 htp.p('');
Line: 191

        htp.formSelectOption(day_data(i), cAttributes => ' value= ' || day_data(i), cSelected => 'TRUE');
Line: 193

      htp.FormSelectClose;
Line: 196

	 htp.p('');
Line: 214

        htp.formSelectOption(year_data(i), cAttributes => ' value= ' || year_data(i));
Line: 216

      htp.formSelectClose;
Line: 222

      htp.p('');
Line: 233

          htp.formSelectOption(LPAD(TO_CHAR(i), 2, '0'), cAttributes => ' value=' || LPAD(TO_CHAR(i), 2, '0'), cSelected => 'TRUE');
Line: 235

          htp.formSelectOption(LPAD(TO_CHAR(i), 2, '0'), cAttributes => ' value=' || LPAD(TO_CHAR(i), 2, '0'));
Line: 238

      htp.formSelectClose;
Line: 241

	 htp.p('');
Line: 260

        htp.formSelectOption(year_data(i), cAttributes => ' value= ' || year_data(i), cSelected => 'TRUE');
Line: 262

      htp.formSelectClose;
Line: 315

            p_selected_event_code IN VARCHAR2 DEFAULT NULL)
  IS
    CURSOR cur_promotion_code(p_e_c varchar2)
    IS
-- RN 25/9/00
	SELECT event_offer_id code, event_offer_name name
	FROM ams_event_offers_vl
	WHERE event_offer_id LIKE p_e_c
	OR UPPER(event_offer_name) LIKE p_e_c
--      SELECT code, name
--      FROM as_promotions_all
--      WHERE type = 'E'
--      AND (UPPER(CODE) LIKE NVL(UPPER(p_event_code), '%') || '%'
--      OR UPPER(name) LIKE NVL(UPPER(p_event_code), '%') || '%')
	ORDER BY 1;
Line: 383

            p_selected_event_code IN VARCHAR2 DEFAULT NULL)
  IS
    CURSOR cur_promotion_code(p_e_c varchar2)
    IS
-- RN 25/9/00
	SELECT event_offer_id code, event_offer_name name
	FROM ams_event_offers_vl
	WHERE event_offer_id LIKE p_e_c
	OR UPPER(event_offer_name) LIKE p_e_c
--      SELECT code, name
--      FROM as_promotions_all
--      WHERE type = 'E'
--      AND (UPPER(code) LIKE NVL(UPPER(p_event_code), '%') || '%'
--      OR UPPER(name) LIKE NVL(UPPER(p_event_code), '%') || '%')
	ORDER BY 1;