Diff between  jre se v1.4.2_01 and jre se v1.4.2_13

i am working on clarity and trying to connect it to Ms Project 2002/3
i am clarity version 7.5.3
the connector behaved unpredictably based on the jre version _01 and _13
it works with _13 and needs _01 to be uninstalled..
whats the reason...

You'll have to figure that answer out yourself. Review the release documentation for each of the various Java releases 1.4.2_02 through 1.4.2_13 for changes that were made.

Similar Messages

  • Diff between the J2ee port,webdispatcher port and ICM port

    HI All,
    Can some one please explain the diff between the web dispatcher port and J2ee port, I am able to under stand the diff between the web dispatcher port and the ICM port. What I understood is that all the requests will be passed to ICM through the web dispatcher , but what is the j2ee port refers ?
    Thanks & Regard
    Rajesh Meda

    Hi Rajesh,
    The Webdispatcher,ICM servers as services to reach the ABAP and Java stack respectively. ICM is thread oriented.
    Any communication flows through Webdispatcher ---> ICM ---> ABAP/Java Stack.
    Every instance has a ICM process in it. Webdispatcher is mainly used for load balancing and to be placed in DMZ zone for more protection of the communication channel. All the communication happens via port . Each of the service can be reached by independent ports or via Webdispatcher>ICM> J2ee.
    Like direct port for J2ee we also have direct port for ABAP message server.
    Hope this clarrifies. Kindly let me know in case of further queries.

  • Diff between FSS0-"bal in local curr" and OBY6- no forex dif when clear in

    I want to know the difference between the setting FSS0-only balances in local currency and the OBY6 - no forex rate difference when clearing in local currency.
    I tried to fined the differnce by furfing on the internet and also by F1 help from SAP.  The examples which were provided are not clear to me and any body explain with a simple example.
    I want to know
    1. difference between the two settings
    2.under what circumstances these setting need to be applied, with an example

    HI Anil,
    Please refer the below points.
    1. FS00- Balance in local currency
    If you set the above indicator then while posting any document with more than one currency then this particular GL account will
    update only local currnecy amounts . (In document this particular Gl account is having only currency and it is local currency).
    GL 2000            1000 DEM       600 USD
    GL 1000                                   600 USD
    2.  OBY6  No forex diff when clearing.
    You have one Invoice with Exchanger rate X
    but clearing exchange rate is Y
    then
    If above indicator is set then while clearing the Invoice (posted with two currency and exchange rate  X)
                            Payment currency            Local currency
    Cash receipt             650                             650
    Clearing of receivable        650                             650
    then system will not consider exchange rates here.
    other wise it will consider the exchange rate Y and it will post like below
                            Payment currency            Local currency
    Cash receipt             650                           650
    Clearing of receivable        550                           650
    Revenue from overpayment      100                           100
    Exchange rate losses       0                          100
    I hope above will clear you  issue.
    Reg
    Madhu M

  • What's the diff. between Sound Blaster Audigy MB Audio and the similar but ADVANCED ca

    I just bought a Dell Inspiron 53 with?the?former card, but whenever I search for more info about it, I can only find the "Advanced" version. Please, can you tell me, what's the difference between the two cards?Also,? as I was building the PC, Dell offered only two other?audio options, and this was the middle one; none of the other choices was ideal. This appears to be a bottom-of-the-barrel card, so can anyone recommend?a replacement?card for under $40-$00 that wouldproduce very high quality music for my new 5. wireless Dell speakers?Much obliged.

    I've been fiddling around in the Device Manager and it has Other Devices and under it is Multimedia Audio Controller, I can choose to either reinstall the driver udate the driver, disable it, or uninstall it. Here's what comes up on properties
    This device is not configured correctly. (Code )
    To reinstall the drivers for this device, click Reinstall Driver.
    Help would be appreciated here. I'm a big gamer and would like to have this up and running before our first CAL Match.

  • Hi this pandu can i know what is the diff between pnp &pnpce ldb

    hi,
       this pandu can i know what is the diff between pnp &pnpce logical database.
    thanks and regards,
    pandu.

    pretty much the same.. except that PNPCE has additional functionality to deal with Concurrent Employment.. PL go through <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/c6/8a15381b80436ce10000009b38f8cf/frameset.htm">SAP Help</a> for more info.
    ~Suresh

  • Diff betwn JSP 1.0, 1.1 and 2.0

    Hi all,
    Could anyone ellaborate on the diff between JSP 1.0, 1.1 and 2.0/2.1?
    Rgds,
    Seetesh

    You will find that the conepts or approach is different. The direction appears to be to NOT put java code in the JSP, but rather use EL (expression language) tags to address common functions. You can read about them in various locations around the Internet if you do a google search for them.
    The JSTL (JSP standard tag library) is a huge step in the right direction to simpliyfing JSP code. It provides a level of abstraction to the things like XML parsing, XSL transformations, getting access to the "core" request and response contexts in a page and database access. If you are not using that tag library, it will save you TONS of time and is well worth investigating.
    You can still use Java code in your pages just as always. It's just the design philosophies have changed a bit. And in some ways, for the better.

  • In LSMW, what is diff between LSMW-BAPI and LSMW-IDOC

    hello all
    In LSMW, what is diff between LSMW-BAPI and LSMW-IDOC

    Hi Swamy,
    The differences between IDoc and BAPI are as follows: 
    IDOC
    IDocs are text encoded documents with a rigid structure that are used to exchange data between R/3 and a foreign system.
    Idocs are processed asynchronously and no information whatsoever is returned to the client.
    The target system need not be always online. The IDOC would be created and would send the IDOC once the target system is available (tRFC concept). Hence supports guaranteed delivery.
    With asynchronous links the sub-process on the client can be finished even if the communication line or the server is not available. In this case the message is stored in the database and the communication can be done later.
    The disadvantage of asynchronous links is that the sub-process on the server cannot return information to the calling sub-process on the client. A special way for sending information back to the client is required. In addition, a special error handling mechanism is required to handle errors on the receiving side.
    IDOCs may be more changeable from release to release.
    IDOCs  are poorly documented.
    BAPI
    BAPIs are a subset of the RFC-enabled function modules, especially designed as Application Programming Interface (API) to the SAP business object, or in other words: are function modules officially released by SAP to be called from external programs.
    BAPIs are called synchronously and (usually) return information.
    For BAPIs the client code needs to do the appropriate error handling.
    Problems with synchronous links occur if the communication line or the server is temporarily not available. If this happens, the sub-process on the client cannot be finished (otherwise there would be data inconsistencies).
    Synchronous links have the advantage that the sub-process on the server can return values to the sub-process on the client that has started the link.
    BAPIs are not totally immune to upgrades.
    BAPIs are reasonably well documented.
    Reward points if useful.
    Best Regards,
    Sekhar

  • What's the difference between JRE and HotSpot

    What's the difference between JRE and HotSpot?
    Where can i find HotSpot for Solaris?
    tks!

    The difference between the two is explained at:
    http://www.sun.ca/software/communitysource/hotspot/
    and
    http://www.sun.ca/software/communitysource/hotspot/faq.html
    It's included in the J2SE v1.3.1 release.

  • Diff between Thin client and Rich client

    Hi Everyone,
              Can someone give me a clear picture of the what is the diff between Thin client and Rich client.
    Thanks,
    Krishna

    Hi,
    thick client (rich client) has/stores all the data inside itself
    so it can do application processing without the server with data
    thin client uses resources from host computer (from server)
    and wihtout that you are not able to work with that kind of client
    does that answer your question ?
    Regards,
    michal

  • Diff between Seeburger Adapter and File Adapter

    Hi All,
             My company needs to interact with some banks and the banks are particular that they want SFTP, which is not supported by  File Adapter, so we have decided to go with Seeburger adapter.
    Now what are the differences between File adapter and seeburger adapter?
    I believe that Seeburger adapter does not support File Content Conversion, Archiving etc.
    Could you all pls put some light on the diff between file adapter and seeburger adapter when it comes to dealing with files?
    Xier

    Hi
    You are aware with working of File Adapter.
    The most direct way of using the Seeburger adaptors is to configure the BIC as a module. There is a software component from seeburger called bicmapper which will allow you to
    1. Define or import the inbound message metadefinition in various formats ( edifact, xml,...)
    2. Using a mapping create an xml variant as the output metadefinition or edifact in the other direction.
    3. Create a one to one mapping between input en output.
    4. Export the metadata in xsd or sda format for import in XI
    5. Generate an SDA which can be deployed in XI and used as a module.
    Have a look here,
    http://www.seeburger.com/fileadmin/com/pdf/SAP_Exchange_Infrastructure_Integratio_Strategy.pdf
    Some Seeburger related information
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e2aeb02c-0601-0010-d680-c9be61ffa390
    Go through this threads:
    http://www.seeburger.com/fileadmin/com/pdf/SAP_Exchange_Infrastructure_Integratio_Strategy.pdf
    Need Material on Seeburger Adapters.
    Seeburger Adapter
    Installing seeburger adapter
    http://www.seeburger.com/xi-adapters/
    Thanks

  • Diff. between Tax Code and Condition Types

    Hi,
    What is the diff. between Tax Code and Condition Type???
    Why we maintain Tax Codes under Invoice Tab in PO, when Condition Types are available for Calculation Procedure...???
    Please guide..

    hi..
    Tax code : Tax code in some what more specific for calculating the tax...some material is having 2% tax..some having 3 % tax..etc..and these are input tax...so..these tax code will be of type input tax..
    now..based on the nature of tax type amount will be calculated....
    suppose tax code is calculation of 2 condtion type so ..we can do it in tax code conditon record fv11 also..
    so..tax code can be a combination of cond type...
    where as through cond type also we can also achieve this..by using one statistical cond type...
    Cond Type :  cond type is for the daily pricing configuration..how system will calculate the price for a centain material we can make define the rules here...
    Try this out..
    Thans

  • Diff between oracle 10g and 11g

    Can any one could tell me what is the main diff between oracle 10g and 11g ?
    Thanks in Advance
    Venkat

    Hi,
    You can read
    http://www.oracle.com/technetwork/articles/sql/index-082320.html
    http://www.oracle.com/technetwork/articles/sql/index-099021.html
    Anand

  • Diff between Phy inv number and Phy Inv reference in Mi01,Mi09

    Hello Experts....
    need ur help!!
    Can any one explain me what is the diff between Physical inventory number and Physical Inventory Reference in MI09 tcode.Entry count w/o reference document.
    Thanks in advance

    sapppfresher wrote:
    Hello Experts....
    >
    > need ur help!!
    >
    > Can any one explain me what is the diff between Physical inventory number and Physical Inventory Reference in MI09 tcode.Entry count w/o reference document.
    >
    > Thanks in advance
    hi,
    Physical inventory number
    Specify a number or name under which several inventory documents can be grouped together for improved processing
    Reference Number for Physical Inventory
    Specify the number of a document outside the system that relates to an inventory transaction.
    means if you are using MI01 then you have to maintain the data in mi04  . but you are using mi09 no need to maintain the datad directly you are go through with mi07 for posting the differences.
    thanking you.
    Edited by: A.Purihella on Oct 13, 2011 8:19 AM

  • Diff between interactive report and interactive alv

    Diff between interactive report and interactive alv? Suppose I have been given certain program then how I will diffrentiate that this prog should be done in interactive alv or interactive report.

    hi
    both are used for same purpose
    interactive report means an output list which displays basic details & allow user to interact, so that a new list is populated based on user-selection. With interactive list, the user can actively control data retrieval and display during the session.
    I suggest to use ALV.by using ALV we can display in Grid as well as list format.
    Output format will be good . Sorting,Filtering facilities are provided by itself.We can have column headings also.
    if helpful reward points

  • MTO(Diff between complex make to order and sales order based mass prod)

    Hi
    We are using MTO...Can anyone tell me what is the Diff between complex make to order and sales order based mass prod in finance perspective?

    Hi,
    In the case of complex make to order scenario, through MRP, the Project shall be assigned to the sales order. Then there will be milestone billling and all. In the case of mass production MTO, it is only creation of production order for each sales order item and each sales order item shall have sales order cost estimate.
    Trust this helps much and do encourage our efforts!
    Cheers!
    Edited by: Ashok Singh on Oct 28, 2008 6:53 PM

