DBA Data[Home] [Help]

APPS.EDR_MSCA_UTIL dependencies on DBMS_LOB

Line 33: x_text_erecord := DBMS_LOB.SUBSTR(l_DOCUMENT.PSIG_DOCUMENT, EDR_CONSTANTS_PUB.G_MAX_INT, 1);

29: --We would be performing the following operations.
30: --If e-record is of type "text" then we attempt to read only 32K of data.
31: --If e-record of any other type, we set the e-record text to a blank value.
32: if(l_DOCUMENT.PSIG_DOCUMENTFORMAT = 'TEXT' OR l_DOCUMENT.PSIG_DOCUMENTFORMAT = 'text/plain') then
33: x_text_erecord := DBMS_LOB.SUBSTR(l_DOCUMENT.PSIG_DOCUMENT, EDR_CONSTANTS_PUB.G_MAX_INT, 1);
34: else
35: x_text_erecord := ' ';
36: end if;
37: