DBA Data[Home] [Help]

APPS.QP_ATTR_MAPPING_PUB dependencies on QP_CUSTOM_SOURCE

Line 2275: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');

2271:
2272: v_count NUMBER := 0;
2273: l_count NUMBER := 0;
2274:
2275: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');
2276:
2277: l_req_type_code VARCHAR2(30);
2278: l_pricing_type_code VARCHAR2(1);
2279: l_qual_contexts_result_tbl Qp_Attr_Mapping_Pub.CONTEXTS_RESULT_TBL_TYPE;

Line 2324: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and Build_Contexts program calls this procedure to pickup custom sourced attributes if the profile option 'QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE

2320:
2321:
2322: /*
2323: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source the attributes.
2324: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and Build_Contexts program calls this procedure to pickup custom sourced attributes if the profile option 'QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2325: */
2326:
2327:
2328: IF NVL(l_custom_sourced,'N') = 'Y' THEN

Line 2330: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');

2326:
2327:
2328: IF NVL(l_custom_sourced,'N') = 'Y' THEN
2329: Begin
2330: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2331: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2332: p_pricing_type_code => p_pricing_type,
2333: x_qual_ctxts_result_tbl => l_qual_contexts_result_tbl,
2334: x_price_ctxts_result_tbl => l_price_contexts_result_tbl);

Line 2331: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,

2327:
2328: IF NVL(l_custom_sourced,'N') = 'Y' THEN
2329: Begin
2330: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2331: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2332: p_pricing_type_code => p_pricing_type,
2333: x_qual_ctxts_result_tbl => l_qual_contexts_result_tbl,
2334: x_price_ctxts_result_tbl => l_price_contexts_result_tbl);
2335: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');

Line 2541: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');

2537:
2538: l_pricing_type_code VARCHAR2(1) := Fnd_Api.G_MISS_CHAR;
2539: K PLS_INTEGER;
2540:
2541: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');
2542:
2543: l_sourcing_start_time NUMBER;
2544: l_sourcing_end_time NUMBER;
2545: l_time_difference NUMBER;

Line 2636: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and

2632:
2633: /*
2634: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2635: the attributes.
2636: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2637: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2638: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2639: */
2640:

Line 2638: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE

2634: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2635: the attributes.
2636: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2637: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2638: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2639: */
2640:
2641: IF l_debug = Fnd_Api.G_TRUE THEN
2642: Qp_Preq_Grp.ENGINE_DEBUG('Number of qual attrs got from Get_Attribute_Values - ' || l_qual_contexts_result_tbl.COUNT );

Line 2651: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');

2647: IF l_debug = Fnd_Api.G_TRUE THEN
2648: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2649: END IF;
2650: Begin
2651: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2652: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2653: p_pricing_type_code => p_pricing_type_code,
2654: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2655: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);

Line 2652: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,

2648: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2649: END IF;
2650: Begin
2651: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2652: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2653: p_pricing_type_code => p_pricing_type_code,
2654: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2655: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);
2656: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');

Line 2888: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and

2884: END IF;
2885: /*
2886: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2887: the attributes.
2888: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2889: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2890: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2891: */
2892:

Line 2890: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE

2886: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2887: the attributes.
2888: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2889: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2890: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2891: */
2892:
2893: IF NVL(l_custom_sourced,'N') = 'Y' THEN
2894: IF l_debug = Fnd_Api.G_TRUE THEN

Line 2898: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');

2894: IF l_debug = Fnd_Api.G_TRUE THEN
2895: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2896: END IF;
2897: Begin
2898: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2899: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2900: p_pricing_type_code => p_pricing_type_code,
2901: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2902: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);

Line 2899: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,

2895: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2896: END IF;
2897: Begin
2898: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2899: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2900: p_pricing_type_code => p_pricing_type_code,
2901: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2902: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);
2903: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');