JTextPane-Extra character is adding to StyledDocument. How to overcome it ?

Hi All,
In my application, when I tried to increase the font size of the styled text every time an extra character is adding and its font size is not increasing as expected. Please try to run the below application as mentioned steps below :
After running the application
Step 1: Click on "Button1" and observe console. You will find list of all characters.
Step 2: Click on "Button2" and observe console. Now you can see the RTF text's byte[] at console.
Step 3: Click on "Button3" and observe console. You will find list of all characters along with their updated font size. (One extra character will be show in character's list)
Try to do Step2 and Step3 repeatedly
each time one extra character will be added to list and the new character's font size not be reducing.
I have two problems here
1. When I copy RTF byte[] from one DefaultStyledDocument to another one extra character is adding the new document object. How to avoid this extra character from the new document ?
2. Why every time the last character's font size is not increasing ?
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextPane;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultStyledDocument;
import javax.swing.text.Document;
import javax.swing.text.Element;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.Style;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyleContext;
import javax.swing.text.rtf.RTFEditorKit;
public class CopyStyledTextDocument extends JFrame
    RTFEditorKit rtfKit = new RTFEditorKit();
    DefaultStyledDocument orgDoc = null;
     static final JTextPane pane = new JTextPane();
     static final JButton getStyledCharecters = new JButton();
     static final JButton saveOrgDoc = new JButton();
     static final JButton changeFont = new JButton();
    CopyStyledTextDocument()
        getStyledCharecters.setText("Button1");
        getStyledCharecters.setSize(50, 50);
        getStyledCharecters.addActionListener(
                  new ActionListener()
                       public void actionPerformed(ActionEvent e)
                            DefaultStyledDocument doc = (DefaultStyledDocument)pane.getStyledDocument();
                            String newChar = "";
                            int length = doc.getLength();
                            for(int i=0;i<length;i++)
                                 try
                                      newChar = doc.getText(i, 1);
                                      System.out.println("------- charPos : "+i+" char : "+newChar);
                                 catch(Exception ex)
                                      System.out.println("Error : "+ex);                                      
                                      ex.printStackTrace();
        saveOrgDoc.setText("Button2");
        saveOrgDoc.setSize(50, 50);
        saveOrgDoc.addActionListener(new ActionListener()
                       public void actionPerformed(ActionEvent e)
                            CopyStyledTextDocument.this.orgDoc = CopyStyledTextDocument.this.copyStyledDocument((DefaultStyledDocument)pane.getStyledDocument());
        changeFont.setText("Button3");
        changeFont.setSize(50, 50);
        changeFont.addActionListener(
                  new ActionListener()
                       public void actionPerformed(ActionEvent e)
                            Style newStyle = new StyleContext().addStyle(null, null);
                            DefaultStyledDocument newDoc = CopyStyledTextDocument.this.orgDoc;
                            int totalChars = newDoc.getLength();
                            for(int i=0;i<totalChars;i++)
                                 String newChar = "";
                                 Element charElement = newDoc.getCharacterElement(i);
                                 AttributeSet charArributeSet = charElement.getAttributes();
                                 try
                                      newChar = newDoc.getText(i, 1);
                                 catch(Exception ex)
                                      System.out.println("Error : "+ex);
                                      ex.printStackTrace();
                                 int fontSize = ((Integer)charArributeSet.getAttribute(StyleConstants.FontSize)).intValue();
                                 fontSize += 10;
                                 StyleConstants.setFontSize(newStyle, fontSize);
                                 try {
                                      newDoc.replace(i, 1, newChar, newStyle);
                                      System.out.println("------- charPos : "+i+" char : "+newChar+" fontSize : "+fontSize);
                                 }catch(Exception ex) {
                                      System.out.println("Error : "+ex);
                                      ex.printStackTrace();
                                 pane.setStyledDocument(newDoc);
     public DefaultStyledDocument copyStyledDocument(DefaultStyledDocument inputDoc)
         DefaultStyledDocument newdocument = null;
          try
               ByteArrayOutputStream bOData = new ByteArrayOutputStream();
               rtfKit.write(bOData, inputDoc, 0, inputDoc.getLength());
               String styledText = new String(bOData.toByteArray());
               System.out.println("------- RTF byte[] : "+styledText);
               ByteArrayInputStream bIData = new ByteArrayInputStream(styledText.getBytes());
               newdocument  = new DefaultStyledDocument();
               rtfKit.read(bIData, newdocument, 0);
          }catch(BadLocationException ex)  
               System.out.println("Error : "+ex);
               ex.printStackTrace();
          catch(IOException ex)       
               System.out.println("Error : "+ex);
               ex.printStackTrace();
          return newdocument;
  public static void main(String args[]) throws BadLocationException
       CopyStyledTextDocument jf = new CopyStyledTextDocument();
       jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       Container cp = jf.getContentPane();
       Document doc = pane.getStyledDocument();
       SimpleAttributeSet set = new SimpleAttributeSet();
       StyleConstants.setFontSize(set, 12);
       doc.insertString(doc.getLength(), " SAMPLE \n", set);
       doc.insertString(doc.getLength(), " TEXT \n", set);
       doc.insertString(doc.getLength(), " OVER ", set);
       cp.add(getStyledCharecters, BorderLayout.WEST);
       cp.add(saveOrgDoc, BorderLayout.SOUTH);       
       cp.add(changeFont, BorderLayout.EAST);        
       cp.add(pane, BorderLayout.NORTH);
       jf.setSize(800, 700);
       jf.setVisible(true);
}Due to urgency I placed little bit of info. in below link
http://forums.sun.com/thread.jspa?threadID=5409367&tstart=45
But here I am placing a sample application which represents the problem clearly.
If you have any queries please feel free to ask.
Thanks for you help
Satya.

Your feed has two episodes, and they both appear when subscribing. So far the Store hasn't picked up the newer episode.
This episode has duplicated 'enclosure' tags - both containing the same media file URL: this shouldn't be a problem as iTunes should simply ignore the second one.
When you add a new episode to a feed it usually takes 1-2 days before the Store picks up the change, though it appear immediately for subscribers. If in fact you didn't have the second episode in the feed when it was first submitted this would probably be the reason.
It's just possible that something in the feed is upsetting the Store but not the iTunes application on subscribing (which doesn't involve the Store) - however apart from the duplicated enclosure tag there doesn't appear to be anything unusual. Your media filename for the second episode has a space in it, which isn't a good idea, but the feed is handling this correctly by substituting the code %20, so it's unlikely that this is throwing the Store. However it would be better to avoid spaces altogether - they aren't allowed in a URL (hence the need to substitute the code).
I should give it a couple of days and see if the episode appears.

Similar Messages

  • Why does Preview automatically resize the text box to cut off the last character of added text? How do I fix it?

    Why does Preview automatically resize the text box to cut off the last character of added text? How do I fix it?
    I use the Tools > Annotate > Add Text feature, and when I click away after adding text, it automatically changes the text box size such that the last letter -- or last word -- gets bumped off into an invisible line below it, forcing me to manually adjust every single text box. It is highly annoying when trying to complete PDF forms (e.g. job applications).
    It appears to be a glitch, quite honestly, an error resulting from Apple's product design. Has it been fixed in the new operating system (for which they want $30)?
    I would very much appreciate any help you can provide! Thank you for your time.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Word 2007 shrinking tabs to squeeze extra character on a line. How to disable this function?

    Hello,
    After six hours of my futile amateur attempts, it's clear I need a pro.
    Occasionally in Word 2007, the text I type will be near the maximum the line can hold, and when I type the next character Word will try to squeeze it onto the line by shrinking my left tab. This results in uneven paragraph indents, which looks very sloppy.
    If anyone knows a way to make Word just start a new line when the maximum line length is reached, and turn off this "smash the tabs to make it fit" function, I would be very, very grateful for that information.
    For reference, if you copy the following four lines into Word 2007, in Courier New, 12 pt, with default tab stops of 0.4", you will see that the second and fourth lines have this shrunken tab problem.
         Johanna shuffled over to where Hunter had moved several...
    Hunter climbed into the Reaper and spoke over their commlink.
    “Be safe.”  
    Johanna’s heavy heart lifted slightly. Could this be the one?
    Thank you,
    Tom

    Hi Stefan, thank you for replying, and sorry for the delay.
    Here is an example. https://onedrive.live.com/redir?resid=F3BF58EFEC14E64B!127&authkey=!ABhtu2udead5u-0&ithint=file%2cdocx
    It appears that OneDrive does not show this problem unless you select "edit document" then "edit in word". I have Word 07, and in there it causes the sloppy-looking, different indent sizes I am trying to fix.
    Thank you for any insights you may be able to share.
    Tom

  • Extra namespace was added after SOAPBody.addDocument(xmlDoc) is called

    Hi all,
    I am working on adding SAMLRequest to SOAP message using saaj-api 1.3.4 with Java1.5
    However, when I add the XML doc using SOAPBody.addDocument(), extra namespaces were added to the soapBody
    The XML I try to add is:
    <samlp:Request RequestID="mhdefhnhjladllhdlfeihkcbbcabakodmnnmbjdl" MajorVersion="1" MinorVersion="1" IssueInstant="2013-01-11T00:31:49.492Z" xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol"><samlp:AssertionArtifact>QUFFWm9QMkF1N1dCNE1PbHIyS3FUQXlQaTJWR0dXUzB5VmNpUm0vMUtIZ0RQbytjWnFGcFNoSlA=</samlp:AssertionArtifact></samlp:Request>
    after soapBody.addDocument(doc)
    I get
    <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
    <soapenv:Body xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol">
    <samlp:Request xmlns:axis2ns2="urn:oasis:names:tc:SAML:1.0:protocol" IssueInstant="2013-01-11T00:31:49.492Z" MajorVersion="1" MinorVersion="1" RequestID="mhdefhnhjladllhdlfeihkcbbcabakodmnnmbjdl">
    <samlp:AssertionArtifact xmlns:axis2ns3="urn:oasis:names:tc:SAML:1.0:protocol">QUFFWm9QMkF1N1dCNE1PbHIyS3FUQXlQaTJWR0dXUzB5VmNpUm0vMUtIZ0RQbytjWnFGcFNoSlA=</samlp:AssertionArtifact>
    </samlp:Request>
    </soapenv:Body>
    </soapenv:Envelope>
    As you can see, "xmlns:axis2ns2", "xmlns:axis2ns3" are added to the SAMLRequest and body has xmlns:samlp namespace.
    Here is How I did this:
    String artRequest = buildSAMLRequest(samlArt);          
    //build soap message
         DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
    builderFactory.setNamespaceAware(true);
         InputStream stream = new ByteArrayInputStream(artRequest.getBytes());
    Document doc = builderFactory.newDocumentBuilder().parse(stream);
         MessageFactory mf12 = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
         SOAPMessage message = mf12.createMessage();
         SOAPBody soapBody = message.getSOAPBody();     
    soapBody.addDocument(doc);
    //output as String for HTTP connection
    ByteArrayOutputStream xmlout = new ByteArrayOutputStream();
    message.writeTo(xmlout);
    String strMsg = new String(xmlout.toByteArray());
    Does anyone have idea how can I get rid of the extra namespace?
    Thank you so much
    David
    Edited by: 898054 on Jan 10, 2013 4:46 PM

    Thank you so much. Indeed, I have axis-saaj.jar in my project which caused the problem
    Thanks
    David

  • Removing extra character

    Hello,
    I have a textbox and a button in flash.  I send data to java server by entering data into the textbox.  Firsttime the number of characters i am receiving are correct, from the second time onwards there is an extra character.  i.e if i type 1 character it is showing 2.  Can someone tell me how do i remove it.
    below is the code,
    function msgGO() {
        if (inputMsg.htmlText != "") {
            mySocket.send(inputMsg.htmlText+"\n");
            inputMsg.htmlText = "";
    pushMsg.onRelease = function() {
        msgGO();
    Thanks.

    Thanks for your reply.
    I observerd that even if i directly send the data without entering into the textbox i am getting same result.
    mySocket.send("1");
    mySocket.send("3");
    In java, for the first data it shows number of characters (strlen) as 1.  for the second data it is showing 2.
    The character i am not able to know, there is a blankspace  towards the left of the character.
    Thanks

  • BXe iView:-Variant value getting extra character by default

    Hi All,
    New to BI. I am having one scenario with me.
    We have one BEx iView with four mandatory variants. User trying to select value for the first three variants and checking the value, but when he is entering value for the fourth variant and checking, few characters are getting add by own i.e. u201CAMu201D character is adding in the front of entered values. For example u201CAM99u201D
    But when we are trying to run from backend (BI) is not happening, no extra character is coming for the fourth variant.
    In the both case we are getting out put, but when we are trying from portal why extra character is getting added.
    Could you please help me on this.
    Deepak!!!

    Hi All,
    Here variants mean variables for selection criteria.
    Please share your kind input on the issue.
    Deepak!!!

  • Cost is not a part of PO, but to be added in material, how?

    Dear all,
    Cost which is not a part of PO but to be added in material, how that can be done... is it through statistical condition types, kindly explain how this can be done?
    regards,
    Archu

    Dear Archana,
    Your question is not clear,
    But I think if the cost is like Freight or Duty or any other thing like that, then in pricing procedure you can add a condition type with condition category "Delivery cost" then while doing GR for that PO, automatically system posts that amount to the material i.e. that amount is included in the material.
    For Example,
    Material Price   -  100 Rs,
    Freight              -  10 Rs
    then Upon Goods receipt MAP will be updated with (100+10) i.e. 110 Rs.
    Regards
    Lakshminath Gunda

  • I accidentally deleted my "Recently Added" playlist. How do I get that back?

    I accidentally deleted my "Recently Added" playlist. How do I get that back., Or make a new one?

    Create a new smart playlist with rule date added in the last 2 weeks.
    Restoring "Recently Added" Folder
    I accidentally deleted my recently added playlist. How do i get it back?

  • I accidentally deleted my recently added playlist. How do i get it back?

    I accidentally deleted my recently added playlist. How do i get it back?

    The default playlists are just Smart Playlists and you can recreate them. In iTunes go to File>New Smart Playlist
    Recently Added:
    Match the rule "Date Added">"is in the last">"1">"Days" make the days and the interval to suit yourself, you can have days, weeks or months.
    Also check the box "Live Updating"

  • HT2452 my grandsons were using my computer, now my pound character types as a # sign, how to I get my pound sign back

    my grandsons were using my computer, now my pound character types as a # sign, how to I get my pound sign back

    If you have a british keyboard then they might have changed it to a US keyboard in System Preferences > Language & Text > Input sources tab > check "british" and uncheck US

  • [svn:osmf:] 13113: Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.

    Revision: 13113
    Revision: 13113
    Author:   [email protected]
    Date:     2009-12-21 01:08:10 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/.flexLibProperties
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/ScrubBar.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/URLInput.as
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/Fonts.as
    Removed Paths:
        osmf/trunk/libs/ChromeLibrary/assets/images/stop_up.png_1

    Your site was built using tables, whose sizes are defined in your site.
    If we look at your first table definition, we can see:
    <table width="861" height="1449" border="3" cellpadding="0" cellspacing="0" bordercolor="#868787">
    Your table has a width of 861 pixels and an overall height of 1449 pixels. Anything you put into that overall box must fit those dimensions, else
    it won't be visible. Anything you add above it will push everything down. You can redefine your sizing to let you edit more inside of the table elements.
    This is why, when you type in more text, things act weird. If you are in Dreamweaver, you must find the right cell to put your text into and then enter
    text there. Unfortunately, this is going to push things around, which were all lined up using tables. And this gets everything offset with respect to
    everything else in your website.
    And that is why everyone is saying, "Start Over!"
    I just inherited a website that has been put together using tables. I'm going to have to expend considerable effort in rewriting the entire design of the
    website because of that. because everything I intend to add to the pages on the site is going to need to be deconstructed in order to get it to work
    properly if I'm adding text and pictures that need to line up with each other.
    You need something done quick and dirty and the only way I can recommend you do that is to use Dreamweaver to show you the tables you have
    and put what you need in a new table that is defined above or below the tables you all ready have defined. Do that and then get back to someone here
    who knows how to make a website correctly to clean up your entire website and make it editable -- which will cost you some money, but it will be
    money well-spent.
    I like to quote this maxim: Good, Fast, Cheap. Pick any two. This works for website design. You can get it fast and cheap, but it won't be good. I
    think you may have chosen that route.

  • Extra (Duplicate) Code Added After Editing Page

    At first I thought this was a problem when using templates
    but I've confirmed that it's more widespread that that. I've also
    found this posted a couple of times on other boards but nobody
    seems to have an answer.
    After I edit a page (html or php, doesn't make a difference)
    in Dreamweaver 8.02 extra code is added at the bottom of the page.
    This code duplicates a portion of what is already on the page, and
    it appears (although I can't say for certain) that the more editing
    I do the more code is added.
    The extra code is added after the closing </html> tag.
    Sometimes a portion of it will show up in Code view but more often
    than not I have to view the page in a text editor and remove it
    outside of Dreamweaver. But once the page is edited again then the
    problem repeats.
    Bizarre.
    Thanks.

    > I'll try and re-create the problem and post the before
    and after.
    The answer is always in the code.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "SilverR252" <[email protected]> wrote in
    message
    news:eneb22$2cg$[email protected]..
    >
    quote:
    You just haven't read the answers posted.
    > Well, I spent over an hour googling variations of the
    problems and found
    > it
    > referenced in only a couple of places. In neither post
    was there an
    > answer. You
    > can see that
    >
    http://groups.google.com/group/macromedia.dreamweaver/browse_thread/thread/b35b5
    >
    0466da5ea05/8c5264cb11bf7d36?lnk=st&q=dreamweaver+extra+code&rnum=3#8c5264cb11bf
    > 7d36 and
    >
    http://groups.google.com/group/macromedia.dreamweaver/browse_thread/thread/ae47c
    >
    5731780634d/012a96d2fb5c818f?lnk=st&q=dreamweaver+extra+code&rnum=8#012a96d2fb5c
    > 818f although the latter refers to MX.
    >
    >
    quote:
    Show us your template page, please.
    > As I said, I originally thought this was a problem only
    on child pages of
    > templates. However, it's happening in non-template
    pages.
    >
    > I'll try and re-create the problem and post the before
    and after.
    >
    > Thanks.
    >

  • JTextPane extra line

    Hi there,
    I am puzzled with JTextPane extra line issue.
    I have a JTextPane, it's using DefaultStyledDocument. I save the content as RTF format into a file, then everytime I open the file in JTextPane, I saw an extra blank line at the end. So if I save twice and open twice, I saw two extra lines. If I save/open 10 times, there are 10 extra lines. I debugged and found out that when I save, it's saving correctly. But when I read, always one more line comes out.
    Any help?
    Thanks!
    Frank

    package test;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import javax.swing.text.rtf.*;
    import javax.swing.undo.*;
    public class TestFrame extends JFrame {
    protected JTextPane m_monitor;
    protected StyleContext m_context;
    protected DefaultStyledDocument m_doc;
    protected RTFEditorKit m_kit;
    public TestFrame() {
    setSize(600, 400);
    m_monitor = new JTextPane();
    m_kit = new RTFEditorKit();
    m_monitor.setEditorKit(m_kit);
    m_context = new StyleContext();
    m_doc = new DefaultStyledDocument(m_context);
    m_monitor.setDocument(m_doc);
    JScrollPane ps = new JScrollPane(m_monitor);
    getContentPane().add(ps, BorderLayout.CENTER);
    load();
    this.addWindowListener(new WindowAdapter() {
    public void windowClosing() {
    setVisible(true);
    System.exit(0);
    setVisible(true);
    public void processWindowEvent(WindowEvent we) {
    if (we.getID() == WindowEvent.WINDOW_CLOSING) {
    save();
    public static void main(String[] args) {
    new TestFrame();
    private void load() {
    try {
    InputStream in = new FileInputStream("c:\\temp\\test.rtf");
    m_doc = new DefaultStyledDocument(m_context);
    m_kit.read(in, m_doc, 0);
    System.out.println("Reading, Doc length = " + m_doc.getLength());
    m_monitor.setDocument(m_doc);
    in.close();
    } catch (Exception ex) {
    ex.printStackTrace();
    private void save() {
    try {
    OutputStream out = new FileOutputStream("c:\\temp\\test.rtf");
    System.out.println("Saving, Doc length = " + m_doc.getLength());
    m_kit.write(out, m_doc, 0, m_doc.getLength());
    out.close();
    } catch (Exception ex) {
    ex.printStackTrace();

  • I have several separators that appeared in my bookmarks list without me adding them. How do I delete them? I already tried right click/cut, right click/delete in the bookmark menu-that doesn't work.

    I have several separators that appeared in my bookmarks list without me adding them. How do I delete them? I already tried right click/cut, right click/delete in the bookmark menu and directly on the list-that doesn't work.

    If you can't delete them in the normal way in the Bookmarks Manager then you may have a problem with the file places.sqlite.
    See http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    See also [[Deleting bookmarks]]

  • After upgradataion ,In testing phase- after search ,in result view we are getting some unwanted data ' +++++" should be added in Name .how to remove it.can you please help.

    Hi Team,
    After upgradataion ,In testing phase- after search ,in result view we are getting some unwanted data ' +++++" should be added in Name .how to remove it.can you please help.
    I want to remove ++++ in that column.

    Hi Kalpana,
    Please provide additional information for community users to relate this issue. Info like versions (old & new), the object which has this problem or component/view name will be useful to get the answers.
    Regards,
    Shobhit

Maybe you are looking for

  • Bal field "Profit Center" in line item 001 not filled at the time of F-53

    We are in ECC6 I have posted a vendor document.  The entry is shown as under.      GL                           CC     PC     Segment Dr     Expense GL-1     RV01     RGV1     Hyderabad Dr     Expense GL-2     RV02     RGV2     Mumbai Cr     Vednor a

  • Export table access to oracle with Database ODBC()

    Hi, I export a table, access 2003, ent_tab whit  'DataBase ODBC()' to oracle. I open Oracle SQL Developer and i can show table ent_tab, but i go worksheet and execute: select * from ent_tab and display error: ORA-00942... Why??!! Regards Jomar

  • Processing IDOC Basic type ORDERS05 in CRM...

    I'm processing (via WE19) an IDOC (Basic type ORDERS05) to create a Sales order withing CRM. I'm getting there in that a sales order is being raised, although there is no item level details so far. I know that config of the system plays a big hand in

  • I cant add more mails , crash to select in settings

    I update the new ios 5.1 and fix errors, i need add emails in contact and crash, cose every times The new update contain much errors. My 4.35 version the best but this is very bad I need use my ipad for mails Help Regards

  • Error:switch to package ROMD is off

    Hi, I have accidentally deleted source system assignment for 0material infosource and i was tryng to recreate the same and the associated infopacks are used in a process chains...and when i'm tryn to assign datasource its not visible on the bw side a