DBA Data[Home] [Help]

APPS.PSA_MULTIFUND_DISTRIBUTION_EXT dependencies on FND_API

Line 24: (p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

20: -- p_doc_id : Document ID (customer_trx_id) for which multi-fund distributions are to be created.
21:
22:
23: FUNCTION CREATE_DISTRIBUTIONS_PUB
24: (p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
25: x_return_status OUT NOCOPY VARCHAR2,
26: x_msg_count OUT NOCOPY NUMBER,
27: x_msg_data OUT NOCOPY VARCHAR2,
28: p_sob_id IN NUMBER,

Line 44: IF FND_API.to_Boolean( p_init_msg_list ) THEN

40: BEGIN
41:
42:
43: -- Initialize message list if p_init_msg_list is set to TRUE.
44: IF FND_API.to_Boolean( p_init_msg_list ) THEN
45: FND_MSG_PUB.initialize;
46: END IF;
47:
48: -- Initialize API return status to success

Line 49: x_return_status := FND_API.G_RET_STS_SUCCESS;

45: FND_MSG_PUB.initialize;
46: END IF;
47:
48: -- Initialize API return status to success
49: x_return_status := FND_API.G_RET_STS_SUCCESS;
50:
51: /*
52: If Activity is (T)ransaction, Multifund Transaction, Cash Receipts and Adjustments will be processed
53: If Activity is (M)iscellanous Receipt, Misc. receipts will be processed

Line 69: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

65: run_num => l_run_num,
66: p_error_message => l_error_mesg,
67: p_report_only => p_report_only
68: ) THEN
69: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
70: END IF;
71:
72: -- Standard call to get message count and if count is 1, get message info.
73: FND_MSG_PUB.Count_And_Get

Line 84: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

80: -- Bug 3837120 .. Commented out COMMIT
81: -- COMMIT;
82:
83: EXCEPTION
84: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
85: ROLLBACK;
86: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
87: FND_MSG_PUB.Count_And_Get
88: (p_count => x_msg_count ,

Line 86: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

82:
83: EXCEPTION
84: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
85: ROLLBACK;
86: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
87: FND_MSG_PUB.Count_And_Get
88: (p_count => x_msg_count ,
89: p_data => x_msg_data );
90: x_msg_data := x_msg_data||l_error_mesg;

Line 94: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

90: x_msg_data := x_msg_data||l_error_mesg;
91:
92: WHEN OTHERS THEN
93: ROLLBACK;
94: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
95: FND_MSG_PUB.Count_And_Get
96: (p_count => x_msg_count ,
97: p_data => x_msg_data );
98: x_msg_data := x_msg_data||l_error_mesg;