DBA Data[Home] [Help]

APPS.ICX_DEFINE_PAGES SQL Statements

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

Line: 52

    l_message       varchar2(240) := 'Please select a Page';
Line: 67

   select ip.page_id, ipt.page_name, ip.page_type
     from icx_pages ip,
	  icx_pages_tl ipt
    where ip.user_id = l_user_id
      and ipt.language = userenv('LANG')
      and ip.page_id = ipt.page_id
      and ip.page_type in ('USER', 'SEED')
   order by PAGE_TYPE DESC, SEQUENCE_NUMBER;
Line: 88

      select MAX(page_name)
        into l_page_name
        from icx_pages_tl
       where page_id = p_page_id
         and language = userenv('LANG');
Line: 96

    if (p_mode = 'DELETE') then

       l_title := wf_core.translate('ICX_CONFIRMTITLE');
Line: 128

    htp.p('function selectTo() {
        alert("'||l_message||'");
Line: 147

    htp.p ('function applyDelete(url){

          top.opener.parent.location = url;
Line: 171

    elsif (p_mode = 'DELETE') then

       l_function_syntax := 'javascript:applyDelete('''||'icx_define_pages.savepage?p_mode=DELETE&p_page_id='||p_page_id||''')';
Line: 237

      htp.p('');
Line: 708

        htp.formSelectOption(cvalue => rec.page_name,
                             cattributes => 'VALUE="'||to_char(rec.page_id)||'"');
Line: 715

    htp.formSelectClose;
Line: 759

    htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
Line: 817

   l_actions(6).name := 'DeletePage';
Line: 818

   l_actions(6).text := wf_core.translate('DELETE');
Line: 820

   l_actions(6).action := 'top.main.Delete()';  -- put your own commands here