Docs to go standard edition

Hi,
I want to open a new document on my 8900, except that it keeps asking me whether I want to buy or try out the premium edition. Is there anyway I can bypass that and open new documents with the standard edition?
Solved!
Go to Solution.

The Standard edition of DocumentsToGo does not allow creation of new documents. That feature comes with the Premium edtion.
The workaround is to email yourself a blank document, name it something such as "blank.doc" and save that to your BB. Then, for any new document, open that blank.doc, edit and SAVE AS, always keeping the blank.doc intact as a template.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Which Doc Contains Standard Edition's Replication Features?

    Hi all,
    I am going to use Oracle 10g / Oracle 11g Standard Edition's replication features (single-master, simple replication). However, in the online documentation web site, I cannot find relevant manuals / chapters.
    There are manuals on advanced replication or Streams, but these are not what I am looking for.
    I also searched the web on the above information, and some tutorial or step-by-step instruction (without using Oracle Enterprise Manager) but have found nothing so far.
    Please advise where I may find such info. Thanks in advance!
    Best regards
    Edited by: user11974348 on Jun 10, 2010 3:43 AM

    Hi Forstmann and all,
    Thank you for your information.
    I believe manual standby database may not be applicable to my situation because the reporting database needs to be refreshed several times a day during office hours to keep the data not too far behind production, while the reporting access may be continuous during office hours. The manual standby solution needs to bring down the standby database and causes interruption to the reporting workload.
    I guess Oracle is "encouraging" people to use Enterprise Edition because back in Oracle 8's documentation, there is a dedicated book called "Oracle Replication" which contains information for both basic and advanced replication. There is also a whole chapter (Chapter 2) on basic replication.
    In Oracle 9i Release 1, the chapter on basic replication is gone. In Oracle 10g Release 2, the book "Oracle Replication" is gone, and is apparently replaced by "Advanced Replication". So, for Standard Edition users, how do they know what replication documentation is relevant to them? Should Standard Edition users refer to Oracle 8's documentation? This is the key of my question.
    Thanks and regards,
    Lawrence
    Edited by: user11974348 on Jun 14, 2010 3:42 AM

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Sector size problem when create a "Standby" in Standard Edition

    Hi,
    I've a primary database 11.2.0.4 Standard Edition with Grid Infrastructure with ASM.
    DiskGroup in ASM uses sector size ok 4k.
    I've also a "Standby" the uses filesystem with logical and physical sector size of 512.
    When duplicate from primary I get this warning:
    ORACLE error from auxiliary database: ORA-01378: The logical block size (4096) of file /u03/oradata/ORCL/onlinelog/group_1.268.874153703 is not compatible with the disk sector size (media sector size is 512 and host sector size is 512)
    RMAN-05535: WARNING: All redo log files were not defined properly.
    ORACLE error from auxiliary database: ORA-01378: The logical block size (4096) of file /u03/oradata/ORCL/onlinelog/group_2.265.874153719 is not compatible with the disk sector size (media sector size is 512 and host sector size is 512)
    RMAN-05535: WARNING: All redo log files were not defined properly.
    ORACLE error from auxiliary database: ORA-01378: The logical block size (4096) of file /u03/oradata/ORCL/onlinelog/group_3.263.874153759 is not compatible with the disk sector size (media sector size is 512 and host sector size is 512)
    RMAN-05535: WARNING: All redo log files were not defined properly.
    ORACLE error from auxiliary database: ORA-01378: The logical block size (4096) of file /u03/oradata/ORCL/onlinelog/group_4.261.874153735 is not compatible with the disk sector size (media sector size is 512 and host sector size is 512)
    RMAN-05535: WARNING: All redo log files were not defined properly.
    Finished Duplicate Db at 2015-04-21 23:37:10
    released channel: CH1
    I can recreate 3 redologs with correct sector size, but I unable to drop current log file:
    ERROR at line 1:
    ORA-01623: log 4 is current log for instance ORCL (thread 1) - cannot drop
    ORA-00312: online log 4 thread 1:
    '/u03/oradata/ORCL/onlinelog/group_4.261.874153735'
    So how can I solve this problem?

    yasinyazici wrote:
    Hi
    Oracle Data Guard is available only as a feature of Oracle Database Enterprise Edition. It is not available with Oracle Database Standard Edition.
    Please look  2.3.2 Oracle Software Requirements section  of the  following document
    http://docs.oracle.com/cd/E11882_01/server.112/e41134/standby.htm#SBYDB4716
    Yasin
    It's possible:
    Data Guard and Oracle Standard Edition (Doc ID 305360.1)
    Alternative for standby database in standard edition (Doc ID 333749.1)

  • Standard Edition Memory Limitations

    What is the upper memory limitation for the SGA size when using Standard Edition 9.x on Windows 2000?
    What about Enterprise?

    According what I know the SGA in one OS is limited by the OS and the parameter SGA_MAX_SIZE. I have never heard that SGA has limitations related to the license.
    SGA_MAX_SIZE
    Parameter type
    Big integer
    Syntax
    SGA_MAX_SIZE = integer [K | M | G]
    Default value
    Initial size of SGA at startup, dependent on the sizes of different pools in the SGA, such as buffer cache, shared pool, large pool, and so on.
    Parameter class
    Static
    Range of values
    0 to operating system-dependent
    SGA_MAX_SIZE specifies the maximum size of SGA for the lifetime of the instance.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96536/ch1190.htm#REFRN10198
    Joel P�rez

  • Dataguard in oracle standard edition ?

    I am using Oracle 10.2.0.4 standard edition database.
    how to check / query can i use dataguard feature in my oracle database. Is there any docs having to expalin more detail?
    Rgds,

    Data Guard is Enterprise Edition only. This link is licensing info for your version.
    Database Licensing Information 10g Release 2: http://download.oracle.com/docs/cd/B19306_01/license.102/b14199.pdf

  • GoldenGate on Oracle Standard Edition

    Hi,
    GoldenGate supports extract from an Oracle Standard Edition One database, but I have not yet managed to create an extract queue.
    I have read the manuals, I have searched Oracle forum and I have also searched Oracle Support pages, but I haven't found anything how it should be done.
    Please guide me.
    I have tried to create the extract with several different commands. Here are some of them:
    add extract ggsrc, tranlog, begin now, threads 1
    add extract ggsrc, tranlog, begin now, passive
    Here is the error message I receive:
    2011-11-10 12:14:00 WARNING OGG-01756 Cannot register EXTRACT GGSRC with database because of the following SQL error: OCI Error ORA-00439: feature not enabled
    : Streams Capture
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 453
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM", line 289
    ORA-06512: at line 1 (status = 0). See Extract user privileges in the Oracle Gol
    denGate for Oracle Installation and Setup Guide. You can manually register this
    group with the REGISTER EXTRACT command.
    EXTRACT added.
    As you can see the command is trying to use an option which is not enabled in the Standard Edition One. It is using some Streams functionality which is standard in Enterprise Edition.
    Regards
    Kjell Magne Kvinnesland

    Have you seen this?
    Adding an Extract Fails with OGG-01756 Cannot Register EXTRACT (Doc ID 1330577.1)

  • How to setup replication using Oracle 11gR2 standard edition one

    Dear Guys,
    I have two machines on which Oracle 11gR2 standard edition one is installed. I want to establish replication between them. How can I setup it? Please refer me to some step by step guide. I will be thankful to you guys.

    Replicating Data Using Materialized Views
    http://docs.oracle.com/cd/E14072_01/server.112/e10703/tdpii_reppit.htm#BEHHGGIB
    Replicating Read/Write Data Using Materialized Views
    http://docs.oracle.com/cd/E14072_01/server.112/e10703/tdpii_reppit.htm#BEHCEFGC

  • Help using Oracle BI Standard Edition One

    Hi,
    I have installed Oracle BI Standard Edition One on a Windows Server 2003.
    My aim is to connect to the production database and create reports, graphs etc.
    Could you please let me know the steps required?
    Thanks & Regards,
    Shailaja

    Check documentation at http://download.oracle.com/docs/cd/E10352_01/doc/nav/portal_1.htm
    Business Intelligence Standard Edition One Tutorial

  • How do I search the downloaded Java? Platform, Standard Edition 6 API?

    I am a newbie to Java (I had done some limited programming in C ++ years ago). I have downloaded the Java? Platform, Standard Edition 6 API Specification, and can view this in my Firefox browser. How can I search to certain classes in this documentation easily? For instance, if I want to ding out all of the operations available for String or System.out, etc, , is there a way that I can type in System.out, or String somewhere, and get a list of what is available?
    Thanks

    Brian_Rohan wrote:
    Here is the code that I compiled and it worked:Yeah, "args" there isn't part of the API. It's the name of the variable that is the first parameter to the main method defined there.
    The stuff between the parentheses is a list of declarations of local variables that form the parameter list to that method, to put it technically.
    The thing that's part of the API is the class String. In "String[] args", the bit on the left is the type of the variable, and the bit on the right is name of the variable. A name of something you define like that wouldn't be in the API. However, the name of the class String is.
    If you look at the import statements, you'll see if the name "String" is actually shorthand for a class defined elsewhere. There's this:
    import java.util.*;So you can know that "String" is either defined in the java.util package, in the "helloworld" package (which also wouldn't be in the API because you're defining in there using the package keyword), or in java.lang. (The "java.lang" package is automatically imported.)
    You could look in the API docs for java.util.String or java.lang.String to find the class definition. But I'll save you the time by letting you know that it's actually java.lang.String.
    Again I am new at this, what would args.length be?You'll see that the type of the "args" variable is "String[]". That means that it's an array of String objects. (The [] means arrays.) Arrays all have a field called "length". This also is part of the language, not the API, so it would be in a language guide, not the API.
    The value of args.length would depend on how you ran your program. When you run a program on the command line like this:
    java HelloWorldor this:
    java HelloWorld foo bar bazThe java virtual machine takes all the things after the class name and sticks them in an array of String. Then it looks for a static method named "main" in the HelloWorld class, and passes it that array. So in the first case above, args.length would be zero, and in the second case it would be three.
    By the way, when you post code, please wrap it in code tags. Highlight it, then click the "CODE" button above the text input box.
    Edited by: paulcw on Nov 4, 2009 6:35 PM

  • Install cf8 standard edition with remote apache?

    I am interested in installing cf8 standard edition on a stand
    alone server on a windows (win2003 standard 64 bit) box. An Apache
    web server (centOS 5) and a mysql will be another two separate
    servers.
    So, I am wondering if this infrastructure is OK? I never
    tried them like this. I'd appreciate if anybody may share practical
    experience. Thanks.

    Have you had any luck with this? I'm pursuing a similar
    configuration. It should be pretty straight forward since this is a
    pretty normal set up, but the doc is limited.
    It doesn't help that the connector for Apache seems to be
    buried in the Linux install, which doesn't help when CF server was
    installed on a Windows box. Am I missing something?

  • RDBMS 11g Standard Edition

    Hi,
    Could any one please post me the certification matrix for Oracle Database 11g for all platforms include the type of installation such as EE,SE1 or SE.
    RDBMS 11g Standard Edition supported as metadata repository for Oracle Application server 10gR2 or Fusion Middleware 11g?
    Thanks and Reagrds,
    Prakash.

    For AS and FMW related posts there are separate forums or categories of forums: http://forums.oracle.com/forums/category.jspa?categoryID=13
    Not sure I understand your question...
    But why not check the Documentation?
    E.g.
    http://download.oracle.com/docs/cd/E21764_01/ipu.htm
    http://www.oracle.com/technetwork/middleware/ias/documentation/index.html (scroll down for links to earlier versions' doc libraries)

  • Oracle Streaming Queues in Oracle 10G standard Edition

    I would like to configure and implement Oracle Streaming Queues in Oracle 10G standard Edition. If it is possible then please guide me and give me some clues and if not then please advise me some alternate method.

    Here is the guidance you requested.
    License information:
    http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/toc.htm
    Technical information:
    http://tahiti.oracle.com/
    Since I don't even know what version you have ... this is as far as I can take you.

  • Performance Tab in OEM   ( Oracle database Standard Edition )

    We have Oracle database 11g ( Standard edition ONE).
    We have installed OEM (oracle enterprise manager) with database installation.
    We are not able to access the PERFORMANCE tab in OEM.
    1) Is it because Performance tab cannot be seen in Standard Edition ONE version ?
    2) When I tried to setup the control_management packaccess parameter in SPFILE, its failing . Is it because
    of the database edition ?
    3) Any work around in Standard Edition ONE to make the performance tab and tuning pack available with licensing ?

    Pl identify which specific version of 11g.
    I believe the answers are in the docs -
    http://download.oracle.com/docs/cd/E11882_01/license.112/e10594/editions.htm#CIHBAEID
    http://download.oracle.com/docs/cd/E11882_01/license.112/e10594/options.htm#autoId28
    HTH
    Srini

  • Oracle Standard Edition and OLAP

    Hi all,
    Am I correct in thinking that datawarehouse and OLAP style features are only available as an extra option when you have purchased Oracle Enterprise edition?
    Are there any OLAP related features that come with Standard edition, or do you have to go the whole hog just to make a basic cube?
    Many thanks
    Simon

    [email protected] wrote:
    Are there any OLAP related features that come with Standard edition, or do you have to go the whole hog just to make a basic cube?Define 'cube'.
    If you mean Multidimensional OLAP cube, then yes it is only available in the OLAP option that extends Enterprise Edition. But few people need that kind of power.
    Or do you mean 'cube' or 'rollup' described http://download.oracle.com/docs/cd/E11882_01/server.112/e10810/aggreg.htm#DWHSG8648 which os a completely different animal. A LOT of ROLAP capability, including cube and rollup, even exist in Express Edition.

Maybe you are looking for

  • Consume SAP Web service with parameters in Forms using JS

    Hi All I am trying to execute a call to a webservice using javascript from my adobe form . I can get this working by creating a DataConnection and mapping input fields on the form to the Request structure (XFA method) . But when I use JS, i cannot ge

  • Safari can't establish a secure connection to the server

    Hello, I am wondering if someone can kindly help me solve the following problem?  I have been trying to troubleshoot myself, but it seems that the problem persists. Issue I am having problems asscessing a wireless web login.  The University that I at

  • 6233 Quirks/Bugs...

    Not sure if similar have been posted elsewhere, but I couldn't find anything. Is there an official way to post this information to Nokia? Or does this forum fullfil that need? Bugs/Quirks 6233 v 6230i On my 6230i you could type a number in and go to

  • Converting M-peg 2 files for use in i-movie

    What is the best (easiest and cheapest) to use programme when trying to convert M-peg 2 files for use in i-movie? I have just bought my i-mac and was assured by seller in Apple store that it would be 'really easy' to upload files from existing camcor

  • HT4623 trying to 4.2.1 to 4.2.3 but I dont see software update. Can anyone help?

    trying to 4.2.1 to 4.2.3 but when I go to settings, general, I dont see software update. Can anyone help?