Trouble understanding "BreakWithLabelDemo" (Sun Java Tutorial)

Hi.
I've been slowly working my way through all of the Sun Java tutorials, now I've come across one I just can't wrap my head around.
It's the "BreakWithLabelDemo" tutorial located at [http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html] that is confusing me.
class BreakWithLabelDemo {
    public static void main(String[] args) {
        int[][] arrayOfInts = { { 32, 87, 3, 589 },
                                { 12, 1076, 2000, 8 },
                                { 622, 127, 77, 955 }
        int searchfor = 12;
        int i;
        int j = 0;
        boolean foundIt = false;
    search:
        for (i = 0; i < arrayOfInts.length; i++) {
            for (j = 0; j < arrayOfInts.length; j++) {
if (arrayOfInts[i][j] == searchfor) {
foundIt = true;
break search;
if (foundIt) {
System.out.println("Found " + searchfor +
" at " + i + ", " + j);
} else {
System.out.println(searchfor
+ " not in the array");
Now it's not understanding what the +break+ statement does that's the problem, it's the nested +for+ loops they've used to demonstrate it that is, and in particularly the code.arrayOfInts[i].length;Now, could someone please enlighten me as to what this statement returns to be evaluated against the variable +j+.
For instance does it simply return the length of the array +arrayOfInts+ and if so why is it referencing a specific element within the array denoted by the variable +i+ ? Also the array is multidimensional when it's declared and initialized and yet it's treated as a regular array in the code above? Why doesn't that throw an error?
Any help walking me through this piece of code would be fantastic. Thank you.
-nexus                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

int[][] arrayOfInts = ...In effect arrayOfInts is a multidimensional array. But it's important to remember that Java has no notion of array dimension. It's just an array - an array consisting of three things in order: {32, 87, 3, 589}, {12, 1076, 2000, 8}, and {622, 127, 77, 955}. It just so happens that these elements are also arrays.
Because it's just an array arrayOfInts also has a length. The length is three because there's three elements. It doesn't matter that each of the elements has a length 4, arrayOfInts has length 3.
In this particular array the elements are also arrays, so it makes sense to ask what their length is. For instance, the last one, {622, 127, 77, 955}, is just arrayOfInts[2] and it has length 4. We can refer to its length as arrayOfInts[2].length and write code like:
if(arrayOfInts[2].length == 4) {
    // this will be executed for the array in the example
}Where arrays are multidimensional - in the sense that their elements are also arrays - they can be "ragged". For instance
int[][] arrayOfInts = {
    {32, 87, 3, 589},
    {12},
    {622, 127, 77, 955, -1, 42, 5}
};The array elements all have different lengths and that is why the inner for loop uses the expression j<arrayOfInts.length so that it loops through the correct number of elements of the i-th element of [i]arrayOfInts.

Similar Messages

  • Big troubles with loading Sun Java on my laptop,

    I can download Jre-1_~1.exx 16291424 this Java download from Java, only it won't load on my computer laptop, I have a IBM Thinkpad that also has 128 bits of memory, and is running Windows 98, and Internet Explorer 6.0, I keep getting this error all the time, the error is 1722, there is a problem with this Windows Installing Package. I really need to install this java program or else I can't go to a lot of places. Please someone help me out.

    please help me for live chat in facebook for quick response thanks

  • Java tutorial - helps, problem  is i don't understand the API

    I don't understand the JAVA Tutorials or the API

    Take two steps back.
    Buy a book on basic Java Programming. You need to understand the concepts behind programming before you should start reading the API.
    But kudos for at least trying to read the API.
    Now look at the column on the left, and follow the link called [url http://developer.java.sun.com/developer/onlineTraining/] Tutorials 
    and then the link titled [url http://java.sun.com/docs/books/tutorial/index.html]The Java Tutorial (Java Series).
    And finally read through the sections starting with [url http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html]Your First Cup of Java.
    Then once you have been through all of that, come back and ask for clarification
    on any specific points that you have trouble understanding.
    Finally (Because the Finally always gets executed) Try taking a class in java programming.
    regards

  • Is there any core java tutorial form sun site

    HI all,
    is there any core java tutorial form sun site where i can down load it study them on offline rather that seeing it on line.
    can any give me link for it.........
    vijay

    thank you for reply ,
    i have googled and find this help full in getting the details and u can download from here.
    "http://java.sun.com/docs/books/tutorial/information/download.html"
    vijay

  • Sun Java Tutorials: java.lang.NoClassDefFoundError:

    Hi,
    I have recently started with java and been running through the Tutorials.
    Here is my computer setup:
    Windows EXP Pro
    J2SE and NetBeans IDE Bundle NB 4.1 / J2SE 5.0 Update 3 FCS
    Firefox 1.0.4 (java/javascript enabled)
    Eclpise 3.1.0
    I have been encountering the following problem quite often with those tutorials:
    Some of those just wont work on my browser eg. http://java.sun.com/docs/books/tutorial/2d/display/ShapeMover.html
    Java console gives following errors:
    java.lang.NoClassDefFoundError: SMCanvas
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    However some of them work just fine. eg.
    http://java.sun.com/docs/books/tutorial/2d/images/BufferedShapeMover.html
    If I download the code for them and compile using the Eclipse3.1.0, everything works just fine.
    Can this be a problem with the classpath variable? I honestly don't understand anything about using that, but since some of those work and some don't, I don't believe it is a problem with classpaths (but what do I know...).
    So, if you have any advise to give I'd be grateful for it.

    So, if you have any advise to give I'd be grateful for it.The problem is not yours or your classpath (as the prior replies indicate.)
    It's caused by erroneous, missing or mislocated files at the Java Tutorial website.
    The Tutorial html file that's executed when you click the link in the page specifies the location of the applet files - typically in a subdirectory. The class file or some other file can't be found, causing the error.
    This has been a continuing problem with the Tutorial, apparently due to the updating that goes on. If you wish to let the Tutorial maintainers, know about the error, there's a link on the Tutorial's main page.

  • Sun java script to support games sites

    which javascript do i need to support game sites such as pogo?
    i had sun javascript when i had windows 95, had very few problems.
    about a week ago ,i replaced win 95 with win98, since then , nothing but problems.pogo games especially rely on players to have sun javascript to be able to play the games.
    i know there is conflict between sun and microsoft, but why should we as customers of both to be left in a proverbial limbo?
    we cannot have the games without microsoft, and we cannot play the games witout sun javascript.
    are we just pawns to the computer industry because of greed?
    i do not understand why sun has not responded, when i inquired for the information i asked for, requesting which javascript i need to enjoy the puter games i play.
    should someone respond to this, please do so in terms a newbie can understand, computer language is way too cofusing for someone who was born over 60 years ago, and has only had a computer for about a year.
    confused no end here.

    matthew-martin wrote:
    Why SHOULDN'T the question be posed here on what you say is a JAVA forum? First of all pogo and java each are holdoing one end of the proverbial "stick". It doesn't matter who doesn't talk to who, btoh are at fault because neither wants to go through the trouble to facilitate the other. I myself was a happy pogo camper until Java (JRE) upgraded and at the same time IE8 beta 2 came out and also upgrades were made to IE7 also.
    So why shouldn't a little heat be put on SUN and it's java monster for upgrading BEYOND the capabilities of IE and pogo....and microsoft as a whole.
    Because the problem is POGO not Java.
    If you pump gas at the gas station and the gas is actually water do you expect the car manufacter to fix your car?
    And if they gave you the car for free would you expect them to fix it then?
    By the way if you want to pay Sun to fix your computer I am certain that Sun Sales would be happy to start negotiating a contract.
    bottom line sun...java...and their subsidiaries, as smart as they are.....figuratively made parts for a machine that hasn't been invented yet. That my friends is where the problem lies.
    Fact....older versions of JRE work better with many gaming communities, but the new ones are needed to support the big corporate programming contracts. Try running an older version for games...or even remove JRE from your pc and install the older MS VM instead.
    Then don't upgrade.
    Face it...we in the gaming community are just pee-ons and our complaints don't rate compared with the need to develope platforms which can be sold to the institutions with the deepest pockets.
    SUN/JAVA....you're getting a bad "rep".
    whatch...this post will be quaranteened in a heartbeat!You want to play POGO and because it doesn't work you going to stop programming in Java?
    Do you play games written in other languages? Have you read of the compatibility problems and upgrade problems with them? Do you expect all game programming to stop because every language has a problem with some people?

  • How to cooperate the current mail system with Sun Java Commnication Suite 5

    Dear all and Shane,
    Excuse me for bothering you again.
    Due to time limited, I would like to know how to cooperate the current mail system with Sun Java Commnication Suite 5. I mean I would like to use current mail system (mailscanner + postfix + courier-IMAP + clamav + spamassassin + webmail) and use the outlook connector to connect to Sun Java COMMS 5 to share the calendar, contacts only.
    Right now I have done the testing by using outlook, mac mail, thunderbird to share calendar,contacts via Sun Java COMMS 5 in Centos Linux 5.
    My plan is as following
    1. Sun Java Communication suites 5 server ( I called it comms5 ) will be in DMZ zone and will open the necessary ports in firewall.
    2. I will create more than six sub domain name in Sun Delegate server and the necessary accounts within these domain names.
    3. All messages will be transmitted via Postfix and clients will retrieve from Courier-IMAP
    4. All Clients included other branch offices will use different mail clients to share their calendars, contacts via COMMS5 ( But how will COMMS handle the messages such like invitation ? )
    Any suggestions will appreciate.
    PS: Is it possible to classify the contacts in outlook address book ?
    For example, when user click the receiver, it will show like as following
    GLOBAL ADDRESS BOOK
    --Director
    --and so on
    ----CN.BRANCH OFFICE
    -----------CN01 EMAIL ADDRESS
    -----------CN02 EMAIL ADDRESS
    -----------CN03 EMAIL ADDRESS
    and so on
    ----JP.BRANCH OFFICE
    -----------JP01 EMAIL ADDRESS
    -----------JP02 EMAIL ADDRESS
    -----------JP03 EMAIL ADDRESS
    and so on
    ----TW.BRANCH OFFICE
    and Due to the user account is located in CN.BRANCH OFFICE, it will extend the CN.BRANCH OFFICE contacts level.
    Excuse me for bad English, hope you can understand it.
    Best Regards,
    Bruce

    Dogz wrote:
    Due to time limited, I would like to know how to cooperate the current mail system with Sun Java Commnication Suite 5.
    I mean I would like to use current mail system (mailscanner + postfix + courier-IMAP + clamav + spamassassin + webmail) and use the outlook connector to connect to Sun Java COMMS 5 to share the calendar, contacts only.Getting your current mail system to 'co-operate' in this way will require more time then simply migrating the accounts of users on the current mail system to the comm-suite-5 installation and making use of UWC for Webmail access and ClamAV/SpamAssassin integration within the messaging MTA.
    Also the use of Outlook Connector with a non-Sun IMAP backend isn't supported, nor is the use of a non-Sun IMAP backend possible with UWC.
    Right now I have done the testing by using outlook, mac mail, thunderbird to share calendar,contacts via Sun Java COMMS 5 in Centos Linux 5. Once again I should remind you that CentOS is not a supported platform for comm-suite-5
    Regards,
    Shane.

  • Slow start-up for JSF projects on Sun Java System Application Server 8.2?

    App. Server: Sun Java System Application Server 8.2
    I really don't understand why a JSF project starts-up so slow on Sun Java System Application Server 8.2.
    I've gone through the "Overview of Sun Java System Application Server Performance" guide and tuned my server.
    It's not memory or processor, I am developing on a SunOS 5.8 Generic_117350-27 sun4u sparc SUNW,UltraAX-MP.
    The JSF project contains one index.jsp and one login.faces - that's it. But it takes up towards 15 seconds to load the page, if I type:
    http://<domain>:8080/login/
    I would believe that the application should be a lot faster.
    What can I do to solve this?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Yes I am.
    Right now I have:
    <!-- Faces Servlet -->
      <servlet>
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup> -1 </load-on-startup>
      </servlet>
      <servlet>
          <servlet-name>Persistent Faces Servlet</servlet-name>
          <servlet-class>com.icesoft.faces.webapp.xmlhttp.PersistentFacesServlet</servlet-class>
          <load-on-startup> 1 </load-on-startup>
      </servlet>
      <servlet>
          <servlet-name>Blocking Servlet</servlet-name>
          <servlet-class>com.icesoft.faces.webapp.xmlhttp.BlockingServlet</servlet-class>
          <load-on-startup> 1 </load-on-startup>
      </servlet>
      <!-- Preload -->
      <servlet>
          <servlet-name>Transaction Browser</servlet-name>
          <jsp-file>/transactionbrowser.jspx</jsp-file>
          <load-on-startup> 1 </load-on-startup>
      </servlet>It still doesn't work, so you may be right.
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Sun Java System Application Server  into Netbean 6.1

    Hi , I am new to Java community,
    I like to lean J2EE so I downloaded
    jdk-1_5_0_16-windows-i586-p and installed
    then I installed
    java-tools-bundle-update5-windows
    I am trying to do the initial setup and do the sample
    The Java EE 5 Tutorial
    See this tutorial for information on building and deploying Java EE 5 applications.
    When I try to register the Sun Java System Application Server into Netbean 6.1
    I could not I have warning, says
    Provide a valid server installation location
    But I gave, C:\Sun\AppServer
    If you guys can give any light on this appreciated

    It doesn't sound like you have installed a Java EE (formerly J2EE) application server. Your download of "jdk-1_5_0_16-windows-i586-p" is Java Standard Edition, which you need, but you also need an implementation of Java Enterprise Edition. The [Sun Java System Application Server|http://developers.sun.com/appserver/] is certainly a valid Java EE implementation, but I don't see in your steps where you downloaded that. There are several types of NetBeans downloads ("bundles") you can perform and I believe that one or more bundles (such as "All" and "Web & Java EE") includes GlassFish as part of the download. I recommend using the GlassFish Java EE implementation that comes with NetBeans 6.1 for learning how to use Java EE with NetBeans. Alternatively, you can download GlassFish separately at [https://glassfish.dev.java.net/|https://glassfish.dev.java.net/].

  • Sun Java System Application Server installation location on windows

    Hi there...
    I'm just doing the "Your First Cup: An Introduction to the Java EE Platform" tutorial for the first time. I'm trying to add the Sun Java System Application Server in NetBeans IDE. It's asking me to select the Platform Location, and I have no idea where that is. No help instructions I've found say where it normally gets installed, and I've found now mention of it on the web.
    Can anyone tell me the location where this is supposed to be located? I HAVE installed the Java EE SDK 5 for Windows. The location it offers as a default is "C:\Program Files\glassfish-v2ur2\", but there is a red message at the bottom of the dialog that reads "Provide a valid Application Server Installation Location for 'Sun Java System App...". The Register Local Default Domain drop-down box has not options to select, either.
    I would try and search some more, but I just don't know what to search for. If anyone can offer any insight into this, I appreciate it.
    Thanks a ton!!!
    Orion Carrier

    I`ve posted a shorter version of the question in the hopes of getting a timely answer. Thanks

  • SOAP on Sun Java System Application Server 9

    I am running the Sun Java System Application Server 9 (SJSAS). My goal is to have SOAP running on the server to handle incoming messages. I cannot find the answers to the following critical questions anywhere.
    1. Should I be creating my own soap client/server with the javax.xml.soap package, using some utility that might come bundled with SJSAS that I don't know about, or using something like Apache AXIS?
    2. Whatever I use, how should it be deployed to the application server? AXIS comes as a bunch of jar files, but to deploy a web service to SJSAS requires a war. Instructions for other application servers for using AXIS seem not to apply for SJSAS for this reason.
    3. After I get the server installed, how do I actually connect that to any of the rest of the code on my server. For instance, would I put the actual business logic to query the persistence layer in a stateless session bean and then somehow reference the methods in that bean to compose the return message to go to the client?
    If anybody knows of or is willing to create a tutorial to achieve this goal on SJSAS and has a place to post it, that would probably be a great contribution to the information available online. If I am missing such a tutorial, I apologize and would be glad to have it pointed out to me. Any assistance with actually deploying soap for SJSAS would be tremendously helpful. There is a lot of why to use it, when to use it, what the spec is, and so on online. There is precious little how to use it and even less how to deploy it. Thank you for any help.
    Ryan

    the sun java system application server 8 and 9 comes with certutil and pk12util (http://www.mozilla.org/projects/security/pki/nss/tools/pk12util.html) programes. using them you can import them
    or check on google how to conver pk12 certs to NSS format.
    another option is to open the certificate in Internet explorer and save to cer format and then convert.

  • How to use KAWT with "Sun Java Wireless Toolkit 2.3 Beta"?

    Hi!
    Im new to developing java for mobile devices so all of this is pretty confusing for me. I started with installing suns:s "Wireless Toolkit 2.3 Beta" and it works fine but now I want to use awt classes so I started to look it up and that�s how I found out about kawt. I followed the tutorial at http://www.kawt.de/ and i was able to use it for Java Wireless Toolkit 1.0.4_02 so that it compiled fine and was run able.
    Then I tried the same thing in v 2.3 but I got a error that looked like this "Uncaught exception java/lang/NoClassDefFoundError: awtDemo: /awt/event/ActionListener: Cannot create class in system package." when i tried to run it. It compiled fine when I pressed the build button witch wouldn�t have happened if i hadn�t installed it correctly. So I�m wondering if someone knows were to find a tutorial for installing kawt for "Sun Java Wireless Toolkit 2.3 Beta" or if anyone knows what might be wrong?
    I'd welcome any help
    Thanks!

    If using the zip install of DSEE, you need to use your own java container to host DSEE. Try downloading the latest Tomcat (http://tomcat.apache.org) and deploying your dscc in it.

  • Sun Java Studio Enterprise 8.1

    I have an application developed with Forte For Java. Since Forte for java is no longer supported by Sun, I'd like to create a new project with Sun Java Studio Enterprise and migrate the existing java files into the new project so that I can debug and compile with Sun Java Studio Enterprise. Can anybody give some suggestions on how to do this? Or, could anybody tell me where to find a tutorial about Sun Java Studio Enterprise? I found a tutorial here: http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/index.jsp , but it is only for creating a new project from scratch with UML modeling feature. This doesn't seem to be very helpful for my situation. Thank you!

    I installed Sun Java Studio but I couldn't find the option allowing me to create a new project from scratch. In New Project dialog, there are four options: Standard, UML, Web, Samples. When I select Standard, the description says "Imports an existing Java application into a free-form IDE project. A free-form project uses your existing Ant build script to run, compile, and debug your project." I know I can use the option UML to create a new project with assistance of UML model diagram, but this is not what I want.
    Does anybody have suggestions on this? Thanks in advance.

  • Report cannot be rendered (com/sun/java/util/collections/Iterator)

    Hello all
    I'm new both to Weblogic Server and BI Publisher.
    A few days ago I thought that I managed to install BI Publisher on top of Weblogic. It turns out to be untrue because I am not able to view any report, being it a sample or a newly created one.
    Platform: Windows 2003 32-bit
    Weblogic version: 10.3.3.0
    BI Publisher version: 10.1.3.4.1 (doesn't work both w/ and w/o the latest patchset 9791839)
    And now to the problem. Whenever I try to view a report, I get an error message stating "The report cannot be rendered because of an error, please contact the administrator". Being both the user and the administrator, I am forced to press the "Error Detail" link, upon which the only thing that pops below is "com/sun/java/util/collections/Iterator" (in red).
    The same non-verbose error message appears also when running in debug mode. Weblogic logs are empty from warnings, errors, etc.
    As for the Weblogic Server, it claims that the xmlpserver application has been deployed and started successfully.
    It seems to me that the BI Publisher application is trying to use java class that doesn't exist (com.sun.java.util.collections.Iterator). Of course I have no clue how to prove that because I do not have the source code for this app.
    Oracle support is hardly able to understand the problem, so I thought maybe one of you could give me some answer.
    Any Ideas?
    Jonathan

    By the way, I deployed the app under Oracle Report's cluster. Don't know whether it matters.

  • Configuring Outbound and Inbound SMTP mails with SUN Java messaging system

    hi all,
    i am new to Solaris i have deployed SUN java comuunication Suite. How do i configure my messaging server to send outgoing mails through existing gateway and recieve inbound mails from the same gateway?
    Currently my server is connected to the internet directly i am able to send a mail to an external domain for example gmail. Can anyone help me out in understanding the default functioning of external mail routing and how do i point to a gateway?
    Thanks,
    Zafrul

    Hi,
    zkhan wrote:
    i am new to Solaris i have deployed SUN java comuunication Suite. Welcome. Some good resources you should look at are the following:
    http://www.sun.com/bigadmin/hubs/comms/overview/index.jsp
    http://msg.wikidoc.info/
    http://blogs.sun.com/factotum/
    How do i configure my messaging server to send outgoing mails through existing gateway and recieve inbound mails from the same gateway?There is two steps to this.
    To configure outgoing emails to be relayed through a gateway, you need to modify the <msg_base>/config/imta.cnf MTA configuration file and add "deamon <gateway hostname>" to your tcp_local channel configuration e.g.
    ! tcp_local
    tcp_local smtp mx single_sys remotehost inner switchchannel identnonenumeric subdirs 20 maxjobs 7
    pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel tcp_auth missingrecipientpolicy 0
    loopcheck daemon mygateway.com
    tcp-daemonTo allow the gateway system to send emails to your host unconditionally, modify the <msg_base>/config/mappings MTA configuration fail and add the gateway's IP address to the INTERNAL_IP mapping table e.g. (where the gateway has an IP of 1.2.3.4 and your system has an IP of 192.168.1.20)
    INTERNAL_IP
      $(192.168.1.20/24)  $Y
      $(1.2.3.4/32)            $Y
      127.0.0.1  $Y
      *  $NOnce you have done this you will need to rebuild the MTA configuration cache and restart the MTA processes.
    <msg_base>/sbin/imsimta cnbuild
    <msg_base>/sbin/imsimta restart
    Currently my server is connected to the internet directly i am able to send a mail to an external domain for example gmail. Can anyone help me out in understanding the default functioning of external mail routing and how do i point to a gateway?For the understanding, you will need to read-up the manuals. Messaging server is a flexible and powerful product for sending/processing emails, but with that flexibility comes complexity. I suggest you start by reading the Messaging Server Administration Guide:
    http://docs.sun.com/app/docs/doc/819-4428
    Regards,
    Shane.

Maybe you are looking for

  • Short Dump while executing New Hire (action type) in PA40

    Hi All, i am getting short dump while executing PA40 for new hire action type can anyone look into this and guide as i am new to HCM. Category               ABAP Programming Error                                                       Runtime Errors  

  • Unable to select IS from the drop down list in message mapping

    Hi, i  know that we can monitor 'Integration server' in message monitoring rather than choosing integration engine or adapter engine. But in our existing land scapes i am unable to select IS from the drop down list in message mapping. using PI 7.1 SP

  • Error message and close down application

    Error message and close down application when trying to import images in Lightroom. Any thoughts?

  • Integartion of UFT12.01 and Load Runner.

    Hi, Issue : How to integarte the UFT12.01 with Load Runner? Please give one example if possible? Thanks

  • Re activate depreciation area: AFBN/RAFABNEW

    Hi Experts, We are trying to re activate an old depreciation area. I came across a note explaing how AFBN can help re activate. But the job RAFABNEW runs for chart of depreciation. I want to know if this can be configured to run for one company code.