Maybe you are looking for

  • How do I change tempo (batch samples)?

    Hi, I have a bunch of loops - 2 to 4 bars in length - melodic... at 120 BPM. My project is at 70 BPM. The loops at 120 BPM are melodic - and even feel like halftime (60 bpm). I would like to get all the samples to my project tempo. The loops are .wav

  • Office Web apps not working

    Hi  All of a sudden, the office web apps is not working. I get the below issue  Could not load new WOPI Proof Keys for server XXXXX against Discovery. Also, i could not see the Office web apps site collection feature. Please suggest.

  • I can't update any of my Adobe Products. I am using Photoshop CS5 extended version

    The problem is when I open up Photoshop CS5 and go to Help > Updates. It then opens up the Adobe Application Manager. It lists Bridge CS5, Extension Manager CS5, Photoshop CS5 and Camera Raw available for updating. However when I click update, it dow

  • Enter Login System Auto Logout in sec back to Login menu.. and so on..*

    hi, Im recently on mac world. so I dunno what I have todo with this trouble. my mac just fine before I press the power button 8 seconds to turn off the system freezes. now every time I enter a password and log into my account, the system logout and b

  • Recently updated to Yosemite - now BIG problems

    I have a  2010 Macbook - 2Gb Ram.  I updated OS to Yosemite. Now everything runs painfully slow! I now hear lots of people are having problems  with Yosemite and its Ram hungry so not a good idea on a Mac with just 2 Gb Ram.  Can I go back to an olde