Contact Us
Index
Version 20.4
Version 20.3 Version 21.1 Version 25.2
Contact Us
Wands for Oracle Cloud 20.4 – Home
insightsoftware
Installation
Multi Factor Authentication
Insert insightsoftware Function
Combine Text
Last Refreshed By
Last Refreshed Time
Split Text
Tools (insightsoftware)
Common Options
Snapshot
Shared Templates Drive
Edit a File
Open a File
Drive Types
Dropbox
File Server
Oracle Cloud Connector Database
Navigator
Create a File
Delete a File
Administrator
System Administrator Options
System Administrator User Options
System Administrator Delimiter Options
System Administrator Configuration Options
System Administrator Server Information
About
Exit
Help and Shortcuts
Excel Error
GL Wand
Ledger and Segment Selector
Discover
Discover Period Names
Discover Segment Properties
Expand and Explode
Expand Segment Values
Expand Segment Value Hierarchy
Explode Segment Values
Explode Segment Value Hierarchy
Discover Segment Values
Discover Level
List of Values
List of Values – Create
Insert GL Wand Function
Financial Category
Period Name by Date
Period Start Date
Period End Date
Segment Tree
Get Balance
Multiple Ledgers
Get Balance Options
Get Average Balance Summary
Functional Currency
Segment Start Date
Enabled Flag
Ledger Name
Account Type
Segment End Date
Segment Description
Previous Segment Value
Period Offset
Period Name
Parent Flag
Next Segment Value
Ledger Set
Calculating
Execute Drilldown
Analyze Balances
Drill to Journal or Subledger
Drill Using a Saved Template
Drill Criteria Sheets
Drill Criteria – Journal Extract
Drill Criteria – Balance
Customize Drilldown
Edit Template Layout
Save Template Layout
Manage Templates
GL Wand Tools
Other Tools
Create a Template
Template Storage Requirement
Edit a Template
Delete a Template
Hide Zeros
GL Wand User Options
Report Distribution Manager
Create RDM Template
Advanced Options
Email
Drilldowns
Parameters
Source Report
Named Ranges
Edit RDM Template
Execute Report Distribution Manager
Execution
Load and Validation
Scheduler
Running the Scheduler
Create Schedule
RDM User Options
SMTP Email Settings
chat icon - ignore
Live Chat
Chat Offline

Template Storage Requirement

In order to use the Criteria Templates, a custom database object is required to be installed on Oracle E-Business Suite Database. The database table can be created as part of the Oracle for Wands install process on the server. Please use the information below to create the database table should it not have been created as part of the install process.

To create the Criteria Templates database table, execute the following script on your Oracle E-Business Suite database:

The following changes can be made to the script:

  • You can modify the script to change the ownership of the table. If you choose to do so, ensure the APPS database user has SELECT, UPDATE and DELETE privileges on the table and create the required synonym to allow the APPS user to access the table without having to fully qualify the table name using the table owner.
  • The tablespace (APPS_TS_MEDIA) used in the script can be modified to suit your system.

APPS.XXE4A_CRITERIA_TEMPLATES

CREATE TABLE APPS.XXE4A_CRITERIA_TEMPLATES
(
ID VARCHAR2(30 BYTE) NOT NULL ENABLE,
NAME VARCHAR2(2000 BYTE) NOT NULL ENABLE,
DESCRIPTION VARCHAR2(240 BYTE),
OWNER_USER_ID NUMBER(15,0) NOT NULL ENABLE,
TEMPLATE_TYPE VARCHAR2(50 BYTE) NOT NULL ENABLE,
CRITERIA_VALUE VARCHAR2(4000 BYTE) NOT NULL ENABLE,
PUBLIC_FLAG VARCHAR2(1 BYTE) NOT NULL ENABLE,
CREATION_DATE DATE NOT NULL ENABLE,
LAST_UPDATE_DATE DATE NOT NULL ENABLE,
LAST_UPDATED_BY NUMBER(15,0) NOT NULL ENABLE,
CONSTRAINT XXE4A_CRITERIA_TEMPLATES_PK PRIMARY KEY (ID)
)
LOGGING
TABLESPACE APPS_TS_MEDIA
PCTFREE 10
INITRANS 10
STORAGE
(
INITIAL 131072
NEXT 131072
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
);
/

Ensure you maintain sufficient free space in the selected Tablespace.