DBA Data[Home] [Help]

APPS.CTO_RESERVE_CONFIG dependencies on OE_DEBUG_PUB

Line 101: oe_debug_pub.add('Source Document Type Id = 10 which means, it is an INTERNAL ORDER', 1);

97: -- l_rsv_rec.demand_source_type_id := INV_RESERVATION_GLOBAL.G_SOURCE_TYPE_OE;
98:
99:
100: if (p_rec_reserve.f_source_document_type_id = 10) then
101: oe_debug_pub.add('Source Document Type Id = 10 which means, it is an INTERNAL ORDER', 1);
102: l_rsv_rec.demand_source_type_id :=
103: INV_RESERVATION_GLOBAL.g_source_type_internal_ord;
104: else
105: oe_debug_pub.add('Source Document Type Id = '||p_rec_reserve.f_source_document_type_id, 1);

Line 105: oe_debug_pub.add('Source Document Type Id = '||p_rec_reserve.f_source_document_type_id, 1);

101: oe_debug_pub.add('Source Document Type Id = 10 which means, it is an INTERNAL ORDER', 1);
102: l_rsv_rec.demand_source_type_id :=
103: INV_RESERVATION_GLOBAL.g_source_type_internal_ord;
104: else
105: oe_debug_pub.add('Source Document Type Id = '||p_rec_reserve.f_source_document_type_id, 1);
106: l_rsv_rec.demand_source_type_id :=
107: INV_RESERVATION_GLOBAL.g_source_type_oe;
108: end if;
109:

Line 177: oe_debug_pub.add( ' message from ctorcfgb.pls ' || x_msg_txt ,1 )

173: x_reservation_id=>x_rsrv_id);
174:
175: if (x_return_status <> fnd_api.g_ret_sts_success) then
176: -- Reservation Failed --
177: oe_debug_pub.add( ' message from ctorcfgb.pls ' || x_msg_txt ,1 )
178: ;
179: FND_MESSAGE.parse_encoded( x_msg_txt, v_appl_name, v_error_name ) ;
180:
181:

Line 182: oe_debug_pub.add( ' message from ctorcfgb.pls ' || v_appl_name || ' ' || v_error_name ,1 ) ;

178: ;
179: FND_MESSAGE.parse_encoded( x_msg_txt, v_appl_name, v_error_name ) ;
180:
181:
182: oe_debug_pub.add( ' message from ctorcfgb.pls ' || v_appl_name || ' ' || v_error_name ,1 ) ;
183:
184:
185: raise RESERVATION_ERROR;
186: end if;