Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Get XSD from Report Query

432130Nov 2 2011 — edited Nov 3 2011
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!
This post has been answered by Marc Sewtz-Oracle on Nov 3 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 1 2011
Added on Nov 2 2011
4 comments
291 views