Maximum Size of Dynamic HTML
Hi,
I have used the below mentioned code to create a Dynamic HTML Page for plsql clob attribute ie
PROCEDURE get_html_doc (
p_transaction_id IN NUMBER,
x_document IN OUT NOCOPY CLOB
)
IS
l_proc_name VARCHAR2 (150) := 'get_html_doc';
l_page HTP.htbuf_arr;
l_lines NUMBER DEFAULT 99999999;
l_nm OWA.vc_arr;
l_vl OWA.vc_arr;
l_clob CLOB;
BEGIN
l_nm ( 1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
l_vl ( 1) := 'WHATEVER';
xyz.display_detail
(p_called_from => 'DOC_ATTR_VALUE',
p_transaction_id => p_transaction_id
);
OWA.init_cgi_env (l_nm.COUNT, l_nm, l_vl);
I have used the below mentioned code to create a Dynamic HTML Page for plsql clob attribute ie
PROCEDURE get_html_doc (
p_transaction_id IN NUMBER,
x_document IN OUT NOCOPY CLOB
)
IS
l_proc_name VARCHAR2 (150) := 'get_html_doc';
l_page HTP.htbuf_arr;
l_lines NUMBER DEFAULT 99999999;
l_nm OWA.vc_arr;
l_vl OWA.vc_arr;
l_clob CLOB;
BEGIN
l_nm ( 1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
l_vl ( 1) := 'WHATEVER';
xyz.display_detail
(p_called_from => 'DOC_ATTR_VALUE',
p_transaction_id => p_transaction_id
);
OWA.init_cgi_env (l_nm.COUNT, l_nm, l_vl);
0