Hyperlink trouble in JEditorPane

Hi all,
I am having real trouble with getting a simple HTML document up and running in JAVA. WHY did they make it so HARD?
I want to be able to use internal links, e.g click here to go to top of page etc.
Now apparently I need to add a HyperlinkListener to the JEditorPane. In the code you'll see that i've commented it out. If its left in i get
DisplayHTML.java:61: addHyperlinkListener(javax.swing.event.HyperlinkListener) in javax.swing.JEditorPane cannot be applied to (DisplayHTML)If i change the start class to:
public class DisplayHTML extends JFrame implements ActionListener, HyperlinkListenerI get:
DisplayHTML.java:14: cannot resolve symbolAnd even if it did work there is still a mass of code that needs to be implemented for the internal links to work. grrrrrrrrrrrrr for a language that is meant to be excellent on the web it has poor support for HTML.
If anyone can shed any light on this I would be grateful. Many thanks
drb2k2
Anyway here is the code
import javax.swing.*;
import java.awt.*;
import javax.swing.text.StyledEditorKit;
import javax.swing.text.html.HTMLEditorKit;
import java.net.URL;
import java.net.MalformedURLException;
import java.awt.event.*;
import java.io.*;
public class DisplayHTML extends JFrame implements ActionListener
     Color Background = new Color(100, 135, 220);
     Color Buttons     = new Color(140, 170, 230);
     Container content;
     String Keep;
     JEditorPane jed;
     public DisplayHTML()
          UIManager.put("Button.select", Buttons);     
          content = getContentPane();
          content.setBackground(Background);
          BorderLayout border = new BorderLayout();
          content.setLayout(border);
          JPanel Button_Panel = new JPanel();
          BorderLayout buttons = new BorderLayout();
          Button_Panel.setLayout(buttons);
          Button_Panel.setBackground(Background);
          JButton Save = new JButton("Save");
          Save.setBackground(Buttons);
          Save.setToolTipText("Press here to save the results file in HTML format");
          Save.addActionListener(this);
          Save.setActionCommand("Save");
          Button_Panel.add(Save, BorderLayout.WEST);
          JButton Quit = new JButton("Quit");
          Quit.setBackground(Buttons);
          Quit.setToolTipText("Press here to exit the screen and loose results");
          Quit.addActionListener(this);
          Quit.setActionCommand("Quit");
          Button_Panel.add(Quit, BorderLayout.EAST);
          content.add(Button_Panel, BorderLayout.NORTH);
          String str = new String("file:\\" + System.getProperty("user.dir") + "\\" +"Analysis.html");
          try
               URL url =new URL(str);
               HTMLEditorKit lhekFile = new HTMLEditorKit();
               jed =new JEditorPane();
               jed.setEditorKit( lhekFile );
          //     jed.addHyperlinkListener(this);
               jed.setEditable(false);
               JScrollPane htmlScroll = new JScrollPane(jed);
               htmlScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
               htmlScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
               jed.setPage(url);
               content.add(htmlScroll, BorderLayout.CENTER);
          catch(MalformedURLException e){System.out.println("can't find file");}
          catch(IOException e1){System.out.println("can't load file");}
          setSize(400,400);
          setVisible(true);
     public void actionPerformed(ActionEvent e)
}

