DBA Data[Home] [Help]

APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on FND_MSG_PUB

Line 82: l_msg_text := FND_MSG_PUB.Get(p_msg_index => G_FIRST,

78: l_aqev_rec.queue_contents := l_msg_clob;
79: l_aqev_rec.retry_count := l_retry_count;
80:
81: --Populate the error messages table
82: l_msg_text := FND_MSG_PUB.Get(p_msg_index => G_FIRST,
83: p_encoded => FND_API.G_FALSE);
84: proc_notfound := instr(l_msg_text,'ORA-06508',1,1);
85: l_aqmv_tbl(1).message_text := SUBSTR(l_msg_text, 1, 1995);
86: l_aqmv_tbl(1).msg_seq_no := 1;

Line 118: l_msg_text := FND_MSG_PUB.Get(p_msg_index => ctr,

114: l_aqev_rec.retry_count := l_retry_count;
115:
116: FOR i IN 1..p_msg_count LOOP
117: ctr := ctr + 1;
118: l_msg_text := FND_MSG_PUB.Get(p_msg_index => ctr,
119: p_encoded => FND_API.G_FALSE);
120: proc_notfound := instr(l_msg_text,'ORA-06508',1,1);
121: l_aqmv_tbl(ctr).message_text := SUBSTR(l_msg_text, 1, 1995);
122: l_aqmv_tbl(ctr).msg_seq_no := ctr;