DBA Data[Home] [Help]

APPS.OE_PRICE_ORDER_PVT_OBSOLETE dependencies on OE_GLOBALS

Line 428: l_line_rec.operation := oe_globals.g_opr_create;

424: l_line_rec.calculate_price_flag := 'Y';
425: End IF;
426:
427: If (l_line_rec.operation is null or l_line_rec.operation = FND_API.G_MISS_CHAR) THEN
428: l_line_rec.operation := oe_globals.g_opr_create;
429: End IF;
430:
431: l_pass_line_flag := 'N';
432: l_check_line_flag := 'N';

Line 440: l_line_rec.operation = OE_GLOBALS.G_OPR_CREATE

436: l_pass_line_flag := 'Y';
437: ELSIF l_line_rec.calculate_price_flag <> 'N'
438: THEN
439: IF (p_order_status_rec.changed_lines_flag = 'Y' AND (
440: l_line_rec.operation = OE_GLOBALS.G_OPR_CREATE
441: OR l_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE)
442: )
443: THEN
444: l_source_line_flag := 'Y';

Line 441: OR l_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE)

437: ELSIF l_line_rec.calculate_price_flag <> 'N'
438: THEN
439: IF (p_order_status_rec.changed_lines_flag = 'Y' AND (
440: l_line_rec.operation = OE_GLOBALS.G_OPR_CREATE
441: OR l_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE)
442: )
443: THEN
444: l_source_line_flag := 'Y';
445: l_pass_line_flag := 'Y';

Line 447: l_line_rec.operation <> OE_GLOBALS.G_OPR_DELETE)

443: THEN
444: l_source_line_flag := 'Y';
445: l_pass_line_flag := 'Y';
446: ELSIF (p_order_status_rec.all_lines_flag = 'Y' AND
447: l_line_rec.operation <> OE_GLOBALS.G_OPR_DELETE)
448: THEN
449: l_check_line_flag := 'Y';
450: l_source_line_flag := 'Y';
451: END IF;