The saveConfirmationDef element is a member of the following categories:
Namespace -- http://xmlns.oracle.com/bibeans
Group -- BI uiXML elements
Type of element -- Definition
Use the saveConfirmationDef element to define a Save Confirmation dialog, which prompts users to verify a save operation for a thin presentation.
id -- (Required) A unique identifier for this element.
scope -- Determines the accessibility and lifetime of the object; select one of the following values: Request or Session (Default). You must use the default value if you want to be able to refer to this element from a different page in your application.
The saveConfirmationDef element is a child of the biThinSession element.
To render the Save Confirmation dialog that is defined by this element, use the saveConfirmation element.
Use the submitEventDef element to define Apply and Cancel buttons (or Yes and No buttons) or links in the page that contains the Save Confirmation dialog. The following list identifies the associated events:
Apply button or link -- Associate with the
bi_save
event
bi_cancel
eventThe following XML fragment provides an example of the definition of the biThinSession element for a Save Confirmation dialog page.
<!-- Sample XML to define a SaveConfirmation dialog page -->
<bibeans:biThinSession id="bisession1"
biConfiguration="/Project1BIConfig1.xml" >
<!-- Defining the saveConfirmationDef element -->
<bibeans:saveConfirmationDef id ="saveConf1" />
<!-- Defining the save button -->
<bibeans:submitEventDef id="applySaveConfirmBtn"
sourceId="saveConf1"
sourceEventName="bi_save" />
<!-- Defining the cancel button -->
<bibeans:submitEventDef id="cancelBtn"
sourceId="saveConf1"
sourceEventName="bi_cancel" />
</bibeans:biThinSession>