DBA Data[Home] [Help]

APPS.OE_LINE_ADJ_UTIL dependencies on OE_RETROBILL_PVT

Line 4992: Oe_Retrobill_Pvt.Get_Last_Retro_LinID(p_line_id=>p_line_id,

4988: --we need to retrieve the latest adjustments if it is a retrobilled line
4989: --call retrobill api to get the retrobill line id, if none l_line_id will
4990: --set to the same value as p_line_id
4991:
4992: Oe_Retrobill_Pvt.Get_Last_Retro_LinID(p_line_id=>p_line_id,
4993: x_line_id=>l_line_id);
4994:
4995: if nvl(p_line_id,-1) <> nvl(l_line_id,-1) then
4996: --Old id and new id difference, line has been retrobilled multiple times

Line 5026: Oe_Retrobill_Pvt.Get_Last_Retro_HdrID(p_header_id=>p_header_id,

5022: -- l_Line_Adj_Tbl := OE_Line_Adj_Util.Query_Rows(p_header_Id => p_header_id);
5023: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' and
5024: p_operation <> OE_GLOBALS.G_OPR_DELETE THEN
5025: --RT{
5026: Oe_Retrobill_Pvt.Get_Last_Retro_HdrID(p_header_id=>p_header_id,
5027: x_header_id=>l_header_id);
5028: if nvl(p_header_id,-1) <> nvl(l_header_id,-1) then
5029: l_has_retrobilled_before:='Y';
5030: end if;