APEX 4.0.2
Oracle 11.2.0.1.0
Hello,
We are trying to retrieve the XML Schema for a Report Query.
The following code example is working, but the 'xsd' parameter for p_document_format is not documented.
Is 'xsd' a supported parameter value for APEX_UTIL.GET_PRINT_DOCUMENT?
v_blob := APEX_UTIL.GET_PRINT_DOCUMENT (
p_application_id => NV('APP_ID'),
p_report_query_name => 'test',
p_report_layout_name => null,
p_report_layout_type => null,
p_document_format => 'xsd',
p_print_server => null);
Thank you in advance!