DBA Data[Home] [Help]

APPS.QPR_DEAL_PVT dependencies on DBMS_AW

Line 424: DBMS_AW.EXECUTE('AW ATTACH '||awName||' RO;');

420: WHERE price_plan_id = p_price_plan_id
421: and rownum < 2;
422:
423: -- ATTACH AW
424: DBMS_AW.EXECUTE('AW ATTACH '||awName||' RO;');
425:
426: log_debug('aw attached....');
427:
428: DBMS_AW.EXECUTE('oknullstatus = yes;commas = no;limitstrict =no;');

Line 428: DBMS_AW.EXECUTE('oknullstatus = yes;commas = no;limitstrict =no;');

424: DBMS_AW.EXECUTE('AW ATTACH '||awName||' RO;');
425:
426: log_debug('aw attached....');
427:
428: DBMS_AW.EXECUTE('oknullstatus = yes;commas = no;limitstrict =no;');
429:
430: <>
431: for i in p_t_line_det.first..p_t_line_det.last loop
432: -- GET LINE ID

Line 453: dbms_aw.execute(limitString);

449: if l_curr_conv > 0 then
450: -- limitString := 'ALLSTAT ; LIMIT '||s_time||' to last 1;';
451: limitString := 'ALLSTAT ; LIMIT '||s_time||' to ancestors; LIMIT ' || s_time || ' remove descendants;';
452:
453: dbms_aw.execute(limitString);
454:
455: dbms_aw.run('show '||l_tot_cost_meas||'('||s_product ||' '''
456: ||p_t_line_det(i).product_dim_sk||''')',l_cost);
457: dbms_aw.run('show '||l_ord_qty_meas||'('||s_product ||' '''

Line 455: dbms_aw.run('show '||l_tot_cost_meas||'('||s_product ||' '''

451: limitString := 'ALLSTAT ; LIMIT '||s_time||' to ancestors; LIMIT ' || s_time || ' remove descendants;';
452:
453: dbms_aw.execute(limitString);
454:
455: dbms_aw.run('show '||l_tot_cost_meas||'('||s_product ||' '''
456: ||p_t_line_det(i).product_dim_sk||''')',l_cost);
457: dbms_aw.run('show '||l_ord_qty_meas||'('||s_product ||' '''
458: ||p_t_line_det(i).product_dim_sk||''')',l_ord_qty);
459:

Line 457: dbms_aw.run('show '||l_ord_qty_meas||'('||s_product ||' '''

453: dbms_aw.execute(limitString);
454:
455: dbms_aw.run('show '||l_tot_cost_meas||'('||s_product ||' '''
456: ||p_t_line_det(i).product_dim_sk||''')',l_cost);
457: dbms_aw.run('show '||l_ord_qty_meas||'('||s_product ||' '''
458: ||p_t_line_det(i).product_dim_sk||''')',l_ord_qty);
459:
460: l_cost := substr(l_cost,0,length(l_cost) -1);
461: l_ord_qty := substr(l_ord_qty,0,length(l_ord_qty) -1);

Line 510: dbms_aw.execute(limitString);

506: s_offinv_value := '0';
507: offinv_val_eq := 0;
508:
509: if(s_offinv_type is not null) then
510: dbms_aw.execute(limitString);
511:
512: -- offinv dimension limit is set in retoffinv dml prgm
513:
514: limitString1 := 'show retoffinv('''||p_price_plan_id||''', '''

Line 516: DBMS_AW.RUN(limitString1,s_offinv_value);

512: -- offinv dimension limit is set in retoffinv dml prgm
513:
514: limitString1 := 'show retoffinv('''||p_price_plan_id||''', '''
515: ||s_offinv_type||''')';
516: DBMS_AW.RUN(limitString1,s_offinv_value);
517:
518: s_offinv_value := substr(s_offinv_value,0,length(s_offinv_value) -1);
519: offinv_val_eq := -0.01 *
520: fnd_number.canonical_to_number(s_offinv_value) *

Line 541: DBMS_AW.EXECUTE('aw detach '||awName||';');

537:
538: end loop lines;
539:
540: -- DETACH AW
541: DBMS_AW.EXECUTE('aw detach '||awName||';');
542: log_debug('AW detached');
543: exception
544: when OTHERS then
545: retcode := 2;