DBA Data[Home] [Help]

APPS.QP_ATTR_MAPPING_PUB dependencies on QP_CUSTOM_SOURCE

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

2342:
2343: v_count NUMBER := 0;
2344: l_count NUMBER := 0;
2345:
2346: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');
2347:
2348: l_req_type_code VARCHAR2(30);
2349: l_pricing_type_code VARCHAR2(1);
2350: l_qual_contexts_result_tbl Qp_Attr_Mapping_Pub.CONTEXTS_RESULT_TBL_TYPE;

Line 2437: 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

2433: END IF;
2434: -- 13638721
2435: /*
2436: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source the attributes.
2437: 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
2438: */
2439:
2440:
2441: IF NVL(l_custom_sourced,'N') = 'Y' THEN

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

2439:
2440:
2441: IF NVL(l_custom_sourced,'N') = 'Y' THEN
2442: Begin
2443: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2444: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2445: p_pricing_type_code => p_pricing_type,
2446: x_qual_ctxts_result_tbl => l_qual_contexts_result_tbl,
2447: x_price_ctxts_result_tbl => l_price_contexts_result_tbl);

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

2440:
2441: IF NVL(l_custom_sourced,'N') = 'Y' THEN
2442: Begin
2443: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2444: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2445: p_pricing_type_code => p_pricing_type,
2446: x_qual_ctxts_result_tbl => l_qual_contexts_result_tbl,
2447: x_price_ctxts_result_tbl => l_price_contexts_result_tbl);
2448: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');

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

2650:
2651: l_pricing_type_code VARCHAR2(1) := Fnd_Api.G_MISS_CHAR;
2652: K PLS_INTEGER;
2653:
2654: l_custom_sourced VARCHAR2(1) := Fnd_Profile.VALUE('QP_CUSTOM_SOURCED');
2655:
2656: l_sourcing_start_time NUMBER;
2657: l_sourcing_end_time NUMBER;
2658: l_time_difference NUMBER;

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

2844: --ignore_pricing end
2845: /*
2846: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2847: the attributes.
2848: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2849: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2850: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2851: */
2852:

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

2846: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
2847: the attributes.
2848: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
2849: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
2850: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
2851: */
2852:
2853: IF l_debug = Fnd_Api.G_TRUE THEN
2854: Qp_Preq_Grp.ENGINE_DEBUG('Number of qual attrs got from Get_Attribute_Values - ' || l_qual_contexts_result_tbl.COUNT );

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

2859: IF l_debug = Fnd_Api.G_TRUE THEN
2860: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2861: END IF;
2862: Begin
2863: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2864: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2865: p_pricing_type_code => p_pricing_type_code,
2866: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2867: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);

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

2860: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
2861: END IF;
2862: Begin
2863: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
2864: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
2865: p_pricing_type_code => p_pricing_type_code,
2866: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
2867: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);
2868: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');

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

3142: END IF;
3143: /*
3144: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
3145: the attributes.
3146: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
3147: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
3148: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
3149: */
3150:

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

3144: If the attribute sourcing method is 'CUSTOM SOURCING' then user provides code to source
3145: the attributes.
3146: User code is written in the package procedure QP_CUSTOM_SOURCE.Get_Custom_Attribute_Values and
3147: Build_Contexts program calls this procedure to pickup custom sourced attributes if the
3148: profile option ' QP_CUSTOM_SOURCED' is set to 'Y' -- GTIPPIRE
3149: */
3150:
3151: IF NVL(l_custom_sourced,'N') = 'Y' THEN
3152: IF l_debug = Fnd_Api.G_TRUE THEN

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

3152: IF l_debug = Fnd_Api.G_TRUE THEN
3153: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
3154: END IF;
3155: Begin
3156: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
3157: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
3158: p_pricing_type_code => p_pricing_type_code,
3159: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
3160: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);

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

3153: Qp_Preq_Grp.ENGINE_DEBUG('Before Calling Custom Sourcing Package ----------');
3154: END IF;
3155: Begin
3156: qp_debug_util.tstart('GET_CUSTOM_ATTRIBUTE_VALUES','Calling the QP_CUSTOM_SOURCE package to fetch the cutom attribute values');
3157: Qp_Custom_Source.Get_Custom_Attribute_Values(p_req_type_code => p_request_type_code,
3158: p_pricing_type_code => p_pricing_type_code,
3159: x_qual_ctxts_result_tbl => v_qual_contexts_result_tbl,
3160: x_price_ctxts_result_tbl => v_price_contexts_result_tbl);
3161: qp_debug_util.tstop('GET_CUSTOM_ATTRIBUTE_VALUES');