whoops, forgot to include the code
import javax.swing.*;
import java.awt.*;
import java.net.URL;
import java.net.MalformedURLException;
import javax.swing.text.html.*;
import java.awt.event.*;
import java.io.*;
public class DisplayHTML extends JFrame implements ActionListener
     Color Background = new Color(100, 135, 220);
     Color Buttons     = new Color(140, 170, 230);
     Container content;
     String Keep;
     JEditorPane jed;
     public DisplayHTML()
          UIManager.put("Button.select", Buttons);     
          content = getContentPane();
          content.setBackground(Background);
          BorderLayout border = new BorderLayout();
          content.setLayout(border);
          JPanel Button_Panel = new JPanel();
          BorderLayout buttons = new BorderLayout();
          Button_Panel.setLayout(buttons);
          Button_Panel.setBackground(Background);
          JButton Save = new JButton("Save");
          Save.setBackground(Buttons);
          Save.setToolTipText("Press here to save the results file in HTML format");
          Save.addActionListener(this);
          Save.setActionCommand("Save");
          Button_Panel.add(Save, BorderLayout.WEST);
          JButton Quit = new JButton("Quit");
          Quit.setBackground(Buttons);
          Quit.setToolTipText("Press here to exit the screen and loose results");
          Quit.addActionListener(this);
          Quit.setActionCommand("Quit");
          Button_Panel.add(Quit, BorderLayout.EAST);
          content.add(Button_Panel, BorderLayout.NORTH);
          String str = new String("file:\\" + System.getProperty("user.dir") + "\\" +"Analysis.html");
          try
               URL url =new URL(str);
               HTMLEditorKit lhekFile = new HTMLEditorKit();
               jed =new JEditorPane();
               jed.setEditorKit( lhekFile );
               jed.setContentType("text/html");       
               jed.addHyperlinkListener(new javax.swing.event.HyperlinkListener()
                    {public void hyperlinkUpdate(javax.swing.event.HyperlinkEvent e)
                         JEditorPane pane = (JEditorPane) e.getSource();
                          if (e instanceof HTMLFrameHyperlinkEvent)
                              HTMLFrameHyperlinkEvent  evt = (HTMLFrameHyperlinkEvent)e;
                              HTMLDocument doc = (HTMLDocument)pane.getDocument();
                              doc.processHTMLFrameHyperlinkEvent(evt);
                          else
                              try
                                    pane.setPage(e.getURL());
                              } catch (Throwable t)
                              {t.printStackTrace();}
               jed.setEditable(false);
               JScrollPane htmlScroll = new JScrollPane(jed);
               htmlScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
               htmlScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
               jed.setPage(url);
               content.add(htmlScroll, BorderLayout.CENTER);
          catch(MalformedURLException e){System.out.println("can't find file");}
          catch(IOException e1){System.out.println("can't load file");}
          setSize(400,400);
          setVisible(true);
     public void actionPerformed(ActionEvent e)
}

