DBA Data[Home] [Help]

APPS.OE_LINE_ADJ_UTIL dependencies on OE_RETROBILL_PVT

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

5067: --we need to retrieve the latest adjustments if it is a retrobilled line
5068: --call retrobill api to get the retrobill line id, if none l_line_id will
5069: --set to the same value as p_line_id
5070:
5071: Oe_Retrobill_Pvt.Get_Last_Retro_LinID(p_line_id=>p_line_id,
5072: x_line_id=>l_line_id);
5073:
5074: if nvl(p_line_id,-1) <> nvl(l_line_id,-1) then
5075: --Old id and new id difference, line has been retrobilled multiple times

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

5101: -- l_Line_Adj_Tbl := OE_Line_Adj_Util.Query_Rows(p_header_Id => p_header_id);
5102: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' and
5103: p_operation <> OE_GLOBALS.G_OPR_DELETE THEN
5104: --RT{
5105: Oe_Retrobill_Pvt.Get_Last_Retro_HdrID(p_header_id=>p_header_id,
5106: x_header_id=>l_header_id);
5107: if nvl(p_header_id,-1) <> nvl(l_header_id,-1) then
5108: l_has_retrobilled_before:='Y';
5109: end if;