DBA Data[Home] [Help]

APPS.OKL_QUICK_QUOTES_PVT dependencies on STANDARD

Line 473: -- For Standard Rate Template, nullify LRF

469: -- schodava Bug # 4923350
470: -- Nulling out Rate Template/Card depending on the
471: -- structured pricing value
472: IF (lp_qqhv_rec_type.structured_pricing = 'Y') THEN
473: -- For Standard Rate Template, nullify LRF
474: IF lp_qqhv_rec_type.rate_template_id IS NOT NULL THEN
475: lp_qqhv_rec_type.lease_rate_factor := fnd_api.g_miss_num;
476: END IF;
477: lp_qqhv_rec_type.rate_template_id := fnd_api.g_miss_num;

Line 481: -- For Standard Rate Template, nullify Rate Card Id and vice versa

477: lp_qqhv_rec_type.rate_template_id := fnd_api.g_miss_num;
478: lp_qqhv_rec_type.rate_card_id := fnd_api.g_miss_num;
479: ELSIF (lp_qqhv_rec_type.structured_pricing = 'N') THEN
480: lp_qqhv_rec_type.lease_rate_factor := fnd_api.g_miss_num;
481: -- For Standard Rate Template, nullify Rate Card Id and vice versa
482: IF lp_qqhv_rec_type.rate_template_id IS NOT NULL THEN
483: lp_qqhv_rec_type.rate_card_id := fnd_api.g_miss_num;
484: ELSE
485: lp_qqhv_rec_type.rate_template_id := fnd_api.g_miss_num;

Line 1579: -- standard rate template

1575: END IF;
1576:
1577: -- create cash flows for the rent stream
1578: IF (l_qqhv_rec_type.rate_template_id is not null) THEN
1579: -- standard rate template
1580:
1581: -- populate cash flow header record
1582: l_cfh_rec_type.type_code :='INFLOW';
1583: l_cfh_rec_type.stream_type_id := null;

Line 1902: --when Standard Rate Template is picked

1898: END IF;
1899: END LOOP;
1900:
1901: --viselvar fixed Bug 5045505
1902: --when Standard Rate Template is picked
1903: IF (l_qqhv_rec_type.rate_template_id is not null) THEN
1904:
1905: l_cfl_tbl_type(1).rate:=pricing_results_table(1).cash_flow_level_tbl(1).rate;
1906: x_rent_payments_tbl(1).rate:=l_cfl_tbl_type(1).rate;