DBA Data[Home] [Help]

APPS.ONT_ITM_PKG dependencies on OE_MSG_PUB

Line 756: OE_MSG_PUB.Add;

752: FND_MESSAGE.SET_TOKEN('SRC_DEST',
753: OE_ORDER_UTIL.Get_Attribute_Name('SHIP_TO_ORG_ID'));
754: END IF;
755:
756: OE_MSG_PUB.Add;
757: x_return_status := FND_API.G_RET_STS_ERROR;
758: RETURN;
759: END IF;
760:

Line 973: OE_MSG_PUB.Add;

969: FND_MESSAGE.SET_TOKEN('PARTY',
970: OE_ORDER_UTIL.Get_Attribute_Name('SHIP_TO_ORG_ID'));
971: END IF;
972:
973: OE_MSG_PUB.Add;
974:
975: IF l_debug_level > 0 THEN
976: oe_debug_pub.add('Ship from and customer party name are mandatory' , 1 ) ;
977: END IF;

Line 1668: OE_MSG_PUB.Add;

1664: WHERE response_header_id = l_response_header_id;
1665:
1666: FND_MESSAGE.SET_NAME('ONT', 'OE_ECS_SYSTEM_ERROR');
1667: FND_MESSAGE.SET_TOKEN('ERRORTEXT', l_error_text);
1668: OE_MSG_PUB.Add;
1669:
1670: -- Check for errors in Response lines
1671:
1672: FOR c_error IN c_resp_lines(l_response_header_id)

Line 1678: OE_MSG_PUB.Add;

1674: BEGIN
1675: l_error_text := c_error.error_text;
1676: FND_MESSAGE.SET_NAME('ONT', 'OE_ECS_SYSTEM_ERROR');
1677: FND_MESSAGE.SET_TOKEN('ERRORTEXT', l_error_text);
1678: OE_MSG_PUB.Add;
1679: END;
1680: END LOOP;
1681:
1682: RETURN;

Line 1729: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR) THEN

1725: WHEN APP_EXCEPTIONS.RECORD_LOCK_EXCEPTION THEN
1726: IF l_debug_level > 0 THEN
1727: oe_debug_pub.add('OEXVITMB.pls: unable to lock the line',1);
1728: END IF;
1729: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR) THEN
1730: OE_MSG_PUB.set_msg_context(
1731: p_entity_code => 'LINE'
1732: ,p_entity_id => l_line_id
1733: ,p_header_id => l_header_id

Line 1730: OE_MSG_PUB.set_msg_context(

1726: IF l_debug_level > 0 THEN
1727: oe_debug_pub.add('OEXVITMB.pls: unable to lock the line',1);
1728: END IF;
1729: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR) THEN
1730: OE_MSG_PUB.set_msg_context(
1731: p_entity_code => 'LINE'
1732: ,p_entity_id => l_line_id
1733: ,p_header_id => l_header_id
1734: ,p_line_id => l_line_id);

Line 1737: OE_MSG_PUB.Add;

1733: ,p_header_id => l_header_id
1734: ,p_line_id => l_line_id);
1735:
1736: fnd_message.set_name('ONT', 'OE_LINE_LOCKED');
1737: OE_MSG_PUB.Add;
1738: OE_MSG_PUB.Save_API_Messages;
1739: END IF;
1740: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1741: END; --bug 4503620 ends

Line 1738: OE_MSG_PUB.Save_API_Messages;

1734: ,p_line_id => l_line_id);
1735:
1736: fnd_message.set_name('ONT', 'OE_LINE_LOCKED');
1737: OE_MSG_PUB.Add;
1738: OE_MSG_PUB.Save_API_Messages;
1739: END IF;
1740: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1741: END; --bug 4503620 ends
1742:

Line 1756: OE_MSG_PUB.set_msg_context(

1752: END IF;
1753: RETURN;
1754: END IF;
1755:
1756: OE_MSG_PUB.set_msg_context(
1757: p_entity_code => 'LINE'
1758: ,p_entity_id => l_line_rec.line_id
1759: ,p_header_id => l_line_rec.header_id
1760: ,p_line_id => l_line_rec.line_id

Line 1855: OE_MSG_PUB.Add;

1851: FND_MESSAGE.SET_NAME('ONT','OE_ECS_SYSTEM_ERROR');
1852: END IF;
1853:
1854: FND_MESSAGE.SET_TOKEN('ERRORTEXT',l_error_text);
1855: OE_MSG_PUB.Add;
1856:
1857:
1858: -- Check for errors in Response lines
1859:

Line 1872: OE_MSG_PUB.Add;

1868: FND_MESSAGE.SET_NAME('ONT','OE_ECS_SYSTEM_ERROR');
1869: END IF;
1870:
1871: FND_MESSAGE.SET_TOKEN('ERRORTEXT',l_error_text);
1872: OE_MSG_PUB.Add;
1873: END;
1874: END LOOP;
1875: END IF; --Check for System or Data Errors
1876:

Line 1886: OE_MSG_PUB.Add;

1882: IF c_resplines.denied_party_flag = 'Y' THEN
1883: FND_MESSAGE.SET_NAME('ONT','OE_ECS_DENIED_PARTY');
1884: FND_MESSAGE.SET_TOKEN('DENIEDPARTY',
1885: c_resplines.party_name);
1886: OE_MSG_PUB.Add;
1887: IF l_debug_level > 0 THEN
1888: OE_DEBUG_PUB.Add('Party Name:'||c_resplines.party_name||',denied');
1889: END IF;
1890: END IF;

Line 2074: OE_MSG_PUB.SAVE_MESSAGES(l_line_rec.line_id);

2070:
2071: END IF;
2072:
2073:
2074: OE_MSG_PUB.SAVE_MESSAGES(l_line_rec.line_id);
2075:
2076: IF l_debug_level > 0 THEN
2077: oe_debug_pub.add('Exiting response api',1);
2078: END IF; */