DBA Data[Home] [Help]

APPS.PA_STATUS_LISTS_PUB dependencies on PA_DEBUG

Line 35: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Insert_Row');

31:
32: BEGIN
33:
34: -- Initialize the Error Stack
35: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Insert_Row');
36: x_msg_count := 0;
37: x_msg_data := NULL;
38:
39: -- Initialize the return status to success

Line 61: PA_DEBUG.reset_err_stack;

57: X_MSG_COUNT => X_MSG_COUNT,
58: X_MSG_DATA => X_MSG_DATA
59: );
60: -- Reset the Error Stack
61: PA_DEBUG.reset_err_stack;
62:
63: EXCEPTION
64: WHEN OTHERS THEN
65: x_msg_count := 1;

Line 70: , p_procedure_name => PA_DEBUG.G_Err_Stack

66: x_msg_data := substr(SQLERRM,1,240);
67: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
68: FND_MSG_PUB.add_exc_msg
69: (p_pkg_name => 'PA_STATUS_LISTS_PUB'
70: , p_procedure_name => PA_DEBUG.G_Err_Stack
71: , p_error_text => substr(SQLERRM,1,240));
72: RETURN;
73:
74: END CreateStatusList;

Line 106: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Update_Row');

102:
103: BEGIN
104:
105: -- Initialize the Error Stack
106: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Update_Row');
107: x_msg_count := 0;
108: x_msg_data := NULL;
109:
110: -- Initialize the return status to success

Line 131: PA_DEBUG.reset_err_stack;

127: X_MSG_DATA => X_MSG_DATA
128: );
129:
130: -- Reset the Error Stack
131: PA_DEBUG.reset_err_stack;
132:
133: EXCEPTION
134: WHEN OTHERS THEN
135: x_msg_count := 1;

Line 140: , p_procedure_name => PA_DEBUG.G_Err_Stack

136: x_msg_data := substr(SQLERRM,1,240);
137: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
138: FND_MSG_PUB.add_exc_msg
139: (p_pkg_name => 'PA_STATUS_LISTS_PUB'
140: , p_procedure_name => PA_DEBUG.G_Err_Stack
141: , p_error_text => substr(SQLERRM,1,240));
142: RETURN;
143:
144: END UpdateStatusList;

Line 172: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Delete_Row');

168: BEGIN
169:
170:
171: -- Initialize the Error Stack
172: PA_DEBUG.init_err_stack('PA_STATUS_LISTS_PUB.Delete_Row');
173: x_msg_count := 0;
174: x_msg_data := NULL;
175:
176: -- Initialize the return status to success

Line 190: PA_DEBUG.reset_err_stack;

186: X_MSG_DATA => X_MSG_DATA
187: );
188:
189: -- Reset the Error Stack
190: PA_DEBUG.reset_err_stack;
191:
192: EXCEPTION
193: WHEN OTHERS THEN
194: x_msg_count := 1;

Line 199: , p_procedure_name => PA_DEBUG.G_Err_Stack

195: x_msg_data := substr(SQLERRM,1,240);
196: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
197: FND_MSG_PUB.add_exc_msg
198: (p_pkg_name => 'PA_STATUS_LISTS_PUB'
199: , p_procedure_name => PA_DEBUG.G_Err_Stack
200: , p_error_text => substr(SQLERRM,1,240));
201: RETURN;
202:
203: END DeleteStatusList;