DBA Data[Home] [Help]

APPS.OE_LINE_ADJ_UTIL dependencies on OE_PRICE_ADJUSTMENTS_S

Line 3119: Select oe_price_adjustments_s.nextval

3115: select max(price_adjustment_id)
3116: into j
3117: from oe_price_adjustments;
3118:
3119: Select oe_price_adjustments_s.nextval
3120: Into h
3121: From dual;
3122:
3123: If j > h and j <> fnd_api.g_miss_num Then

Line 3126: select oe_price_adjustments_s.nextval into k from dual;

3122:
3123: If j > h and j <> fnd_api.g_miss_num Then
3124: l:=j-h+10;
3125: for i in 1..l loop
3126: select oe_price_adjustments_s.nextval into k from dual;
3127: end loop;
3128: End If;
3129:
3130: end;