DBA Data[Home] [Help]

APPS.PO_REQCHANGEREQUESTNOTIF_PVT dependencies on PO_PRICE_BREAK_GRP

Line 2984: -- for PO with source document or RELEASE,use get_po_price_break_grp function to get the price.

2980: when NO_DATA_FOUND then
2981: l_new_price := null;
2982: end;
2983:
2984: -- for PO with source document or RELEASE,use get_po_price_break_grp function to get the price.
2985: ELSE
2986: l_new_price := Get_PO_Price_Break_Grp( p_org_id, p_group_id, p_line_id, p_item_id, p_line_uom, p_old_price,p_line_location_id);
2987:
2988: END IF;

Line 2986: l_new_price := Get_PO_Price_Break_Grp( p_org_id, p_group_id, p_line_id, p_item_id, p_line_uom, p_old_price,p_line_location_id);

2982: end;
2983:
2984: -- for PO with source document or RELEASE,use get_po_price_break_grp function to get the price.
2985: ELSE
2986: l_new_price := Get_PO_Price_Break_Grp( p_org_id, p_group_id, p_line_id, p_item_id, p_line_uom, p_old_price,p_line_location_id);
2987:
2988: END IF;
2989:
2990: l_progress := '007';

Line 3729: po_price_break_grp.Get_Price_Break (

3725: END IF;
3726:
3727: IF (l_call_price_break) THEN
3728:
3729: po_price_break_grp.Get_Price_Break (
3730: P_SOURCE_DOCUMENT_HEADER_ID => l_blanket_header_id,
3731: P_SOURCE_DOCUMENT_LINE_NUM => l_blanket_line_num,
3732: P_IN_QUANTITY => l_line_total_qty,
3733: P_UNIT_OF_MEASURE => l_line_uom,

Line 3866: * Public Procedure: Get_PO_Price_Break_Grp

3862: */
3863:
3864:
3865: /*************************************************************************
3866: * Public Procedure: Get_PO_Price_Break_Grp
3867: *
3868: * Effects: Returns the Price Break value
3869: *
3870: ************************************************************************/

Line 3871: FUNCTION Get_PO_Price_Break_Grp(p_org_id in number,

3867: *
3868: * Effects: Returns the Price Break value
3869: *
3870: ************************************************************************/
3871: FUNCTION Get_PO_Price_Break_Grp(p_org_id in number,
3872: p_group_id in number,
3873: p_line_id in number,
3874: p_item_id in number,
3875: p_line_uom in varchar2,

Line 3928: l_api_name varchar2(50):= 'Get_PO_Price_Break_Grp';

3924: l_release_shipment_quantity number;
3925: l_price_break_type varchar2(100);
3926:
3927: l_progress varchar2(200);
3928: l_api_name varchar2(50):= 'Get_PO_Price_Break_Grp';
3929:
3930:
3931: -- This cursor is used for getting quantity for a SPO line
3932: cursor l_get_line_qty(grp_id number, line_id number) is

Line 4256: END Get_PO_Price_Break_Grp;

4252: end if;
4253:
4254: raise;
4255:
4256: END Get_PO_Price_Break_Grp;
4257:
4258: /*************************************************************************
4259: * Public Procedure: Get_Price
4260: *

Line 4403: l_price:= Get_PO_Price_Break_Grp( p_org_id, p_group_id, p_line_id, p_item_id, p_line_uom, p_old_price, p_line_location_id);

4399:
4400: else
4401: -- price obtained from po price break function is already in txn currency,
4402: -- no need to convert.
4403: l_price:= Get_PO_Price_Break_Grp( p_org_id, p_group_id, p_line_id, p_item_id, p_line_uom, p_old_price, p_line_location_id);
4404:
4405: l_progress:='004';
4406: if g_fnd_debug = 'Y' then
4407: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_STATEMENT) THEN