DBA Data[Home] [Help]

APPS.OKC_AQ_PUB dependencies on OKC_DEBUG

Line 46: okc_debug.Set_Indentation(l_proc);

42: --
43:
44: BEGIN
45: IF (l_debug = 'Y') THEN
46: okc_debug.Set_Indentation(l_proc);
47: okc_debug.Log('10: Entering ',2);
48: END IF;
49:
50: -- Call start_activity to create savepoint, check compatibility

Line 47: okc_debug.Log('10: Entering ',2);

43:
44: BEGIN
45: IF (l_debug = 'Y') THEN
46: okc_debug.Set_Indentation(l_proc);
47: okc_debug.Log('10: Entering ',2);
48: END IF;
49:
50: -- Call start_activity to create savepoint, check compatibility
51: -- and initialize message list

Line 62: okc_debug.Log('30: l_return_status : '||l_return_status,2);

58: , x_return_status
59: );
60:
61: IF (l_debug = 'Y') THEN
62: okc_debug.Log('30: l_return_status : '||l_return_status,2);
63: END IF;
64:
65: -- Check if activity started successfully
66: IF (l_return_status = OKC_API.G_RET_STS_UNEXP_ERROR) THEN

Line 73: okc_debug.Log('40: Calling okc_aq_pvt.send_message ',2);

69: RAISE OKC_API.G_EXCEPTION_ERROR;
70: END IF;
71:
72: IF (l_debug = 'Y') THEN
73: okc_debug.Log('40: Calling okc_aq_pvt.send_message ',2);
74: END IF;
75:
76: okc_aq_pvt.send_message (
77: p_api_version ,

Line 90: okc_debug.Log('50: After Call To okc_aq_pvt.send_message ',2);

86: p_delay
87: );
88:
89: IF (l_debug = 'Y') THEN
90: okc_debug.Log('50: After Call To okc_aq_pvt.send_message ',2);
91: okc_debug.Log('50: x_msg_count : '||x_msg_count,2);
92: okc_debug.Log('50: x_msg_data : '||x_msg_data,2);
93: okc_debug.Log('50: x_return_status : '||x_return_status,2);
94: END IF;

Line 91: okc_debug.Log('50: x_msg_count : '||x_msg_count,2);

87: );
88:
89: IF (l_debug = 'Y') THEN
90: okc_debug.Log('50: After Call To okc_aq_pvt.send_message ',2);
91: okc_debug.Log('50: x_msg_count : '||x_msg_count,2);
92: okc_debug.Log('50: x_msg_data : '||x_msg_data,2);
93: okc_debug.Log('50: x_return_status : '||x_return_status,2);
94: END IF;
95:

Line 92: okc_debug.Log('50: x_msg_data : '||x_msg_data,2);

88:
89: IF (l_debug = 'Y') THEN
90: okc_debug.Log('50: After Call To okc_aq_pvt.send_message ',2);
91: okc_debug.Log('50: x_msg_count : '||x_msg_count,2);
92: okc_debug.Log('50: x_msg_data : '||x_msg_data,2);
93: okc_debug.Log('50: x_return_status : '||x_return_status,2);
94: END IF;
95:
96: -- end activity

Line 93: okc_debug.Log('50: x_return_status : '||x_return_status,2);

89: IF (l_debug = 'Y') THEN
90: okc_debug.Log('50: After Call To okc_aq_pvt.send_message ',2);
91: okc_debug.Log('50: x_msg_count : '||x_msg_count,2);
92: okc_debug.Log('50: x_msg_data : '||x_msg_data,2);
93: okc_debug.Log('50: x_return_status : '||x_return_status,2);
94: END IF;
95:
96: -- end activity
97: OKC_API.END_ACTIVITY ( x_msg_count

Line 101: okc_debug.Log('1000: Leaving ',2);

97: OKC_API.END_ACTIVITY ( x_msg_count
98: , x_msg_data );
99:
100: IF (l_debug = 'Y') THEN
101: okc_debug.Log('1000: Leaving ',2);
102: okc_debug.Reset_Indentation;
103: END IF;
104:
105: EXCEPTION

Line 102: okc_debug.Reset_Indentation;

98: , x_msg_data );
99:
100: IF (l_debug = 'Y') THEN
101: okc_debug.Log('1000: Leaving ',2);
102: okc_debug.Reset_Indentation;
103: END IF;
104:
105: EXCEPTION
106: WHEN OKC_API.G_EXCEPTION_UNEXPECTED_ERROR THEN

Line 116: okc_debug.Log('2000: Leaving ',2);

112: , x_msg_data
113: , '_PUB'
114: );
115: IF (l_debug = 'Y') THEN
116: okc_debug.Log('2000: Leaving ',2);
117: okc_debug.Reset_Indentation;
118: END IF;
119: WHEN OTHERS THEN
120: x_return_status := OKC_API.HANDLE_EXCEPTIONS (

Line 117: okc_debug.Reset_Indentation;

113: , '_PUB'
114: );
115: IF (l_debug = 'Y') THEN
116: okc_debug.Log('2000: Leaving ',2);
117: okc_debug.Reset_Indentation;
118: END IF;
119: WHEN OTHERS THEN
120: x_return_status := OKC_API.HANDLE_EXCEPTIONS (
121: l_api_name

Line 129: okc_debug.Log('3000: Leaving ',2);

125: , x_msg_data
126: , '_PUB'
127: );
128: IF (l_debug = 'Y') THEN
129: okc_debug.Log('3000: Leaving ',2);
130: okc_debug.Reset_Indentation;
131: END IF;
132:
133: END send_message;

Line 130: okc_debug.Reset_Indentation;

126: , '_PUB'
127: );
128: IF (l_debug = 'Y') THEN
129: okc_debug.Log('3000: Leaving ',2);
130: okc_debug.Reset_Indentation;
131: END IF;
132:
133: END send_message;
134: