DBA Data[Home] [Help]

APPS.AR_CC_REFUNDS dependencies on FND_MSG_PUB

Line 22: v_error := fnd_msg_pub.get(i);

18:
19:
20: /*
21: FOR i in 1..p_msg_count loop
22: v_error := fnd_msg_pub.get(i);
23: v_error_description := v_error_description || ':' || v_error;
24: END LOOP;
25: */
26:

Line 29: IF (FND_MSG_PUB.Count_Msg > 1) then

25: */
26:
27: IF p_vend_err_mesg IS NULL THEN
28: IF p_return_status <> FND_API.G_RET_STS_SUCCESS then
29: IF (FND_MSG_PUB.Count_Msg > 1) then
30: -- More than one error message
31: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
32: FND_MSG_PUB.Get(
33: p_msg_index=>j,

Line 31: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP

27: IF p_vend_err_mesg IS NULL THEN
28: IF p_return_status <> FND_API.G_RET_STS_SUCCESS then
29: IF (FND_MSG_PUB.Count_Msg > 1) then
30: -- More than one error message
31: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
32: FND_MSG_PUB.Get(
33: p_msg_index=>j,
34: p_encoded=>'F',
35: p_data=>v_msg_data,

Line 32: FND_MSG_PUB.Get(

28: IF p_return_status <> FND_API.G_RET_STS_SUCCESS then
29: IF (FND_MSG_PUB.Count_Msg > 1) then
30: -- More than one error message
31: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
32: FND_MSG_PUB.Get(
33: p_msg_index=>j,
34: p_encoded=>'F',
35: p_data=>v_msg_data,
36: p_msg_index_out=>v_msg_index_out);

Line 41: FND_MSG_PUB.Get(

37: v_error_description := v_error_description || ':' || v_msg_data;
38: END LOOP;
39: ELSE
40: -- Only one error message
41: FND_MSG_PUB.Get(
42: p_msg_index=>1,
43: p_encoded=>'F',
44: p_data=>v_msg_data,
45: p_msg_index_out=>v_msg_index_out);