DBA Data[Home] [Help]

APPS.OE_VALIDATE_LINE_PAYMENT dependencies on OE_DEBUG_PUB

Line 36: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Entity',1);

32: --bug5176401 end
33:
34: BEGIN
35:
36: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Entity',1);
37: -- Check required attributes.
38:
39: IF p_Line_Payment_rec.payment_number IS NULL
40: THEN

Line 320: oe_Debug_Pub.add('OEXLLPMB.pls: Prepayment exists at order level');

316: end if;
317: end if;
318:
319: if l_prepay_count > 0 and nvl(p_Line_Payment_rec.payment_type_code, 'x') <> 'COMMITMENT' then
320: oe_Debug_Pub.add('OEXLLPMB.pls: Prepayment exists at order level');
321:
322: l_return_status := FND_API.G_RET_STS_ERROR;
323:
324: IF oe_msg_pub.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)

Line 385: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Entity',1);

381: -- Done validating entity
382:
383: x_return_status := l_return_status;
384:
385: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Entity',1);
386: EXCEPTION
387:
388: WHEN FND_API.G_EXC_ERROR THEN
389:

Line 422: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Attributes',1);

418: IS
419: l_cc_security_code_use VARCHAR2(20); --R12 CVV2
420: BEGIN
421:
422: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Attributes',1);
423: x_return_status := FND_API.G_RET_STS_SUCCESS;
424:
425: -- Validate Line_Payment attributes
426:

Line 703: oe_debug_pub.add('Validation of desc flex is set to Y in OE_Validate_Line_Payment.attributes ',1);

699: x_return_status := FND_API.G_RET_STS_ERROR;
700: END IF;
701: END IF; --R12 Process order api changes
702: if OE_GLOBALS.g_validate_desc_flex ='Y' then --bug 4343612
703: oe_debug_pub.add('Validation of desc flex is set to Y in OE_Validate_Line_Payment.attributes ',1);
704: IF (p_Line_Payment_rec.attribute1 IS NOT NULL AND
705: ( p_Line_Payment_rec.attribute1 <>
706: p_old_Line_Payment_rec.attribute1 OR
707: p_old_Line_Payment_rec.attribute1 IS NULL ))

Line 771: oe_debug_pub.add('Before calling Payments_Desc_Flex',2);

767: p_old_Line_Payment_rec.context IS NULL ))
768: THEN
769:
770:
771: oe_debug_pub.add('Before calling Payments_Desc_Flex',2);
772: IF NOT OE_VALIDATE.Payments_Desc_Flex
773: (p_context => p_Line_Payment_rec.context
774: ,p_attribute1 => p_Line_Payment_rec.attribute1
775: ,p_attribute2 => p_Line_Payment_rec.attribute2

Line 793: oe_debug_pub.add('After Payments_Desc_Flex ' || x_return_status,2);

789:
790: x_return_status := FND_API.G_RET_STS_ERROR;
791: END IF;
792:
793: oe_debug_pub.add('After Payments_Desc_Flex ' || x_return_status,2);
794:
795: END IF;
796:
797: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Attributes',1);

Line 797: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Attributes',1);

793: oe_debug_pub.add('After Payments_Desc_Flex ' || x_return_status,2);
794:
795: END IF;
796:
797: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Attributes',1);
798: -- Done validating attributes
799: end if ; /*if OE_GLOBALS.g_validate_desc_flex ='Y' then bug 4343612*/
800: EXCEPTION
801:

Line 834: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Entity_Delete',1);

830: IS
831: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
832: BEGIN
833:
834: OE_DEBUG_PUB.Add('Entering OE_VALIDATE_Line_Payments.Entity_Delete',1);
835: -- Validate entity delete.
836: NULL;
837: -- Done.
838:

Line 840: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Entity_Delete',1);

836: NULL;
837: -- Done.
838:
839: x_return_status := l_return_status;
840: OE_DEBUG_PUB.Add('Exiting OE_VALIDATE_Line_Payments.Entity_Delete',1);
841:
842: EXCEPTION
843:
844: WHEN FND_API.G_EXC_ERROR THEN