How do i Hyperlink to a web page from a java application?

How do i Hyperlink to a web page from a java application using internet explorer as my default web browser?

It's very simple.You can start any Application with the class Runtime. The command is an array consisting of the path of .exe and the file to be open.
String [] cmd={path of IE+Filename.exe,"URL of your website"}
try
Runtime.getRuntime().exec(cmd);
catch (Exception e)
System.err.println(e.toString());
}

Similar Messages

  • Help me!    How to use it as a web service from third party application?

    After using JDeveloper to develop BSSV object e.g. JP550010, how to use it as a web service from third party application?
    TKS!

    Obviously the OP is working on a project for the Bead Society of Southeastern Virginia http://www.bssv.org. Oh, wait, maybe he's researching the Blueberry Shoestring Plant Virus http://abbreviations.yourdictionary.com/bssv
    :D
    John

  • Launch a default web browser from my java application

    Hello,
    I have been trying to launch my default web browser from my java application, but am unable do it. Right now, I am using ---- "Runtime.getRuntime().exec("cmd /c start <url>"); to launch my webbrowser. It launches the browser but displays the command prompt for a second or so, and then replaces my already existing page with the new url.
    Is there any way for me to launch the url in a completely new browser each and every time. And I don't want the command prompt to show up for a sec. Please help...!
    Thanks in advance.
    -BusyBusyBee

    If by any chance your application is an Applet, you can use this to open a new browser window:
    getAppletContext().showDocument(new URL(theUrl), "_blank");
    But, you probably would have specified if that were the case. Oh well. Hope it helps someone!
    -sheepy.

  • Rendering a web page in a java application?

    is it possible to show a web page based on tags from a java application .
    For example, in VB i believe there is a component that allows you to render html and view it as seen in a web browser
    I believe i have seen this done before.
    stev

    use JEditorPane

  • Calling a web service from a Java application

    Does anyone have sample code showing how to call a web service over from a Java application? I'm deploy to HP-UX and seeking out the most standard and reliable approach.
    Thank you in advance.

    Keith,
    Download JWSDP 1.2, look at the tutorial for JAXRPC, especially
    the client portion.

  • How to call pdf forms developed in ABAP from WD Java application?

    Hi
    I have a web dynpro ABAP application that that is responsible for generating PDF forms for all other applications (WD ABAP and WD Java).
    How can I call the pdf forms generated by the WD ABAP application from WD Java application in a separate window?
    These forms are to be called on click of a "Print" button. Also, these forms are non interactive.
    Kindly let me know if you need any other information.
    Regards
    Vineet Vikram
    Edited by: vineet vikram on Jun 24, 2009 7:28 AM

    in addtion to Nikhil's response. you can write following code on action of print button:
        IWDWindow window = wdComponentAPI.
            getWindowManager().createExternalWindow(
                  "<ABAP Application URL>",
                  "<Title for window>",
                  false);
       window.open();
    to Close the application, you can use the window close or u can fire an event to close current window.
    Abhinav

  • How can i update an html web page from Labview?

    I intend to publish the "status" of an experiment online through an web page. I mean, if my vi is running i would like to have a phrase or indicator set on at my web page. If my Vi is not running i would like this indicator set off. This page is hosted in a server and I would like to know if its possible to update the html file from labview through an ftp connection.
    Thanks in advance...
    MSc. Alexandre Michel Maul
    Parana Federal Univeristy - Brasil

    The system exec function is on the Communication palette. Its for executing system commands. On my Win2K system, the help for FTP is:
    "Ftp
    Transfers files to and from a computer running an FTP server service (sometimes called a daemon). Ftp can be used interactively. Click ftp commands in the Related Topics list for a description of available ftp subcommands. This command is available only if the TCP/IP protocol has been installed. Ftp is a service, that, once started, creates a sub-environment in which you can use ftp commands, and from which you can return to the Windows 2000 command prompt by typing the quit subcommand. When the ftp sub-environment is running, it is indicated by the ftp command prompt.
    ftp [-v] [-n] [-i] [-d] [-g]
    [-s:filename] [-a] [-w:windowsize] [computer]
    Parameters
    -v
    Suppresses display of remote server responses.
    -n
    Suppresses autologin upon initial connection.
    -i
    Turns off interactive prompting during multiple file transfers.
    -d
    Enables debugging, displaying all ftp commands passed between the client and server.
    -g
    Disables file name globbing, which permits the use of wildcard characters (* and ?) in local file and path names. (See the glob command in the online Command Reference.)
    -s:filename
    Specifies a text file containing ftp commands; the commands automatically run after ftp starts. No spaces are allowed in this parameter. Use this switch instead of redirection (>).
    -a
    Use any local interface when binding data connection.
    -w:windowsize
    Overrides the default transfer buffer size of 4096.
    computer
    Specifies the computer name or IP address of the remote computer to connect to. The computer, if specified, must be the last paramete
    r on the line."
    I use tftp all of the time to transfer files in a similar manner. Test the transfer from the Windows command line and copy it into a VI. Pass the command line to system exec and wait until it's done.

  • RE: Can I hit a web page in my Java application ??

    I want to hit some web page through Java application, how should I do? Can I call something like HTTP://.... in my Java application??
    TIA
    Xin

    Just compile and run the testVisit program as follows:
    java testVisit http://www.yahoo.com
    testVisit.java
    ==========
    import java.net.*;
    import java.io.*;
    public class testVisit {
       public static void main(String[] args) {
          try {
             URL url = new URL(args[0]);
             URLConnection connection = url.openConnection();
             connection.setRequestProperty("Referer", args[0]);
             connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0");
             BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
             String Line;
             while ((Line = in.readLine()) != null) System.out.println(Line);
             in.close();
          } catch (Throwable e) {e.printStackTrace();}
    };o)
    V.V.

  • Help about opening a PHP page from a Java application

    Hi,
    I would have some elements to open a PHP page from a little Java application I'm doing. I would like to know the classes I had to use, how to implement them, ...
    In fact, I dial into my application my login, my password, and when I click on by "Connect" button, I must show the PHP page corresponding ti my profile onto the database. Picking up information from the database is not a problem, I know how to use SQL Packages in Java. The problem is to open a new page (IE or Netscape) when clicking on the "Connect" button in my application.
    Thanks a lot for advice me.
    C�dric

    Hi
    This class is from JavaWorld Tip 66 and I've used it to open web pages and files in a browser.
    import java.io.IOException;
    import java.util.*;
    * A simple, static class to display a URL in the system browser.
    * Under Unix, the system browser is hard-coded to be 'netscape'.
    * Netscape must be in your PATH for this to work.  This has been
    * tested with the following platforms: AIX, HP-UX and Solaris.
    * Under Windows, this will bring up the default browser under windows,
    * usually either Netscape or Microsoft IE.  The default browser is
    * determined by the OS.  This has been tested under Windows 95/98/NT.
    * Examples:
    BrowserControl.displayURL("http://www.javaworld.com")
    BrowserControl.displayURL("file://c:\\docs\\index.html")
    BrowserContorl.displayURL("file:///user/joe/index.html");
    * Note - you must include the url type -- either "http://" or
    * "file://".
    public class BrowserControl
         * Display a file in the system browser.  If you want to display a
         * file, you must include the absolute path name.
         * @param url the file's url (the url must start with either "http://"
    or
         * "file://").
        public static void displayURL(String url) throws Exception
            boolean windows = isWindowsPlatform();
            String cmd = null;
            try
                if (windows)
                    // cmd = 'rundll32 url.dll,FileProtocolHandler http://...'
                    cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
                    Process p = Runtime.getRuntime().exec(cmd);
                else
                    // Under Unix, Netscape has to be running for the "-remote"
                    // command to work.  So, we try sending the command and
                    // check for an exit value.  If the exit command is 0,
                    // it worked, otherwise we need to start the browser.
                    // cmd = 'netscape -remote openURL(http://www.javaworld.com)'
                    cmd = UNIX_PATH + " " + UNIX_FLAG + "(" + url + ")";
                    Process p = Runtime.getRuntime().exec(cmd);
                    try
                        // wait for exit code -- if it's 0, command worked,
                        // otherwise we need to start the browser up.
                        int exitCode = p.waitFor();
                        if (exitCode != 0)
                            // Command failed, start up the browser
                            // cmd = 'netscape http://www.javaworld.com'
                            cmd = UNIX_PATH + " "  + url;
                            p = Runtime.getRuntime().exec(cmd);
                    catch(InterruptedException x)
                        System.err.println("Error bringing up browser, cmd='" +
                                           cmd + "'");
                        System.err.println("Caught: " + x);
                        throw x;
            catch(IOException x)
                // couldn't exec browser
                System.err.println("Could not invoke browser, command=" + cmd);
                System.err.println("Caught: " + x);
                throw x;
         * Try to determine whether this application is running under Windows
         * or some other platform by examing the "os.name" property.
         * @return true if this application is running under a Windows OS
        public static boolean isWindowsPlatform()
            String os = System.getProperty("os.name");
            if ( os != null && os.startsWith(WIN_ID))
                return true;
            else
                return false;
         * Simple example.
        public static void main(String[] args)
          try
    //        displayURL("file://c:\\Manual\\Amphibian Accounting Help Test 3.pdf");
    //        displayURL("http://www.pro7.co.za");
            Properties prop = System.getProperties();
    //        Enumeration enum = prop.propertyNames();
            Enumeration enum = prop.keys();
            while(enum.hasMoreElements())
              enum.nextElement();
          catch(Exception e)
        // Used to identify the windows platform.
        private static final String WIN_ID = "Windows";
        // The default system browser under windows.
        private static final String WIN_PATH = "rundll32";
        // The flag to display a url.
        private static final String WIN_FLAG = "url.dll,FileProtocolHandler";
        // The default browser under unix.
        private static final String UNIX_PATH = "netscape";
        // The flag to display a url.
        private static final String UNIX_FLAG = "-remote openURL";
    }If you find a better solution please let me know!
    Regards
    Michael Williams

  • How do i prevent my open web pages from being deleted when the system is being restarted

    windows 7
    how

    Do you mean pages that are reopened in tabs via session restore?
    * http://kb.mozillazine.org/Session_Restore
    Make sure that you do not use [[Clear Recent History]] to clear the 'Browsing History' when you close Firefox.<br />
    If you use [[Clear Recent History]] to clear the 'Browsing History' when you close Firefox then restoring tabs from the last session ("Save & Quit" or "Show my windows and tabs from last time") doesn't work.

  • ERROR message:  How do I create a New Web page from a template?

    The following ERROR MESSAGE appears, after I click the
    "Create" button on the "New from Template" dialogue box. . .
    quote:
    MACROMEDIA DREAMWEAVER DIALOGUE BOX READS:
    < ! > There is an error at line 72, column 8 (absolute
    position 3287) of "my Website": Unbalanced Head tag
    What
    should happen is that the new page opens in the Document
    window, according to the Dreamweaver 8 text, Pg. 498.
    If anyone can help me troubleshoot this, I would greatly
    appreciate it.
    Respectfully, Ona

    OnaTutors wrote:
    > Can someone help me out with this Template, please.
    >
    > I've had to skip 10 pages of the Dreamweaver 8 text
    because the Template will
    > not save and I get this ERROR message.
    >
    > Thank you for helping me.
    >
    > This is a great FORUM!
    >
    > Respectfully, Ona
    >
    As Murray has said you need to remove the second closing
    </head> tag
    from your code and also move the 'PageHeading' ediatble
    region OUTSIDE
    of its container <!-- TemplateBeginEditable
    name="PageHeading"
    --><h1></h1><!-- TemplateEndEditable -->
    The code below has been corrected:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Cosmatic - Label</title>
    <!-- TemplateEndEditable -->
    <link href="../Stylesheets/cosmatic_styles.css"
    rel="stylesheet"
    type="text/css" />
    <script type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
    var i,x,a=document.MM_sr;
    for(i=0;a&&i<a.length&&(x=a
    )&&x.oSrc;i++)
    x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0;
    i<a.length;
    i++)
    if (a.indexOf("#")!=0){ d.MM_p[j]=new Image;
    d.MM_p[j++].src=a
    function MM_findObj(n, d) { //v4.01
    var p,i,x; if(!d) d=document;
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++)
    x=d.forms[n];
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    x=MM_findObj(n,d.layers
    .document);
    if(!x && d.getElementById) x=d.getElementById(n);
    return x;
    function MM_swapImage() { //v3.0
    var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
    Array;
    for(i=0;i<(a.length-2);i+=3)
    if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x;
    if(!x.oSrc)
    x.oSrc=x.src; x.src=a[i+2];}
    function MM_nbGroup(event, grpName) { //v6.0
    var i,img,nbArr,args=MM_nbGroup.arguments;
    if (event == "init" && args.length > 2) {
    if ((img = MM_findObj(args[2])) != null &&
    !img.MM_init) {
    img.MM_init = true; img.MM_up = args[3]; img.MM_dn =
    img.src;
    if ((nbArr = document[grpName]) == null) nbArr =
    document[grpName] = new
    Array();
    nbArr[nbArr.length] = img;
    for (i=4; i < args.length-1; i+=2) if ((img =
    MM_findObj(args
    )) !=
    null) {
    if (!img.MM_up) img.MM_up = img.src;
    img.src = img.MM_dn = args[i+1];
    nbArr[nbArr.length] = img;
    } else if (event == "over") {
    document.MM_nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img =
    MM_findObj(args)) !=
    null) {
    if (!img.MM_up) img.MM_up = img.src;
    img.src = (img.MM_dn && args[i+2]) ? args[i+2] :
    ((args[i+1])?
    args[i+1]
    : img.MM_up);
    nbArr[nbArr.length] = img;
    } else if (event == "out" ) {
    for (i=0; i < document.MM_nbOver.length; i++) {
    img = document.MM_nbOver
    ; img.src = (img.MM_dn) ? img.MM_dn :
    img.MM_up; }
    } else if (event == "down") {
    nbArr = document[grpName];
    if (nbArr)
    for (i=0; i < nbArr.length; i++) { img=nbArr; img.src
    =
    img.MM_up;
    img.MM_dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img =
    MM_findObj(args
    )) !=
    null) {
    if (!img.MM_up) img.MM_up = img.src;
    img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
    nbArr[nbArr.length] = img;
    //-->
    </script>
    <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    </head>
    <body
    onload="MM_preloadImages('../Graphics/CosmaticLogoRollover.gif','../Graphics/lab
    elOver.gif','../Graphics/labelOWD.gif','../Graphics/bandsDown.gif','../Graphics/
    bandsOver.gif','../Graphics/bandsOWD.gif','../Graphics/catalogueDown.gif','../Gr
    aphics/catalogueOver.gif','../Graphics/catalogueOWD.gif','../Graphics/tourdatesD
    own.gif','../Graphics/tourdatesOver.gif','../Graphics/tourdatesOWD.gif','../Grap
    hics/contactDown.gif','../Graphics/contactOver.gif','../Graphics/contactOWD.gif'
    ,'../Graphics/labelDown.gif')">
    <p><a href="../index.htm" target="_top"
    onmouseover="MM_swapImage('LogoRollover','','../Graphics/CosmaticLogoRollover.gi
    f',1)" onmouseout="MM_swapImgRestore()"><img
    src="../Graphics/CosmaticLogo.gif"
    alt="Cosmatic company logo, link to home page"
    name="LogoRollover"
    width="283"
    height="109" border="0" id="LogoRollover"
    /></a></p>
    <table border="0" align="right" cellpadding="0"
    cellspacing="0">
    <tr>
    <td><a href="../label.htm" target="_top"
    onclick="MM_nbGroup('down','group1','Label','../Graphics/labelDown.gif',1)"
    onmouseover="MM_nbGroup('over','Label','../Graphics/labelOver.gif','../Graphics/
    labelOWD.gif',1)" onmouseout="MM_nbGroup('out')"><img
    src="../Graphics/label.gif" alt="label" name="Label"
    border="0" id="Label"
    onload="" /></a></td>
    <td><a href="../catalogue.htm" target="_top"
    onclick="MM_nbGroup('down','group1','Catalogue','../Graphics/catalogueDown.gif',
    1)"
    onmouseover="MM_nbGroup('over','Catalogue','../Graphics/catalogueOver.gif','../G
    raphics/catalogueOWD.gif',1)"
    onmouseout="MM_nbGroup('out')"><img
    src="../Graphics/catalogue.gif" alt="catalogue"
    name="Catalogue"
    width="106"
    height="26" border="0" id="Catalogue" onload=""
    /></a></td>
    <td><a href="../bands.htm" target="_top"
    onclick="MM_nbGroup('down','group1','Bands','../Graphics/bandsDown.gif',1)"
    onmouseover="MM_nbGroup('over','Bands','../Graphics/bandsOver.gif','../Graphics/
    bandsOWD.gif',1)" onmouseout="MM_nbGroup('out')"><img
    src="../Graphics/bands.gif" alt="bands" name="Bands"
    width="71" height="26"
    border="0" id="Bands" onload="" /></a></td>
    <td><a href="../tourdates.htm" target="_top"
    onclick="MM_nbGroup('down','group1','TourDates','../Graphics/tourdatesDown.gif',
    1)"
    onmouseover="MM_nbGroup('over','TourDates','../Graphics/tourdatesOver.gif','../G
    raphics/tourdatesOWD.gif',1)"
    onmouseout="MM_nbGroup('out')"><img
    src="../Graphics/tourdates.gif" alt="tour dates"
    name="TourDates"
    width="108"
    height="26" border="0" id="TourDates" onload=""
    /></a></td>
    <td><a href="../contact.htm" target="_top"
    onclick="MM_nbGroup('down','group1','Contact','../Graphics/contactDown.gif',1)"
    onmouseover="MM_nbGroup('over','Contact','../Graphics/contactOver.gif','../Graph
    ics/contactOWD.gif',1)"
    onmouseout="MM_nbGroup('out')"><img
    src="../Graphics/contact.gif" alt="contact" name="Contact"
    width="83"
    height="26" border="0" id="Contact" onload=""
    /></a></td>
    </tr>
    </table>
    <p align="right"> </p>
    <!-- TemplateBeginEditable name="PageHeading"
    --><h1>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    rsion=5,0,0,0" width="558" height="46">
    <param name="BGCOLOR" value="" />
    <param name="movie" value="../Media/HeadingTemplate.swf"
    />
    <param name="quality" value="high" />
    <embed src="../Media/HeadingTemplate.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Vers
    ion=ShockwaveFlash" type="application/x-shockwave-flash"
    width="558"
    height="46" ></embed>
    </object>
    </h1><!-- TemplateEndEditable -->
    <h2> </h2>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <!-- TemplateBeginRepeat name="RepeatRegion1" -->
    <tr>
    <td><!-- TemplateBeginEditable name="Content"
    --> <!--
    TemplateEndEditable -->Add content here. </td>
    </tr>
    <!-- TemplateEndRepeat -->
    </table>
    <p> </p>
    <p class="cosmatic_footer"><a
    href="mailto:[email protected]">&copy;
    Cosmatic, Inc. 2008 </a></p>
    </body>
    </html>

  • How can I launch a web browser from my Java application?

    I've reed about this at Question of the Week (http://developer.java.sun.com/developer/qow/archive/15/index.html). It doesn't work for me. I'm running win2000 and trying:
    try {
    Runtime.getRuntime().exec("start iexplore http://java.sun.com");
    } catch (Exception e) {
    System.out.println( e.getMessage() );
    I get:
    CreateProcess: start iexplore http://java.sun.com error=2
    What's wrong?

    This function will launch the default browser under Windows.
    public static void displayURL(String url) throws IOException   {
        String cmd = null;
        Process p;
        try  {
            String os = System.getProperty("os.name");     
            if (os != null && os.startsWith("Windows")) {
                if (os.startsWith("Windows 9") || os.startsWith("Windows Me"))  // Windows 9x/Me
                    cmd = "start " + url;
                else // Windows NT/2000/XP
                    cmd = "cmd /c start " + url;
                p = Runtime.getRuntime().exec(cmd);     
        catch(IOException x)        {
            // couldn't exec browser
            System.err.println("Could not invoke browser, command=" + cmd);

  • Open URL in Web Browser from a Java Application

    Hi,
    I have an HTML document that I want to load in a browser window by clicking on a button in my java GUI application.
    Any suggestions?
    Thanks.

    You can use the Process class to start the web browser with the proper command line arguments (depends on the web browser though). Or on windows, you can have your program create a batch file with the code start url (where [url] is your url), and this will open the default web browser when run (again you must run it with a Process).

  • Captivate 6: Can I hyperink to a web page from an image?

    In Captivate 6, can I hyperlink to a web page from an image?

    You can fill a smart shape with the image using the Texture button, but beware: choose a shape with the same size as the image. Maybe Sreekanth is telling the same, but I didn't get his 'assign custom image to it'? And if you want to have a pause for a shape button, you have to check it in the Timing accordion.
    Another approach is to put a click box on top of the image. You can open the URL in another window using the small triangle drop down list, and be sure to uncheck Continue Project to avoid that the playhead will continue.
    Lilybiri

  • Access existing web pages from '08?

    Here's the deal - I have had web pages set up with iWeb '06 w/Tiger, no problem. I installed (on a separate disk) Leopard, and iLife 08. So, if I boot from my Tiger disk, all is well, I can edit my web pages using iWeb '06.
    When I boot to my Leopard drive, and use iWeb '08, it just comes up to the default 'choose your layout' - it knows nothing about my existing .Mac web pages.
    How do I open my existing web pages from a different drive / partition using iWeb '08, that was created from iWeb '06 on a different boot drive?
    Many free beers await the first person to help me out on this. Thanks,
    John F

    Hi John,
    Have a look at the following page
    http://transfer.iwebfaq.org
    The only thing that changes for you is that you're transferring it from one drive to the other instead of from one computer to another.
    Please make a backup of the file before getting your site into iWeb '08 (and after if it was successful). Be sure to update the iWeb application before opening your website with it (get it to version 2.0.2)
    And note that once you updated the site to iWeb 2.0 it can't be edited in iWeb '06 anymore.
    I don't drink beer sorry...
    Regards,
    Cédric
    "I don't receive any form of compensation, financial or otherwise, from my recommendation or link"

Maybe you are looking for

  • Error while starting Managed Server - Oracle_SOA1 and WLS_Spaces

    Hi, I have installed Weblogic 10.3.3, Oracle Soa Suite 11.1.1.3 and Oracle Webcenter 11.1.1.3 32 bit on a RHEL5.5 64bit. The JRE used for all is Oracle JRockit(R) R28.0.0-679-130297-1.6.0_17-20100312-2128-linux-ia32. The Weblogic Server starts up fin

  • Why are the 3 maints done twice now? Tiger 10.4.11 bug?

    I've noticed that recently in Tiger 10.4.11 the daily, weekly and monthly tasks are done twice * in the same job*. Can some of you check your Console Logs and see if you are seeing something similar to below? Makes no sense. I wonder if this is a bug

  • Value Transfer through Characteristics in COPA Assessment

    Dear All, Here I am getting one issue regarding Revenue doubled in COPA Reports, not matching between FI & COPA reports because of SD condition types problems some of billing documents posted double revenue in COPA reports. Now I want re-post extra r

  • Using reflection in EJBs

    I'm a little unclear as to what the spec says about reflection, and I was hoping someone would be able to clarify it. Section 18.1 of the spec reads: "* The enterprise bean must not attempt to query a class to obtain information about the declared me

  • Validation of XML-Schema

    I have a question, if in the XDK there is a possibility to check a .xsd file, if it belongs to the XML Schema Definition http://www.w3.org/2000/10/XMLSchema Thanks for your help Greetings, Merry Christmas and Happy new Year Andreas