Similar Messages

  • JS/CS3 hyperlinks trouble: finding a hyperlinkTextDestination

    I'm having trouble finding a hyperlinkTextDestination in a document.
    According to the reference I should be able to refer to a hyperlinkTextDestination by using:
    myDocument.hyperlinkTextDestinations.item(myLabel);
    This statement returns an invalid object.
    I also tried to iterate through the collection of hyperlinkTextDestinations to find the item with my label. Like so:
    for(i = 0; i < myDocument.hyperlinkTextDestinations.length; i++)
    if(myDocument.hyperlinkTextDestinations[i].label == myLabel)
    myDestination = myDocument.hyperlinkTextDestinations[i];
    This is not working either. I did set a label to the hyperlinkTextDestination. When this label is encountered myDocument.hyperlinkTextDestinations[i].label == myLabel evaluates to false!
    How to solve this problem?
    Grtn, Kees

    Hi KvD
    For hyperlink destination you should provide a string (i.e word or character or insertion point) not a frame. After getting the frame label you have to catch textframe's text then add any one of the above said string. May be this will help you.
    Regards
    priyan

  • Hyperlinks in a JEditorPane

    Hi,
    I have an application that connects to a database and retrieves results from the database and then displays the results in a JEditorPane - the results are in the form of a hyperlink - so when i click on the link then a web page is opened up inside of the JEditorPane.
    The question i have is, once i have clicked on the link how can i return to the original page, rather thn having to run the program from the start again ?
    Is there a pre - defined "back"/"previous page" method i can use, to go back to the previous page ?
    Any help would be much appreciated
    Thanks Again

    sjhori214,
    When you read from the database, if you put the contents ( presumably some html with hyperlinks etc) into a String object and store it somewhere (perhaps create a new object which you have a static instance of, and load it into a String variable of that object).
    Then, assuming you are using the correct editor kit (text/html), use the
    setText( myObject.HTMLfromDB )type of syntax to display this HTML page.
    If you also have a button (or other) somewhere in your app, whose actionListener() method calls
    setText( myObject.HTMLfromDB )this would re-load the HTML back into the JEditorPane, without re-loading form the Database.
    If you wanted to simply implament a "back" button, as supposed to a "home" button you could create a vector of myObject (see above) objects, and navigate back and forward in it and use the setText method to display its contents (of course you would have to add a HyperlinkListener object that fires on page moving and then use getText() to load the latest HTML into a new object.
    Hope this gives you some idea of how to proceed
    Guy

  • InDesign CS5 - Hyperlink Trouble

    This should be the easiest thing to do but I am having a great deal of trouble accomplishing my goal. I have a map of the United States with prevelance numbers overlaid as text boxes on each state. (i.e. Tennessee has a text box centered on the state with 12pt '66.5') I am trying to create hyperlinks for each state that work on an exported pdf. The goal is for the numbers on each state to link to that state's health department. Does anyone have tips on the best way to accomplish this? I have attempted working with text anchor, new hyperlink, new hyperlink destination, but am doing some thing wrong. When I export the pdf, I can roll over a text box and the cursor turns into a finger pointing, but the link does not work.
    Thank you for your help,
    eeg

    Should be a hyperlink and its matching destination. Can you give us a screenshot of the hyperlinks windows, please?

  • Hyperlink-trouble after upgrade to CF 7

    Hello
    I am currently editing an old CF site where the host have
    gone from CF 5 to CF 7 (without warning =). All hyperlinks with a
    CF attribute have stopped working for some reason, let me clarify:
    from an SQL like this: (code is rewritten )
    <cfquery name="Course" datasource="CompanyDB">
    SELECT CourseApp2.*, Course.*, CourseDate.*
    FROM CourseApp2, Course, CourseDate
    WHERE CourseApp2.CourseMember_ID = #CGI.QUERY_STRING#
    AND CourseApp2.CourseDateID = CourseDate.CourseDateID
    AND CourseDate.CourseID = Course.CourseID
    ORDER BY CourseStart
    </cfquery>
    there is a CF out as follows:
    <CFOUTPUT QUERY="Course">
    <TR><TD><A
    HREF="../Course/Course.cfm?CourseID=#CourseID#">#CourseName#,
    #CourseCode##CourseDateCode#</A></TD>
    The way the hyperlink is constructed doesnt work, and an
    error stating that CourseID is undefined ( the ?CourseID=#CourseID#
    part of the link)
    It doesnt work where the link is made like this either:
    <A
    HREF="../Course/Course.cfm?CourseID=#Course.CourseID#">#CourseName#,
    #CourseCode##CourseDateCode#</A>
    that is, stating which CourseID you want to use, on those the
    error: CourseID is undefined in Course is thrown.
    It works however if you select CouseID from Course as an
    Alias in the select statement and use the alias in the link.
    This old site has been working fine with this sort of
    notation, has something changed up to CF 7, that have made this
    erroneous? Since i havent written the original code I am reluctant
    to change it before I know whats wrong.
    If you have any ideas or suggestions please reply
    Regards
    Torbjörn

    I would rename your query, so that the cfoutput statement
    will know what you are referring to, something like:
    <cfquery name="getcourseinfo" datasource="CompanyDB">
    SELECT CourseApp2.*, Course.*, CourseDate.*
    FROM CourseApp2, Course, CourseDate
    WHERE CourseApp2.CourseMember_ID = #CGI.QUERY_STRING#
    AND CourseApp2.CourseDateID = CourseDate.CourseDateID
    AND CourseDate.CourseID = Course.CourseID
    ORDER BY CourseStart
    </cfquery>
    THEN:
    <cfoutput query="getcourseinfo">
    <A
    HREF="../Course/Course.cfm?CourseID=#CourseID#">#CourseName#,
    #CourseCode##CourseDateCode#</A><br>
    </cfoutput>
    Let me know if this works.

  • Acrobat Hyperlink Troubles

    I'm creating a CD that's based on a PDF document that has hyperlinks to content elsewhere on the CD. I have PowerPoint slides, PowerPoint slideshows, MP3 files, an installation file for MS PowerPoint Viewer and other PDF files. There is no difficulty in launching the MP3 files and the other PDF files; but the PP files, either type, are not launching even after the PP Viewer has been installed on a computer that has no installation of any application in the MS Office Suite. The error boxes claim 'no file association', yet when I separately launch the Viewer and point to the files on the CD, they are displayed. Thus I reason it is not the fault of the OS or the Viewer, rather it is something that I haven't done for the primary PDF file that is preventing the display. I'm open to suggestions, comments and criticism.I'm creating a CD that's based on a PDF document that has hyperlinks to content elsewhere on the CD. I have PowerPoint slides, PowerPoint slideshows, MP3 files, an installation file for MS PowerPoint Viewer and other PDF files. There is no difficulty in launching the MP3 files and the other PDF files; but the PP files, either type, are not launching even after the PP Viewer has been installed on a computer that has no installation of any application in the MS Office Suite. The error boxes claim 'no file association', yet when I separately launch the Viewer and point to the files on the CD, they are displayed. Thus I reason it is not the fault of the OS or the Viewer, rather it is something that I haven't done for the primary PDF file that is preventing the display. I have posted a PDF of screenshots of the error messages and what file associations and locations are.  I'm open to suggestions, comments and criticism.
    Don Jones
    (512) 452-6640
    Austin, TX

    I have just looked at your site on a Mac in Safari and your navigation bar shows up on every page of the site.
    I see that it is quite close to your header image and if text boxes or shapes overlap, they will not always work. Could be that it was hidden by the image.
    Seems okay to me though.

  • How to insert hyperlinks in RTF document shown in JEditorPane?

    This is a compound question so bear with me on this one :)
    What I need is to insert an hyperlink in a JEditorPane; Store it as RTF code; Retrieve it; Show it and click on it to go the the destination.
    1) So, first question, is there some method to automatically add the hyperlink and will it be saved in RTF with RTFEditorKit? (I'm actually using AdvancedRTFEditorKit but an answer to either will be enough)
    2) I tried a method that adds what appears as a link but the document that is stored doesn't have the necessary RTF codes, only the formatting that makes it look like a link. I also checked the actual RTF codes I'd need to add and they seem easy to do. So, is there a way to add the actual underlying RTF codes to the document while it's in the JEditorPane?
    I know the question(s) isn't too specific, if you can shed some light over the whole thing and point me in the right direction, it'd be great!

    Just a follow up to my own question. I found a way to answer my question 2) and I'm now storing the rtf code for hyperlinks. Now, when I show the document in JEditorPane with RTFEditorKit, I get the name of the hyperlink with no formatting indicating that it's a hyperlink.
    Example. The link "http://www.google.com" with the name "Google", only shows "Google" in plain text.
    Is it because the components I'm using don't support hyperlinks from RTF files even though they're supported from HTML files?
    Is there any way you can see this working? Is it possible to include something inside the JEditorPane that the user can click, instead of the hyperlink?

  • Hand cursor not displayed when mouse is over JEditorPane hyperlinks in 1.5

    Java version 1.5 does not show a hand cursor when the user mouses over a hyperlink within a JEditorPane, which it did in version 1.4.x.
    Create a new JEditorPane. Then set the content type (setContentType) as "text/html". Then use setText to add an html hyperlink. When the user mouses over the hyperlink, the cursor remains a pointer cursor. The cursor used to change into a hand cursor symbolizing a hyperlink.
    p.s.) The hyperlink still works, the cursor just doesn't change.
    Has anyone noticed this? Has it been reported as a bug? Is there a workaround?
    Thanks for any/all help!

    I have the same problem which I cannot seem to solve. I have a JEditorPane in a JDialog, not a JFrame, and I do not get a Hand cursor over the link. If I use a JFrame, I get the hand cursor.
    Any ideas? I tried with setting the cursor by hand using
    pane.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)); in the ENTERED-part of a slightly more advanced hyperlink listener (gets pane in constructor). But that did not help either.
    Here is the code. Check out the difference between JDialog and JFrame.
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.awt.*;
    public class HyperLink extends JDialog
         public static void main(String[] args)
              HyperLink h = new HyperLink();
              h.setVisible(true);
         public HyperLink()
              Container cp = getContentPane();
              JEditorPane p = new JEditorPane("text/html",
                                  "<html><body><a href='http://www.google.com'>Google</a></body></html>");
              p.addHyperlinkListener(new HyperlinkListener() {
                   public void hyperlinkUpdate(final HyperlinkEvent he) {
                       HyperlinkEvent.EventType type = he.getEventType();
                       if (type == HyperlinkEvent.EventType.ENTERED) {
                        System.err.println("entered");
                       else if (type == HyperlinkEvent.EventType.EXITED) {
                        System.err.println("Exited");
                       else if (type == HyperlinkEvent.EventType.ACTIVATED) {
                        System.err.println("Now going to " + he.getURL());
              p.setEditable(false);
              cp.add( p );
              pack();
    }

  • Inserting any JComponent in a JEditorPane

    Hi, I'm having some trouble using JEditorPane and JTextPane. I would like to include some JComponent of my own into them.
    With JTextPane, no problem, let's create a style with
    StyleConstants.setComponent(myStyle, myComponent);
    then insert a space char in the Document using this style. Good.
    Problem comes when I want to insert my components into an HTML document, using JEditorPane. This method raises no runtime problem but does nothing visible. Why ? Even more surprising, if I force the JEditorPane to a simple DefaultStyledDocument
    JEditorPane editorPane = new JTextPane();
    editorPane.setDocument(new DefaultStyledDocument());
    it doesn't work better. In such a case, ain't we in exactly the same configuration than with JTextPane ? BTW, why is JTextPane derived from JEditorPane if we cannot retreive parent's behaviour (HTML or RTF rendering) in the child class ?
    Yes, I'm confused...
    If your mind is clearer than mine on those topic, could you give me a piece of advice, or a link to a solution or an exemple on all of this ? Thanks,
    Matthieu

    No idea anybody on how I could insert JComponents of my own in a JEditorPane ?
    Why the simple Document.insertString () don't work in a JEditorPane if the style is not HTML ?
    Is it possible to tweak JTextPane to make it render HTML (using a Kit) then insert my own styles in it ?
    Thx.
    Matthieu

  • JEditorPane can't handle POST from HTML form?

    I posted this before but i never got an answer so i'll try again :-)
    Im running a tomcat server were i have a jsp script that uploads files to the server. What i need to do to is to use a regular java application for the rest of the "project" im working on.
    And i can get the JSP page to be displayed properly using JEditorPane but i cant get the html FORM POST in the JSP to execute... i dont know if theres some limits in JEditorPane or if im just using the wrong type of approach on this one.
    This is the server
    http://chilly-schrimp.kicks-ass.org/uploadbean/SimpleUpload.jsp
    (only works if my computer is turned on)
    Heres the code:
    =======================================================================
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    public class JSPtest {
    public static void main(String[] args) {
    JEditorPane pane = null;
    try {
    pane = new JEditorPane("http://chilly-schrimp.kicks-ass.org/uploadbean/SimpleUpload.jsp");
    catch (IOException ex) {
    ex.printStackTrace(System.err);
    System.exit(1);
    pane.setEditable(false);
    // Add a hyperlink listener.
    final JEditorPane finalPane = pane;
    pane.addHyperlinkListener(new HyperlinkListener() {
    public void hyperlinkUpdate(HyperlinkEvent ev) {
    try {
    if (ev.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
    finalPane.setPage(ev.getURL());
    } catch (IOException ex) { ex.printStackTrace(System.err); }
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new JScrollPane(finalPane));
    frame.setSize(350,400);
    frame.setVisible(true);
    =======================================================================
    any suggestions??
    thanx
    /eric

    I am using request.getParameter(passed variable name)
    to pass data from HTML form to JSP with no problem.
    WHen I try to pass data from HTML form of
    multipart/form-dta type to JSP as following:
    < form enctype="multipart/form-data" name="theForm"
    method="post"
    ACTION="http://titan.ssd.loral.com:7778/ifs/jsp-bin/if
    -cts/stringsecond.jsp">
    The passed value is null. Why?because the jsp most likely does not handling of POST parameters like this.
    How can I pass data successfully from this form to
    JSP?jsp's are not meant to read such amounts of data. this (= uploading) is a typical task for a specialized servlet. there you have full control over input and output. if you need to, you can still forward to a jsp after processing in the servlet.
    How can I pass data from JavaScript to JSP???? i'm not sure what exactly you mean. normally you put it into an url and submit it.
    robert

  • Space after hyperlink in JEditorPane

    Hi all!
    I am displaying an html document in a JEditorPane, which has some hyperlinks. Everything is wotking, except that all the hyperlinks have an extra space after the text which is underlined and is a part of the hyperlink.
    I saw this problem in the bug database but marked as closed. However I still have this problem using jdk 1.4.1.
    http://developer.java.sun.com/developer/bugParade/bugs/4303958.html
    Thanks in advance for your help!

    I'm sorry but I posted this by mistake. The topic is duplicated, but the other one has the subject corrected and has duke dollars assigned.

  • How do i set multiple line with hyperlink in JEditorPane?

    hi all,
    i have a critical question where i have a JEditorPane component which it display the hyperlink. the problem occur when the display text of the hyperlink if it is too long, i need to truncate it into multiple line like "ABCDEF" to make it "AB<br>CD<BR>F". the hyperlink work only if the display text is not truncate to multiple line, it display nothing at all if i try to truncate them into multiple line.
    anyone? thanks and regards

    At the point you wish to change to two columns, Insert > Columns and then in the Layout Inspector, select the number of columns. After the insertion point, you will also need to insert another Column Change to return the following paragraphs to single column.
    Then Select the text to be bulleted and in the Text Inspector > List tab select the type of bullets.
    Note: This creates two columns that flow together. This can be tricky if you add any text later.
    If you wish to ensure alignment, create a two column text table and remove the lines with the Graphic Inspector > Lines > No Lines option and insert your text in each column and apply the bullets as above.
    This will create a text box - you then need to ensure it moves with the text by electing "Object Moves With Text" in the Wrpa Inspector.
    Message was edited by: bwfromspring hill

  • Local hyperlink in JEditorPane

    I set a HTML page from String variable to JEditorPane. I;ve got som hyperlinks to this page like
    <A NAME="AAAAA">
    Link
    I need to handle such a link. I set editable to false and implemented hyperlink listener, but event returns null URL when calling getURL() and I do not know how to handle this links. Can anyone help ??? I want to navigate through fragment of this page.

    If you don't want to have to fool around with the HyperlinkListener, just add the normal <BASE> tag to your HTML file. The <BASE> tag has the following syntax:
    <BASE HREF="baseURL" TARGET="WindowName" >
    The TARGET portion is optional!
    Theoretically, the JEditorPane should be smart enough to look for the link from the same place where the original HTML file is loaded from but apparently there is a bug somewhere that prevents it from doing that.
    ;o)
    V.V.

  • Problem with Hyperlink  in JEditorPane!!

    hi all!
    I have some problem.
    I create html page with hyperlink to myProgram.jar and when i open this html page in JEditorPane and click on hyperlink i have the some text but my program don't run.
    How write HyperlinkListener for run the my program and setUrl for open other html pages.
    thanks!

    In the future, Swing related questions should be posted in the Swing forum.
    But, there is no need to repost the question because you can just read the JEditorPane API to find an example of how to write a HyperlinkListener.

  • Hyperlink in JEditorPane URGENT

    I have encountered a problem regarding showing the html in JEditorPane(written under JApplet), since in the html code, there are some hyperlink which link to other html page. I can't link those page. Since I am not directly read the html from a file. I am passing those html code from the data I get from cgi and directly to JEditorPane. Anyone please help me solve this problem?
    Thank you..

    If you don't want to have to fool around with the HyperlinkListener, just add the normal <BASE> tag to your HTML file. The <BASE> tag has the following syntax:
    <BASE HREF="baseURL" TARGET="WindowName" >
    The TARGET portion is optional!
    Theoretically, the JEditorPane should be smart enough to look for the link from the same place where the original HTML file is loaded from but apparently there is a bug somewhere that prevents it from doing that.
    ;o)
    V.V.

Maybe you are looking for

  • Date and Time in Sender File Adapter Target Directory

    Hi there, is there a way of using Date and Time from XI to the Target Directory naming? To use variable substitution some fields of the message had to contain that date and time information, which is not our case. For filename you can use "add time s

  • Portal "Start SLD"  error

    Dear Gurus, System : NW 7.31 EHP1 I configured SLD in portal, as screen shot maintained below all neccesary RFC status is "Not Defined". By the way sld is running and configured When i "Check SLD Connection" Test connection is sucessfully, but seems

  • New document type to be copied from old document type

    Dear Sir i have created one document in document type draw no i want to delete that document from draw and i have to copy its all document to my new docmuent type Z09 please guide how can i do it. regards kunal

  • How to recovery notes that was saved in the iTunes after you change your iPad´s name ?

    Hey guys, good day I bougth the iPad 2 and had the backup with different name for my iPad 1 and now when I started this new one, my previous notes and email configuration was not saved... Do you know how can I pick up my old notes in the iTunes ? I t

  • How to store a string in VARCHAR2

    hi, i am having problems in storing following string in a varchar2(300) column: the string is: “&’igiy’yuiyuiyui””&&&uyutyu”””’’’’“&’igiy’yuiyuiyui””&&&uyutyu”””’’’’“&’igiy’yuiyuiyui””&&&uyuty