AWM: Enable Analytic Workspace for OLAP API

Hi,
I created an analytic workspace with Analytic Workspace Manager which is based on a relational star-schema.
Now I want to access this analytical workspace by normal SQL-Statements. For this I executed in AWM the 'Enable Analytic Workspace for OLAP API and BI Beans ...' routine which generated views that contain the fact and dimension data.
My problem is that these views are very huge, because they
apparently store all possible combintations of dimension- and fact records. Most of the records contain only NULL values in the fact columns. I also used Composite Dimensions for the fact table in order to reduce sparsity.
Is it normal to have such huge views with mostly NULL values? If yes, how can I handle this in order to get an acceptable performance.
Here an example of a small fact table I use:
A fact table with 5400 records with its two dimension tables (1129 and 233 rows, no hierarchies) produces 263057 rows in the view.
Thanks for any help.

Hi,
First of all, thanks for the quick response flavio.
Meanwhile I have found a solution to my problem:
I don't use the 'Enable Analytic Workspace for OLAP API and BI Beans ...' routine of AWM anymore. Instead, I write my own statement for creating a relational view for the analytical workspace. The statement looks like following:
create or replace force view costrate_cube as
SELECT producttype_number, producttype_description, machine_sk, notok_costrate, production_costrate
FROM TABLE(CAST(OLAP_TABLE(
'costrate_aw DURATION SESSION',
'costrate_table',
'FETCH producttype_dim_producttype_number,
producttype_dim_producttype_description,
produnit_dim_machine_sk, produnit_dim_module_sk,
notok_costrate_variable, production_costrate_variable
USING <costrate_cube_composite>','') as costrate_table));
The important part is the USING clause of the FETCH command. By using the composite of all dimensions of the cube, rows containing only null values in the fact columns are being eliminated. Now I get only the rows which are in my original relational fact table (which is what I wanted).
Werner

Similar Messages

  • Error while enabling dimension for OLAP API and BI Beans

    Hi, I've created some dimensions in OLAP Catalog using CWM2 packages. These dimensions have only one hierarchy and one or two levels.
    I also have an Analytic Workspace, and I've created these dimensions in this A.W. using CREATE_AWDIMENSION method from DBMS_AWM package.
    Everything ok at this point.
    Next, I've tried to enable these aw dimensions for the OLAP Api and BI Beans, using CREATE_AWDIMENSION_ACCESS_FULL/CREATE_AWDIMENSION_access methods from DBMS_AWM. Strangely, dimensions whith two levels are enabled ok, but dimensions with only one level can't be enabled. If I use CREATE_AWDIMENSION_ACCESS and I execute generated script, an error appears when trying VALIDATE_DIMENSION, with a text like this:
    .ENTITY TYPE ENTITY NAME STATUS COMMENT
    . Dimension AW1.DIM1      INVALID ERROR: Component entity.
    - Default Display Hierarchy: "J0".
    . Hierarchy J0 INVALID ERROR: Hierarchy Top Level not found.
    My database ir 9.2.0.6. What is failing ? Some idea ? Thanks by your help.

    Not sure if it's valid to have a dimension with 1 hierarchy and 1 level in that hierarchy. The hierarchy may have to have at least 2 levels. If you want the configuration of a dimension with 1 hierarchy and 1 level, CWM2 may want you to omit the hierarchy, thus creating the dimension with only 1 level.

  • Analytical workspace for Oracle10g to use OLAP

    hi
    i have downloaded Oracle10g Release 2 from oracel website. i couldn find Analytical Workspace with this installation.
    what should i do to work with AW manager.
    very urgent please
    rgds
    karthi

    Check this link
    http://www.oracle.com/technology/products/bi/olap/index.html
    Also go through this note on metalink Note:352598.1

  • AWM-Importing Analytical workspace thru XML

    Need help in Oracle:AWM
    I have been trying to load XML file to import the Analytical work space with DML statements.
    I am not able to import AWS on server.It gives following error
    Success <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    ORA-34684: All of your attached analytic workspaces are read-only.
    Following is the code got from oracle site:
    CREATE OR REPLACE PROCEDURE LOAD_AWM (DIR_NAME VARCHAR, XML_NAME VARCHAR) AS
    clb CLOB;
    infile BFILE;
    dname varchar2(500);
    sql_text varchar2(200);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('started');
    -- Create a temporary clob
    DBMS_LOB.CREATETEMPORARY(clb, TRUE,10);
    -- Create a BFILE use BFILENAME function
    infile := BFILENAME(DIR_NAME,XML_NAME);
    -- Open the BFILE
    DBMS_LOB.fileopen(infile, dbms_lob.file_readonly);
    DBMS_OUTPUT.PUT_LINE('File open...');
    -- Load temporary clob from the BFILE
    DBMS_LOB.LOADFROMFILE(clb,infile,DBMS_LOB.LOBMAXSIZE, 1, 1);
    DBMS_OUTPUT.PUT_LINE('File load');
    -- Close the BFILE
    DBMS_LOB.fileclose(infile);
    DBMS_OUTPUT.PUT_LINE('File close');
    -- Create the GLOBAL analytic workspace
    DBMS_OUTPUT.PUT_LINE(DBMS_AW_XML.execute(clb));
    DBMS_AW.AW_UPDATE;
    DBMS_OUTPUT.PUT_LINE('Awm Update.');
    COMMIT;
    -- Free the Temporary Clob
    DBMS_LOB.FREETEMPORARY(clb);
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END;
    There is no other instance open for which it can throw read-only error.
    The XML file is kept in folder on UNIX server which has permissions as drwxrwxr-x
    Please help in this issue.

    Hi,
    iam trying to install oracle 8i in fedora 4 with kernel version 2.6.11 and glibc-2.3.6-3
    when iam trying to run ./runinstaller it is giving the following error.
    And i want to know whether oracle 8i is supported on fedora 4. Plse tell me what all the linux flavours are supported for oracle 8i and also it is compatable for php4 or php5.
    as we are trying to use php with oracle 8i database...!
    ######## error:
    [oracle@localhost linux]$ ./runInstaller
    Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    Exception java.lang.NullPointerException occurred..
    java.lang.NullPointerException
    at sun.awt.motif.MComponentPeer.setFont(MComponentPeer.java:192)
    at sun.awt.motif.MFramePeer.<init>(MFramePeer.java:68)
    at sun.awt.motif.MToolkit.createFrame(MToolkit.java:137)
    at java.awt.Frame.addNotify(Frame.java:196)
    at java.awt.Window.show(Window.java:138)
    at java.awt.Component.show(Component.java:528)
    at java.awt.Component.setVisible(Component.java:490)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:419)
    Plse help me...!
    Thanks in advance..

  • XML Sax Exception with 9.2.0.5 express*.jar files for Olap API

    I was using the olap_api_92.jar that
    came with jdeveloper for the olap api and having a coding problem.. In trying to see
    if I could resolve the previous problem, I set my classpath to use the jar files provided with the 9.2.0.5
    install for AiX.. all beginning with express*.jar
    I now get an XML parsing error that I can't fix..
    which jar is good, the olap_api_92.jar seems to work..
    Help!
    thanks,
    Lisa Cox
    OCLC Inc.
    java.lang.RuntimeException: org.xml.sax.SAXParseException: <Line 179, Column 18>: XML-0124: (Fatal Error) An attribute cannot appear more than once in the same start tag.
    at oracle.olapi.metadata.MetadataFetcher.processXML(MetadataFetcher.java:237)
    at oracle.olapi.metadata.MetadataFetcher.fetchBaseMetadataObjects(MetadataFetcher.java:180)
    at oracle.olapi.metadata.BaseMetadataProvider.fetchMetadataObject(BaseMetadataProvider.java:150)
    at oracle.olapi.metadata.BaseMetadataProvider.fetchMetadataObject(BaseMetadataProvider.java:107)
    at oracle.olapi.metadata.mdm.MdmMetadataProvider.getMetadataObject(MdmMetadataProvider.java:147)
    at oracle.olapi.metadata.mdm.MdmMetadataProvider.getRootSchema(MdmMetadataProvider.java:174)
    at oracle.express.mdm.MdmMetadataProvider.getRootSchema(MdmMetadataProvider.java:144)
    at org.oclc.xwc.olap.OlapClient.main(OlapClient.java:494)

    The OLAP component versions are empty.
    <Check key="OLAP Catalog version" value=""/>
    <Check key="OLAP AW Engine version" value=""/>
    <Check key="OLAP API Server version" value=""/>
    Please doublecheck that the catpatch.sql script ran without any errors.
    Aneel Shenker
    Senior Product Manager
    Oracle Corp.

  • Enable  @Prompt function for OLAP Univesre

    Hi,
              I have created an universe on the top of BW Queries. I have written a Prompt at Where class to   "Choose a measure among the  different measures available in an SAP Netweaver cube" using @Prompt function.
    [Measures].[0D_@prompt('Measure','N',{'COST','
    NETVLINV',u2019TAXAMOUNu2019},mono,constrained)]
    But this is not working. Help me to get through this.
    Regards,
    Malini.V

    Hi,
    Now the prompt function is working.  I have followed this document [OLAP universes|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0a45246-ce76-2b10-e688-f5c8206203eb]. The link  [Web Intelligence and ODA traces|https://portal.wdf.sap.corp/irj/go/km/docs/room_project/cm_stores/documents/workspaces/d12fcc58-c27e-2b10-d8bd-9e423764202b/web%20intelligence%20and%20oda%20traces.zip] is not opening. How to activate ODA Traces?
    Regards,
    Malini.V

  • Creating Database Standard Form Analytic Workspaces

    Just been looking through the new 9.2.0.4.1 documentation and came across the following. Thought it might be useful.
    The 9.2.0.4.1 release of Oracle OLAP introduces a new concept known as �Database Standard Form� Analytic Workspaces. This is a way of constructing analytic workspaces in a standard way such that they can be used by tools such as the Analytic Workspace Manager, the Java OLAP API, and BI Beans.
    When analytic workspaces are created from a relational star-schema using the Analytic Workspace Manager, it automatically creates the analytic workspace in standard form as part of the migration process. However, if you�re migrating an Express database to Oracle OLAP, the migrated database has to be processed to be in standard form before it is usable by any of the new Oracle OLAP GUI tools.
    If you create an analytic workspace using PL/SQL or the OLAP Worksheet, of course you can create dimensions, variables, relations and so on in any form, just as you can create table structures, joins, views and columns in any form in a relational database. However, the database standard form requirement stipulates that;
    Certain objects and properties need to be found in the analytic workspace, that are used by tools such as the Analytic Workspace Manager to perform tasks such as aggregation, data loads, and OLAP API enablement. OLAP DML views (beginning with AW$) need to created in the analytic workspace, to provide metadata and to identify relationships between objects in the analytic workspace. Objects need to be registered in the OLAP Catalog, and these registrations have to be kept in sync so that the OLAP tools are aware of changes to the base objects. Data that is migrated in to an analytic workspace, from a relational star-schema using the Analytic Workspace Manager, is already in database standard form and no further work is needed. However, some work is needed to get migrated Express databases into standard form, and Oracle have provided a utility with the 9.2.0.4.1 release of Oracle OLAP to help accomplish this.
    This utility, known as CREATE_DB_STDFORM, is an OLAP DML program that takes existing Oracle Express Objects metadata in a migrated Express database, and uses this to create the additional metadata required to make the analytic workspace �database standard form�.
    Once CREATE_DB_STDFORM has been used to create this additional metadata, it can also be used to import data into the workspace either from flat files, or from Oracle tables and views. If you don�t have Express Objects metadata in the Express database, CREATE_DB_STDFORM doesn�t work, and you�ll have to use Oracle Warehouse Builder 9.2 to initially create a relational star-schema that equates to the Express database, then use the OLAP Bridge within OWB to export the data into a database standard form analytic workspace.
    CREATE_DB_STDFORM, once run, allows the migrated Express database to be accessed via BI Beans straight afterwards, as it creates all the OLAP Catalog entries required for the OLAP API. If the Express database only contains data at the lowest level (i.e. it hasn�t been rolled up), aggregation wizards in the Analytic Workspace Manager can be used to summarise the data as required.
    CREATE_DB_STDFORM doesn�t do everything, however. First of all, you need to have created Oracle Express Objects metadata within the Express database, which is an additional step and not always appropriate for all systems. In addition, you need to create time dimensions in a particular way, which may require the data model to be adjusted to meet this requirement. Lastly, any Express language programs within the Express database may need to be adjusted to remove or change commands that have changed or become obsolete.
    The new document, �Oracle OLAP Application Developers Guide Release 9.2.0.4.1�, available on metalink under note 251352.1, details how database standard form works, has code examples, and walks through the migration of the XADEMO Express database to an analytic workspace using database standard form.

    In your message, you wrote "Certain objects and properties need to be found ... aware of changes to base objects". A large bit is represented by "...". Question is whether I have any commands or package functions that I can use to set up all the proper objects and relationships to make it have database standard form, short of regressing to a ROLAP star schema and usnig the AWM wizard. I have what appears to be working MOLAP activity, all created at the OLAP worksheet prompt, and loaded with DML program. Do I really have to put that all aside and start with a star schema? No way to put my AW in standard form for OLAP API without this?

  • Which Analytic Workspace Manager version should I use?

    hi
    Right now I am using DB 9.2.0.8 with OLAP Analytic Workspace and OLAP Catalog. Then which version of AWM should I use if I would like to create some demo cube on the instance?
    this one?
    http://otn.oracle.com/software/htdocs/devlic.html?http://download.oracle.com/otn/java/olap/awm920.zip
    Thanks,
    Scott

    I recommend you check out Werner Puschitz's site, as it's the best source of information for installing Oracle on Redhat.
    Cheers, APC

  • How can I query analytical workspace ?

    Hello,
    I am using EBS module ODP which uses Analytical workspaces.
    I do not know at all technical subject about Analytical workspaces and OLAP.
    In ODP , I create measures. And ODP provides some report to display and update data stored in my measures.
    I would like to extract data from my measures. How can I do this ?
    => How can I find the internal measure name, the measure column or attribute ...
    => Are there functions to extract the data (like sql language to read in tables )
    => Can anyone give me some commands, and examples to start extracting simple data from my measures(I have had a look to Oracle documentation, but they are very technical and I don't know how to start).

    There are views available in OLAPSYS schema which will give information about the Analytical workspaces and their objects.
    For extracting data from Analytic workspaces you may use the TABLE FUNCTIONS.
    You may refer 'B14346-01 - Oracle OLAP DML Reference 10g Release 2 (10.2)' for details.
    Regards,
    Maruthi

  • Analytic Workspace enablement for Discoverer failed

    Happy New Year All.
    I created the AW using AWM 9.2.0.4.1D.
    While I was tring to enable the AW for discoverer I got the following error message..
    The following error occurred while exporting to Discoverer.
    dataprovider error initializing the AW
    Did anybody get the simillar message.. do you know what might be wrong?

    This could be caused by picking up the wrong oraolapi9 library. If you can't readily reconcile the library versions, please open a TAR.
    --Sharon

  • Where to find Analytic Workspace Manager for Oracle9i?

    Hi,
    I am looking for Analytic Workspace Manager for Oracle 9i. Could someone point me to the place it can be downloaded? On Oracle OTN there are only versions 10g and 11g. I couldn't find it on Metalink either.
    Why I need so old version? We are about to upgrade our existing installation from 9i and I need it to see what's inside in our Oracle 9i database (9.2.0.6) before going into 10g.
    Or maybe it is possible to use AWM 10g against database 9i? This would solve my problems.
    Is it possible to upgrade analytic workspaces from oracle 9i into 10g with analytic workspace manager 10g?
    Best wishes
    Tomasz Michniewski

    Hello Laura,
    Well, I was looking for this 9i version of AWM, and I was even thinking that AWM does not exist for 9i. Especially that in 9i documentation AWM is not mentioned.
    But in the meantime I have found some install from some our backup cd-rom. It says:
    # Analytic Workspace Manager : 9.2.0.4.1
    # DATE: September 26, 2003
    # Platform Patch for : platform independent
    # Product Version # : 9.2.0.4.1
    # Product : Analytic Workspace Manager
    # Platforms
    # Analytic Workspace Manager uses a platform independent install and
    # has been approved on the following platforms:
    # - Windows NT 4.0, 2000 & XP
    # - Solaris 32 & 64-bit
    # - Linux 32-bit
    # - AIX 64-bit
    # - HP-UX 64-bit
    # - Tru64
    # Requirements
    # The Analytic Workspace Manager client requires the following Oracle9i
    # Database configuration:
    # - Oracle 9.2.0.1.0 Enterprise Edition Database
    # - RDBMS 9.2.0.4.0 patch set (PS# 3095277)
    # - OLAP 9.2.0.4.1 patch (PS# 3084634)
    So is it the AWM for 9i?
    Best wishes,
    Tomasz Michniewski

  • OLAP Analytic Workspace Manager and Worksheet

    Hi,
    I have installed a datawarehouse and OLAP 10gR2 on a WinXP but in the Start menu.
    - Oracle_home, in Integrated Management Tools, I do not haveOLAP Analytic
    Workspace Manager and Worksheet.
    What is the problem ? What more should I install ?
    Many thanks for your help.

    Hi,
    What more should I install ?Did you do the OLAP catalog (dbms_olap)?
    http://www.oracle.com/technology/products/bi/samples/samples_readme.html
    Check the install docs for full instructions, and don't forget to pay your $20,000.00 license fee first:
    http://oraclestore.oracle.com/OA_HTML/ibeCCtpSctDspRte.jsp?section=11222
    http://searchoracle.techtarget.com/tip/0,289483,sid41_gci1024826,00.html?topic=299433
    Another option is Excel-DB, an easier (and less expensive) way to Oracle-enable spreadsheets:
    http://www.excel-db.net/menu_overview.htm

  • ORA-37118: The OLAP API library was not preloaded. -AWM

    ...is what I get when trying to create an analytical workspace with Analytical Workspace Manager.
    The actual error message is as follows:
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-37118: The OLAP API library was not preloaded.
    ORA-06512: at "SYS.CONNECTIONINTERFACE", line 29
    ORA-06512: at line 1
    AWM version is 10.2.0.2.0A
    DB version is 10g 10.2.0 - (installation type is CUSTOM-FULL)
    Anyone?

    I'm not sure if this is relevent, but I observed "emoms.log" and the following appears during 10g startup:
    2006-09-10 22:01:45,961 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ias.ias.IASIntegration
    2006-09-10 22:01:46,722 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.eml.target.slb.common.SLBIntegration
    2006-09-10 22:01:47,162 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.eml.ssl.intg.SSLIntegration
    2006-09-10 22:01:47,443 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.tip.oem.central.domain.ProcessConnectDomainIntg
    2006-09-10 22:01:47,443 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2006-09-10 22:01:47,473 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2006-09-10 22:01:47,483 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2006-09-10 22:01:47,483 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.reports.em.RepIntg
    2006-09-10 22:01:47,483 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2006-09-10 22:01:47,483 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2006-09-10 22:01:47,493 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2006-09-10 22:01:47,503 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2006-09-10 22:01:47,503 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2006-09-10 22:01:47,503 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.271 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration

  • Error trying to Analytic Workspace using latest version AWM 10.1.0.4

    Windows XP Professional
    Oracle 10g with latest patch 4163362 (10.1.0.4)
    Installed AWM 10.1.0.4
    Installed GLOBAL schema
    Started AWM 10.1.0.4
    Connected to Database,everything fine
    Expanded Schema Folder, navigated to GLOBAL schema
    Right mouse click, selected "Created Analytical Workspace"
    The following error is encountered
    oracle.express.idl.util.OlapiException: ORA-04043: object "SYS"."GENRAWSEQUENCE" does not exist

    Please refer to the patchnote.htm that is bundled with 10.1.0.4.0 patch set. Only you are aware of what type of database configuration you have. You will want to pay close attention to "7.2.1.3 Set the SHARED_POOL_SIZE and JAVA_POOL_SIZE Initialization Parameters" and "7.2.2 Upgrade the Release 10.1 Database".
    Basically, I believe you have missed these required steps after installing the 10.1.0.4.0 patch set from the OUI:
    (pasted from the patchnote.htm)
    13.     Enter the following SQL*Plus commands:
    14.     SQL> STARTUP UPGRADE
    15.     SQL> SPOOL patch.log
    16.     SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\catpatch.sql
    17.     SQL> SPOOL OFF
    18.     
    19.     Review the patch.log file for errors and inspect the list of components that is displayed at the end of catpatch.sql script.
    This list provides the version and status of each SERVER component in the database.
    20.     If necessary, rerun the catpatch.sql script after correcting any problems.
    21.     Restart the database:
    22.     SQL> SHUTDOWN
    23.     SQL> STARTUP
    24.     
    25.     Run the utlrp.sql script to recompile all invalid PL/SQL packages now instead of when the packages are accessed for the first time. This step is optional but recommended.
    26.     SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\utlrp.sql

  • OLAP Analytic Workspace Manager/Worksheet in Oracle 11g...

    Hi,
    In Oracle Client 10g .v2 the product OLAP Analytic Workspace Manager/Worksheet is included and installed.
    However , it is not in Oracle 11g - the Oracle client of this version is included -
    http://www.oracle.com/technology/software/index.html
    Download page includes:
       - Client
       - Clusterware
       - Examples
       - GatewaysWill it be included in a seperate product Oracle11g Client...or else???
    Does anybody know about this....???
    Thanks...
    Sim

    AWM is now installed via the database Client CD, which was the case for 10g as well.
    Keith Laker
    Oracle EMEA Consulting
    OLAP Blog: http://oracleOLAP.blogspot.com/
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    DM Blog: http://oracledmt.blogspot.com/
    OWB Blog : http://blogs.oracle.com/warehousebuilder/
    OWB Wiki : http://wiki.oracle.com/page/Oracle+Warehouse+Builder
    DW on OTN : http://www.oracle.com/technology/products/bi/db/11g/index.html

Maybe you are looking for

  • Macbook pro as a server

    Is a Macbook pro good for hosting a website?

  • PSE8/PRE8 device error when burning DVD

    When trying to burn a DVD using PSE8 and PRE8 in Vista Home Premium 64 bit, and now in Windows 7 Home Premium 64 bit, PRE8 stops at 96% burn and gives me "Device error - the target device isn't suitable for use."  The DVD will run on the computer and

  • RTF Report output shows Duplicate or Missing lines

    Hi, We have a program which prints XML output into the concurrent program output file and the output for this file is set to PDF attached to an RTF template. The RTF output generated should ideally have the output in the following manner Header 1 - L

  • Missing icons in hotmail rich text toolbar

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/895602'' the icon for text highlighting does not appear in the rich text toolbar in hotmail. it does display in IE8. why has it dissappeared today.

  • Combined order based and delivery based billing

    Hey Gurus, We are using ZTAN items and ZTAD items on the sales orders.  We are trying to figure out how to combine these two together to create one invoice.  Can you guys help us with what the configuration should be in order do this?  I woudl like t