DBA Data[Home] [Help]

APPS.ONT_UPG_TAX_UTIL dependencies on OE_MSG_PUB

Line 59: OE_MSG_PUB.Initialize;

55: l_end_date := p_end_date + 1;
56:
57:
58: open headers;
59: OE_MSG_PUB.Initialize;
60: loop
61:
62: IF l_debug_level > 0 THEN
63: oe_debug_pub.add( 'IN HEADERS' , 1 ) ;

Line 91: OE_MSG_PUB.set_msg_context(

87: IF l_debug_level > 0 THEN
88: oe_debug_pub.add( 'HEADER ID IS : ' || HEADER_ID_T ( K ) , 1 ) ;
89: END IF;
90:
91: OE_MSG_PUB.set_msg_context(
92: p_entity_code => 'HEADER'
93: ,p_entity_id => HEADER_ID_T ( K )
94: ,p_header_id => HEADER_ID_T ( K )
95: ,p_line_id => null

Line 113: OE_MSG_PUB.Count_And_Get (p_count => l_msg_count

109:
110: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
111: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
112: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
113: OE_MSG_PUB.Count_And_Get (p_count => l_msg_count
114: ,p_data => l_msg_data);
115: oe_debug_pub.add( 'MESSAGES RETURNED: '|| TO_CHAR ( l_msg_count ),1 ) ;
116: if l_msg_count > 0 then
117: OE_MSG_PUB.Add_text('Tax calculation failed for Header Id :'|| header_id_t(K));

Line 117: OE_MSG_PUB.Add_text('Tax calculation failed for Header Id :'|| header_id_t(K));

113: OE_MSG_PUB.Count_And_Get (p_count => l_msg_count
114: ,p_data => l_msg_data);
115: oe_debug_pub.add( 'MESSAGES RETURNED: '|| TO_CHAR ( l_msg_count ),1 ) ;
116: if l_msg_count > 0 then
117: OE_MSG_PUB.Add_text('Tax calculation failed for Header Id :'|| header_id_t(K));
118: l_msg_data := 'Error message for header_id ' || header_id_t(K) ||' is : '||l_msg_data;
119: IF l_debug_level > 0 THEN
120: oe_debug_pub.add( l_msg_data,1 ) ;
121: END IF;

Line 128: OE_MSG_PUB.save_UI_messages (0,'C');

124: END IF;
125: IF l_debug_level > 0 THEN
126: oe_debug_pub.add(' Save the Messages for Header: '|| header_id_t(K), 1);
127: END IF;
128: OE_MSG_PUB.save_UI_messages (0,'C');
129:
130: END LOOP; /* for loop */
131:
132: END IF; /* if header_id_t.first is not null */

Line 158: IF OE_MSG_PUB.Check_Msg_Level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

154: x_return_status := FND_API.G_RET_STS_SUCCESS;
155:
156: WHEN OTHERS THEN
157:
158: IF OE_MSG_PUB.Check_Msg_Level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
159: THEN
160: OE_MSG_PUB.Add_Exc_Msg
161: ( G_PKG_NAME ,
162: 'calculate_order_tax'

Line 160: OE_MSG_PUB.Add_Exc_Msg

156: WHEN OTHERS THEN
157:
158: IF OE_MSG_PUB.Check_Msg_Level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
159: THEN
160: OE_MSG_PUB.Add_Exc_Msg
161: ( G_PKG_NAME ,
162: 'calculate_order_tax'
163: );
164: END IF;