DBA Data[Home] [Help]

APPS.ASG_DEFER dependencies on FND_MSG_PUB

Line 123: FOR j in 1 .. fnd_msg_pub.count_msg LOOP

119: IF (p_error_msg = FND_API.G_MISS_CHAR) OR
120: (p_error_msg IS NULL) THEN
121: l_error_msg := 'Error Msg: ';
122:
123: FOR j in 1 .. fnd_msg_pub.count_msg LOOP
124: fnd_msg_pub.get(j, FND_API.G_FALSE, l_msg_data, l_msg_dummy);
125: l_errmsg_length := length(l_error_msg);
126: l_msg_length := l_errmsg_length + length(l_msg_data);
127: IF l_msg_length < 4000 THEN

Line 124: fnd_msg_pub.get(j, FND_API.G_FALSE, l_msg_data, l_msg_dummy);

120: (p_error_msg IS NULL) THEN
121: l_error_msg := 'Error Msg: ';
122:
123: FOR j in 1 .. fnd_msg_pub.count_msg LOOP
124: fnd_msg_pub.get(j, FND_API.G_FALSE, l_msg_data, l_msg_dummy);
125: l_errmsg_length := length(l_error_msg);
126: l_msg_length := l_errmsg_length + length(l_msg_data);
127: IF l_msg_length < 4000 THEN
128: l_error_msg := l_error_msg || l_msg_data;