The saveAs element is a member of the following categories:
Namespace -- http://xmlns.oracle.com/bibeans
Group -- BI uiXML elements
Type of element -- Rendering component
Use the saveAs element to render an instance of Save As dialog that provides options for saving a thin presentation bean to the BI Beans Catalog.
biSaveAs -- (Required) A data-bound attribute that binds to a Save As dialog. Specify the select key for the Save As dialog that you want to render.
Note: The remaining attributes are not used.
The page that contains the Save As dialog should also contain Apply and Cancel buttons or links that you define as submitEventDef elements.
The following example shows an XML fragment that renders a saveAs element in the UI tree section of a page using the following assumptions:
Identifier of the saveAsDef element: "saveAs1"
Identifier of the page that contains the saveAsDef element: "page3"
Identifier of the biThinSession element in which the saveAsDef element is defined: "bisession1"
Identifier of the submitEventDef element for the Apply button: "applyBtn"
Identifier of the submitEventDef element for the Cancel button: "cancelBtn"
<!-- Display the BI SaveAs dialog -->
<bibeans:saveAs data:biSaveAs="page3_saveAs1@bibeans:bisession1" />
<!-- Display a UIX Apply button -->
<button text="Save"
data:onClick="page3_applyBtn@bibeans:bisession1" /> <!-- Display a UIX Cancel button -->
<button textAndAccessKey="Cance&l"
data:onClick="page3_cancelBtn@bibeans:bisession1" />