DBA Data[Home] [Help]

APPS.QP_FORMULA_PRICE_CALC_PVT dependencies on QP_INT_LINE_ATTRS_T

Line 35: FROM qp_int_line_attrs_t lattr

31: IS
32: CURSOR req_line_attrs_cur(a_line_index NUMBER)
33: IS
34: SELECT line_index, attribute_type, context, attribute, value_from value
35: FROM qp_int_line_attrs_t lattr
36: WHERE request_id = p_request_id
37: AND line_index = p_line_index
38: AND attribute_type IN ('PRICING','PRODUCT')
39: AND pricing_status_code = QP_PREQ_GRP.G_STATUS_UNCHANGED;

Line 45: FROM qp_int_line_attrs_t lattr

41: -- qual cursor
42: CURSOR req_line_attrs_qual_cur(a_line_index NUMBER)
43: IS
44: SELECT line_index, attribute_type, context, attribute, value_from value
45: FROM qp_int_line_attrs_t lattr
46: WHERE request_id = p_request_id
47: AND line_index = p_line_index
48: AND attribute_type IN ('PRICING','PRODUCT','QUALIFIER')
49: AND pricing_status_code = QP_PREQ_GRP.G_STATUS_UNCHANGED;