DBA Data[Home] [Help]

APPS.ASG_DEFER dependencies on FND_MSG_PUB

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

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

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

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