MWO Signature Clob>Blob more that 32767k - not showing in Crytal reports Hi All. Is there any solution for signatures from MWO (Aurena Natives - MaintEngApp), that are more then 32767k Clob field (since they are stored in Clob “Picture _Data”)? In data base shows OK or partial. But After convert to Blob, it does not show in crystal reports. Signatures under 32767k works well. Tks a lot for help FUNCTION Convert_Base64_Clob_To_Blob( clob_value_ IN CLOB) RETURN BLOBIS blob_value_ BLOB; raw_ RAW(32767); buffer_ PLS_INTEGER := 32767; start_ PLS_INTEGER := 1;BEGIN DBMS_LOB.createtemporary (blob_value_, FALSE, DBMS_LOB.CALL); FOR i IN 1..CEIL(DBMS_LOB.GETLENGTH(clob_value_) / buffer_) LOOP raw_ := UTL_ENCODE.base64_decode(UTL_RAW.cast_to_raw(DBMS_LOB.SUBSTR(clob_value_, buffer_, start_))); DBMS_LOB.append (blob_value_, TO_BLOB(raw_)); start_ := start_ + buffer_; END LOOP; RETURN blob_value_;END Convert_Base64_Clob_To_Blob; ========================================================= PROCEDURE Convert_Blob_To_Base64( clob_result_ IN OUT NOCOPY CLOB, blob_val_ IN BLOB