DBA Data[Home] [Help]

APPS.OE_DUAL_UOM_UTIL dependencies on OE_GLOBALS

Line 519: ---3 VALIDATION. G_VALIDATE_LINE_SET request is also logged in oe_line_util.pre_write for p_line_rec.operation = oe_globals.g_opr_update

515: OE_MSG_PUB.Add;
516: RAISE FND_API.G_EXC_ERROR;
517: END IF;
518:
519: ---3 VALIDATION. G_VALIDATE_LINE_SET request is also logged in oe_line_util.pre_write for p_line_rec.operation = oe_globals.g_opr_update
520: -- to ensure that fulfillment base is same on a line set...---Below condtion added for bug 16731675
521: IF l_debug_level > 0 THEN
522: oe_debug_pub.ADD('Validating FB: p_x_line_rec.operation '|| p_line_rec.operation ,1);
523: oe_debug_pub.ADD('Validating FB: p_x_line_rec.split_action_code '||p_line_rec.split_action_code ,1);

Line 527: IF (p_line_rec.operation = oe_globals.g_opr_create) AND

523: oe_debug_pub.ADD('Validating FB: p_x_line_rec.split_action_code '||p_line_rec.split_action_code ,1);
524: oe_debug_pub.ADD('Validating FB: p_x_line_rec.line_set_id '||p_line_rec.line_set_id ,1);
525: END IF;
526:
527: IF (p_line_rec.operation = oe_globals.g_opr_create) AND
528: NOT (p_line_rec.split_action_code IS NOT NULL AND
529: p_line_rec.split_action_code <> FND_API.G_MISS_CHAR) AND
530: (p_line_rec.line_set_id IS NOT NULL AND
531: p_line_rec.line_set_id <> FND_API.G_MISS_NUM) THEN

Line 538: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,

534: oe_debug_pub.ADD('Validating FB: logging G_VALIDATE_LINE_SET ',1);
535: END IF;
536:
537: OE_Delayed_Requests_Pvt.Log_Request(
538: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
539: p_entity_id => p_line_rec.line_set_id,
540: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
541: p_requesting_entity_id => p_line_rec.line_id,
542: p_request_type => OE_GLOBALS.G_VALIDATE_LINE_SET,

Line 540: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,

536:
537: OE_Delayed_Requests_Pvt.Log_Request(
538: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
539: p_entity_id => p_line_rec.line_set_id,
540: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
541: p_requesting_entity_id => p_line_rec.line_id,
542: p_request_type => OE_GLOBALS.G_VALIDATE_LINE_SET,
543: x_return_status => l_return_status);
544: END IF;--end of bug 16731675

Line 542: p_request_type => OE_GLOBALS.G_VALIDATE_LINE_SET,

538: p_entity_code => OE_GLOBALS.G_ENTITY_LINE,
539: p_entity_id => p_line_rec.line_set_id,
540: p_requesting_entity_code => OE_GLOBALS.G_ENTITY_LINE,
541: p_requesting_entity_id => p_line_rec.line_id,
542: p_request_type => OE_GLOBALS.G_VALIDATE_LINE_SET,
543: x_return_status => l_return_status);
544: END IF;--end of bug 16731675
545: --------------------------------------------------------------------------------------------------------------
546: