DBA Data[Home] [Help]

APPS.POS_LOG dependencies on FND_MSG_PUB

Line 4: -- This procedure returns the combined messages in fnd_msg_pub

1: PACKAGE BODY pos_log AS
2: /*$Header: POSLOGB.pls 120.2 2006/02/20 11:43:06 bitang noship $ */
3:
4: -- This procedure returns the combined messages in fnd_msg_pub
5: PROCEDURE combine_fnd_msg
6: (p_msg_count IN NUMBER,
7: x_msg_data OUT nocopy VARCHAR2
8: )

Line 13: x_msg_data := x_msg_data || ' ' || fnd_msg_pub.get(l_idx);

9: IS
10: l_msg VARCHAR2(4000);
11: BEGIN
12: FOR l_idx IN 1..p_msg_count LOOP
13: x_msg_data := x_msg_data || ' ' || fnd_msg_pub.get(l_idx);
14: END LOOP;
15: END combine_fnd_msg;
16:
17: -- This procedure logs the return status, msg count and msg data.