DBA Data[Home] [Help]

APPS.OE_ADV_ITEM_SEARCH_PVT dependencies on OE_DEBUG_PUB

Line 62: oe_debug_pub.add('No of Items Selected in Advanced Search : ' || To_char(l_index - 1), 1);

58: END LOOP;
59:
60: -- Call Process Order API to create the lines
61:
62: oe_debug_pub.add('No of Items Selected in Advanced Search : ' || To_char(l_index - 1), 1);
63:
64: IF l_index > 1 THEN
65:
66: oe_order_pvt.lines

Line 74: oe_debug_pub.add('After call to Lines Procedure : ' || l_return_status, 1 );

70: , p_x_old_line_tbl => l_old_line_tbl
71: , x_return_status => l_return_status );
72:
73:
74: oe_debug_pub.add('After call to Lines Procedure : ' || l_return_status, 1 );
75:
76: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
77: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
78: END IF;

Line 88: oe_debug_pub.add('After call to Process Request Notify : ' || l_return_status, 1 );

84: , p_line_tbl => l_line_tbl
85: , p_old_line_tbl => l_old_line_tbl);
86:
87:
88: oe_debug_pub.add('After call to Process Request Notify : ' || l_return_status, 1 );
89:
90: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
91: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
92: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 99: oe_debug_pub.add( 'Copying Items to AIS table ' || To_char(l_index) );

95:
96: --Now the call goes back to the pld and needs to be handled.
97:
98: l_index := l_line_tbl.first;
99: oe_debug_pub.add( 'Copying Items to AIS table ' || To_char(l_index) );
100:
101: WHILE l_index IS NOT NULL LOOP
102: x_ais_items_tbl(l_index).inventory_item_id := l_line_tbl(l_index).inventory_item_id;
103: x_ais_items_tbl(l_index).return_status := l_line_tbl(l_index).return_status;

Line 120: oe_debug_pub.add('Leaving Create_Items_Selected : ' || l_return_status, 1 );

116: insert_unused_session( p_session_id );
117:
118: END IF;
119:
120: oe_debug_pub.add('Leaving Create_Items_Selected : ' || l_return_status, 1 );
121:
122: EXCEPTION
123:
124: WHEN FND_API.G_EXC_ERROR THEN