DBA Data[Home] [Help]

APPS.CSI_ITEM_INSTANCE_VLD_PVT dependencies on DBMS_LOB

Line 4936: l_amount := dbms_lob.getlength(msg_rec.body_text);

4932: FOR msg_rec in msg_cur
4933: LOOP
4934:
4935: l_amount := null;
4936: l_amount := dbms_lob.getlength(msg_rec.body_text);
4937: l_msg_text := null;
4938:
4939: dbms_lob.read(
4940: lob_loc => msg_rec.body_text,

Line 4939: dbms_lob.read(

4935: l_amount := null;
4936: l_amount := dbms_lob.getlength(msg_rec.body_text);
4937: l_msg_text := null;
4938:
4939: dbms_lob.read(
4940: lob_loc => msg_rec.body_text,
4941: amount => l_amount,
4942: offset => 1,
4943: buffer => l_msg_text );