DBA Data[Home] [Help]

APPS.XTR_REPLICATE_BANK_BRANCHES_P dependencies on FND_MSG_PUB

Line 58: FND_MSG_PUB.Initialize; -- Initializes the message list that stores the errors

54:
55: BEGIN
56: x_return_status := FND_API.G_RET_STS_SUCCESS;
57: x_msg_count := NULL;
58: FND_MSG_PUB.Initialize; -- Initializes the message list that stores the errors
59:
60: OPEN c_check_branch;
61: FETCH c_check_branch INTO l_check_branch;
62:

Line 78: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

74: ELSE
75: CLOSE c_check_branch;
76: END IF;
77:
78: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
79: ( p_count => x_msg_count ,
80: p_data => x_msg_data
81: );
82: --

Line 87: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

83: EXCEPTION
84: WHEN others THEN
85: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
86: XTR_REPLICATE_BANK_ACCOUNTS_P.LOG_ERR_MSG('XTR_UNEXP_ERROR',SQLERRM(SQLCODE));
87: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
88: ( p_count => x_msg_count ,
89: p_data => x_msg_data
90: );
91: END UPDATE_BANK_BRANCHES;

Line 124: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

120: EXCEPTION
121: WHEN others THEN
122: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
123: XTR_REPLICATE_BANK_ACCOUNTS_P.LOG_ERR_MSG('XTR_UNEXP_ERROR',SQLERRM(SQLCODE));
124: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
125: ( p_count => x_msg_count ,
126: p_data => x_msg_data
127: );
128: END UPDATE_BANK_BRANCHES;

Line 164: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

160: EXCEPTION
161: WHEN others THEN
162: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
163: XTR_REPLICATE_BANK_ACCOUNTS_P.LOG_ERR_MSG('XTR_UNEXP_ERROR',SQLERRM(SQLCODE));
164: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
165: ( p_count => x_msg_count ,
166: p_data => x_msg_data
167: );
168: END UPDATE_BANK_BRANCHES;

Line 200: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

196: EXCEPTION
197: WHEN others THEN
198: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
199: XTR_REPLICATE_BANK_ACCOUNTS_P.LOG_ERR_MSG('XTR_UNEXP_ERROR',SQLERRM(SQLCODE));
200: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
201: ( p_count => x_msg_count ,
202: p_data => x_msg_data
203: );
204: END UPDATE_BANK_BRANCHES;

Line 247: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error

243: EXCEPTION
244: WHEN others THEN
245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
246: XTR_REPLICATE_BANK_ACCOUNTS_P.LOG_ERR_MSG('XTR_UNEXP_ERROR',SQLERRM(SQLCODE));
247: FND_MSG_PUB.Count_And_Get -- Returns the error message if there is only 1 error
248: ( p_count => x_msg_count ,
249: p_data => x_msg_data
250: );
251: END UPDATE_BANK_BRANCHES;