DBA Data[Home] [Help]

APPS.OE_PREPAYMENT_UTIL dependencies on OE_MSG_PUB

Line 51: OE_MSG_PUB.Update_Msg_Context(p_attribute_code => null);

47:
48: IF l_header_id IS NULL OR
49: l_header_id = FND_API.G_MISS_NUM
50: THEN
51: OE_MSG_PUB.Update_Msg_Context(p_attribute_code => null);
52: p_result := 0;
53: END IF;
54:
55: IF l_debug_level > 0 THEN

Line 122: OE_MSG_PUB.Update_Msg_Context(p_attribute_code => null);

118: IF p_validation_entity_short_name in ('HEADER','LINE') THEN
119: IF l_header_id IS NULL OR
120: l_header_id = FND_API.G_MISS_NUM
121: THEN
122: OE_MSG_PUB.Update_Msg_Context(p_attribute_code => null);
123: p_result := 0;
124: ELSE
125: p_result := 0;
126: -- commented out the following code, as the payment shown

Line 672: OE_MSG_PUB.set_msg_context(

668: fnd_file.put_line(FND_FILE.OUTPUT, 'Processing header_id: '||l_header_id);
669: l_count_header := l_count_header + 1;
670: IF l_count_header = 1 THEN
671: -- Set Message Context
672: OE_MSG_PUB.set_msg_context(
673: p_entity_code => 'HEADER'
674: ,p_entity_id => l_header_id
675: ,p_header_id => l_header_id
676: ,p_line_id => null

Line 687: OE_MSG_PUB.update_msg_context(

683: ,p_source_document_type_id => l_source_document_type_id
684: );
685: ELSIF l_count_header > 1 THEN
686: -- Update Message Context
687: OE_MSG_PUB.update_msg_context(
688: p_entity_code => 'HEADER'
689: ,p_entity_id => l_header_id
690: ,p_header_id => l_header_id
691: ,p_line_id => null

Line 764: -- OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);

760: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
761: IF l_debug_level > 0 THEN
762: oe_debug_pub.add( 'UNEXPECTED ERROR' ) ;
763: END IF;
764: -- OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);
765: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
766: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
767: IF l_debug_level > 0 THEN
768: oe_debug_pub.add( 'EXPECTED ERROR' ) ;

Line 770: -- OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);

766: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
767: IF l_debug_level > 0 THEN
768: oe_debug_pub.add( 'EXPECTED ERROR' ) ;
769: END IF;
770: -- OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);
771: -- RAISE FND_API.G_EXC_ERROR;
772: END IF;
773:
774: -- releasing the holds.

Line 850: OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);

846: END IF;
847: END IF;
848: ***/ -- end of bug 4967981
849:
850: OE_MSG_PUB.Save_Messages(p_request_id => l_request_id);
851: END LOOP;
852:
853: IF l_debug_level > 0 THEN
854: oe_debug_pub.add( 'NO. OF ORDERS FOUND: ' || L_COUNT_HEADER ) ;

Line 912: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

908: l_return_status := FND_API.G_RET_STS_ERROR ;
909: IF l_debug_level > 0 THEN
910: oe_debug_pub.add( 'UNEXPECTED ERROR: '||SQLERRM ) ;
911: END IF;
912: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
913: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');
914: END IF;
915:
916: fnd_file.put_line(FND_FILE.OUTPUT,'Unexpected error: ' || sqlerrm);

Line 913: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');

909: IF l_debug_level > 0 THEN
910: oe_debug_pub.add( 'UNEXPECTED ERROR: '||SQLERRM ) ;
911: END IF;
912: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
913: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');
914: END IF;
915:
916: fnd_file.put_line(FND_FILE.OUTPUT,'Unexpected error: ' || sqlerrm);
917: OE_MSG_PUB.Count_And_Get

Line 917: OE_MSG_PUB.Count_And_Get

913: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');
914: END IF;
915:
916: fnd_file.put_line(FND_FILE.OUTPUT,'Unexpected error: ' || sqlerrm);
917: OE_MSG_PUB.Count_And_Get
918: ( p_count => l_msg_count,
919: p_data => l_msg_data
920: );
921:

Line 924: OE_MSG_PUB.Count_And_Get

920: );
921:
922: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
923: l_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
924: OE_MSG_PUB.Count_And_Get
925: ( p_count => l_msg_count,
926: p_data => l_msg_data
927: );
928:

Line 933: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

929: WHEN OTHERS THEN
930: IF l_debug_level > 0 THEN
931: oe_debug_pub.add( 'UNEXPECTED ERROR: '||SQLERRM ) ;
932: END IF;
933: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
934: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');
935: END IF;
936:
937: fnd_file.put_line(FND_FILE.OUTPUT,'Unexpected error: ' || sqlerrm);

Line 934: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');

930: IF l_debug_level > 0 THEN
931: oe_debug_pub.add( 'UNEXPECTED ERROR: '||SQLERRM ) ;
932: END IF;
933: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
934: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'PendProcessPayments_Conc_Prog');
935: END IF;
936:
937: fnd_file.put_line(FND_FILE.OUTPUT,'Unexpected error: ' || sqlerrm);
938: