Modification of an Existing Project under a track

Hi Everyone,
I have a project which was already developed using NWDI Environment under a track.
what i need to do to make some changes in the existing project.
can anyone please help me out wether I need to work with  project under Active DCs or Inactive Dcs.
Thanks,
Choudary

Hi Satya,
Thanks for the reply. I have a dout.
If for modification we have to create project for the inactive dc , then what is the purpose of the active dc.
in no case for development we will be using the active dcs.
If Active dcs are the one which contain current active version code,why we have to make use of the inactive dc.
cant we sync the active dc and then create a project for the inactive dc,,
where exactly lies the difference b/w the active dc and inactive dc
can u explain a bit clearly on this..
Thanks
choudary

Similar Messages

  • Flash Builder 4.5 - Flex (source code automatically changed after existing project import)

    Hi all!
    Til yesterday, i was using FB v4.0 and it was perfectly working.
    But now I'm under 4.5 and i have problem when importing my existing projects.
    Now let me introduce the matter:
    The entire project solution is located on my Desktop.
    So, to import this, i go in FB in File>Import Project
    Then i select "Project Repository" option and "Browse" button, then select the project on Desktop...
    So.... import complete and SEEM TO BE successful
    Unfortunately, from the IDE, when i double click on each source files, the code inside is not the expected one.
    In fact, it looks as an older version of my code.
    Then, i exit totally FB4.5...
    ... and open my source files with a simple text editor, i can see that the original code (before import) has been changed by FB4.5...
    So, why???
    for example, this original code:
    * This is a generated class and is not intended for modification.  To customize behavior
    * of this service wrapper you may modify the generated sub-class of this class - WS_rq_login.as.
    package services.ws_rq_login
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.wrapper.WebServiceWrapper;
    import com.adobe.serializers.utility.TypeUtility;
    import mx.rpc.AbstractOperation;
    import mx.rpc.AsyncToken;
    import mx.rpc.soap.mxml.Operation;
    import mx.rpc.soap.mxml.WebService;
    [ExcludeClass]
    internal class _Super_WS_rq_login extends com.adobe.fiber.services.wrapper.WebServiceWrapper
        // Constructor
        public function _Super_WS_rq_login()
            // initialize service control
            _serviceControl = new mx.rpc.soap.mxml.WebService();
            var operations:Object = new Object();
            var operation:mx.rpc.soap.mxml.Operation;
            operation = new mx.rpc.soap.mxml.Operation(null, "WS_rq_login");
             operation.resultType = Object;
            operations["WS_rq_login"] = operation;
            _serviceControl.operations = operations;
            try
                _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            catch (e: Error)
            { /* Flex 3.4 and earlier does not support the convertResultHandler functionality. */ }
            preInitializeService();
            model_internal::initialize();
        //init initialization routine here, child class to override
        protected function preInitializeService():void
            _serviceControl.service = "A_WebService";
            _serviceControl.port = "A_WebServicePort";
            wsdl = Config.LIEN_WS_RQ_LOGIN+"/4dwsdl";
            model_internal::loadWSDLIfNecessary();
          * This method is a generated wrapper used to call the 'WS_rq_login' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function WS_rq_login(e_login:String, e_password:String, e_keyCode:String, e_forceRegenKey:Boolean) : mx.rpc.AsyncToken
            model_internal::loadWSDLIfNecessary();
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("WS_rq_login");
              var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(e_login,e_password,e_keyCode,e_forceRegenKey) ;
            return _internal_token;
    becomes this:
    * This is a generated class and is not intended for modification.  To customize behavior
    * of this service wrapper you may modify the generated sub-class of this class - WS_rq_login.as.
    package services.ws_rq_login
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.wrapper.WebServiceWrapper;
    import com.adobe.serializers.utility.TypeUtility;
    import mx.rpc.AbstractOperation;
    import mx.rpc.AsyncToken;
    import mx.rpc.soap.mxml.Operation;
    import mx.rpc.soap.mxml.WebService;
    [ExcludeClass]
    internal class _Super_WS_rq_login extends com.adobe.fiber.services.wrapper.WebServiceWrapper
        // Constructor
        public function _Super_WS_rq_login()
            // initialize service control
            _serviceControl = new mx.rpc.soap.mxml.WebService();
            var operations:Object = new Object();
            var operation:mx.rpc.soap.mxml.Operation;
            operation = new mx.rpc.soap.mxml.Operation(null, "WS_rq_login");
             operation.resultType = Object;
            operations["WS_rq_login"] = operation;
            _serviceControl.operations = operations;
            try
                _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            catch (e: Error)
            { /* Flex 3.4 and earlier does not support the convertResultHandler functionality. */ }
            preInitializeService();
            model_internal::initialize();
        //init initialization routine here, child class to override
        protected function preInitializeService():void
            _serviceControl.service = "A_WebService";
            _serviceControl.port = "A_WebServicePort";
              wsdl = "http://ids.ice/4dwsdl";
            model_internal::loadWSDLIfNecessary();
          * This method is a generated wrapper used to call the 'WS_rq_login' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function WS_rq_login(e_login:String, e_password:String, e_keyCode:String, e_forceRegenKey:Boolean) : mx.rpc.AsyncToken
            model_internal::loadWSDLIfNecessary();
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("WS_rq_login");
              var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(e_login,e_password,e_keyCode,e_forceRegenKey) ;
            return _internal_token;
    Thanks for your help
    Jonathan

    Well well,
    I got some news about this problem....
    Look like Flash Builder uses a ".FML" file to reference URL of all WebServices used in the project.
    When replacements occurs, the updated values seem coming from this.

  • Substitution not carried out when WBS is added to an existing project......

    Hi, I have created a substitution rule to substitute the investment profile in my projects with a blank for any WBS which is not level one.   I am not sure why this rule does not take effect immediately a new WBS is included.  When I try to carry out the substitution manually, I get the error message 'Error when processing asset under construction (AuC) for WBS element'. Any ideas how I can get this substituion to work when a new WBS is added to an existing project?

    You should use the substitution otherway....
    I believe your project is in REL status and also you have defaulted IM profile in the project, so whenever you create a WBSE, the IM profile is inherited to the WBSE and since it is in REL status, the system will create an AUC based on your IM profile and now you are using substituition to remove the IM profile so this will cause the problem...Instead of this....try this...do not default IM profile in project, and instead of removing IM profile for all WBSE which is not level 1, use substitution to write IM profile in WBSE which is only level 1.

  • Adf bc jar for base entity classes and extending them existing  project

    Hi,
    I am using jdev 11.1.1.0 and have created a base workspace/project and adf jar for my base entity classes.
    1. I can consume this base adf bc jar in a separate new consuming workspace and create VO based on base bc classes or create new EOs that extend base bc entity classes.
    2. Furthermore, for an existing consuming project that earlier included src/ of base entity (BC components), i can remove the dependency on bc source and bring in this new adf jar and everything including the view controller and the service/datacontrol works fine.
    The issue i am running into is as follows.
    - In the existing project (#2) above i try to create a couple of entities based on entities in my base jar; associations are automatically brought in. Note i am not overriding any attributes. My intent here is to generate .java and implement some code.
    - I then try to make my existing VOs based on the newly extended entity (VO overview->Entity Objects-> Shuttle NewEntity from Available to Selected)
    - I then try to remove the old EO from selected under VO overview->Entity Objects->Shuttle OldEntity from Selected back
    - I get a warning dialog box that says something to the effect that some viewlinks are dependent on these old EOs in this consuming project.
    - I tried to laboriously analyzed dependencies and it this dialog box does not make any sense as I have already extended EOs and the tooling should be able to let me use these
    My questions
    - Why I am not able to remove old entities from VO dependencies
    - Is it ok to leave the old EOs in "Selected" along with the newly extended EO ? What are the implications for this?
    - I also thought about extending base associations, but did not go anywhere.
    In general, I am ok with consuming an ADF BC jar that has entities etc. but not clear about removing dependencies of base EOs on VOs when entities are extended and consumed in a pre-existing project that used base entities.
    I can send a project if any PM is willing to take a look at it.
    Thanks,
    ps:
    I have already gone over the following info
    http://technology.amis.nl/blog/215/organization-of-bc4j-domain-eo-and-business-vo-package
    .. wants to create an enterprise data model in BC4J, reflecting the Enterprise Data Model set up in the RDBMS. All (or at least most) business rules will be implemented in the Middle Tier – to take the load of the database and also allow developers not comfortable with PL/SQL to define and maintain the business rules. It is clear that this means that all applications that need to access – and manipulate – the database, need to go through the BC4J foundation layer. Martijn wants to define the Entity Objects – and their business rules – only once and share that definition between different projects. Each projects can create its own ViewObjects on top of these shared Enterprise Entity Objects.
    http://radio-weblogs.com/0118231/2005/09/29.html
    I am currently working on a project for a partner where we will be using ADF BC as our model layer for a large application. In order to keep the footprint of each application module down to a reasonable size, we are intending to create a number of separate 'root' application modules for each functional area of the application. Within, these 'root' application modules we will then use nested application modules to further partition the application. All of the application modules will be accessing the same datasource and will need access to the same database objects.
    In order to separate our code between the development team and into function areas, our initial thoughts were that we would create an ADF BC model project containing Entity Objects for all of the database tables e.t.c. as these are common amongst all functional areas. We have configured all of the EOs for validation rules, defaulting values and extending doDML() as appropriate. Happy at this stage we then created a simple .jar file to deploy all of the definitions. Upon creating a new ADF BC project for each functional area we added the jar file as a library import into the new project. However when we the tried to create some new View Objects via the JDev Wizard we were unable to see the imported Entity Objects.
    Is the only way to share Entity Object definitions between different ADF BC projects to manually copy the source definition files into the new projects src directory? Since this would mean multiple copies of the same components, it could prove to be a maintenance nightmare.Is there a way of doing it without creating multiple copies of the same object definitions?
    The developer is spot on in their ideas of layering and reuse, and even has created a library for their reusable entities. This last step is not something everyone thinks to do. The missing step is known as "importing" components, so with that one extra bit of knowledge under his belt, he should be able to do exactly what he envisions. My little article called Difference Between Adding and Importing Business Components tries to explain the difference and gives the menu options to choose to perform the importing.
    Difference between adding and importing BC4J
    http://radio-weblogs.com/0118231/stories/2005/08/11/differenceBetweenAddingAndImportingBusinessComponents.html
    Working with Libraries of Reusable Business Components
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b25947/bcadvgen.htm#CHEFECGD

    Hi,
    since you followed the OC4J developer guide I think this question might be better handled there as well
    OC4J
    So in case you don't get an answer here on the forum, try it on the OC4J forum
    Frank

  • Insert new sequence (project) into an existing project?

    For a slide show mixing stills and video over songs:
    Project was "finished," with images arranged and sequeing as I wanted, and matched to three songs. Including credits, all nicely wrapped up.
    I now have to add more images and 1 new song. *This new sequence+song needs to insert between the current songs 2 and 3, maintaining all existing footage and audio as is.* (In other words, song/sequence 3 will still be the final sequence.)
    What is the best way to go about this?
    1) Create a separate Project B, and then insert that as a whole video+audio sequence into current Project A? Is that even possible?
    2) Insert the new audio track where it will live and begin assembling images against it?
    3) Insert and assemble the new images and then add the audio?
    4) Some other way?
    A related query: when adding new audio, it goes in as one large green b.g to the images. On my current project, each audio track is a simple line underneath the images. This latter way is much easier to deal with. How can I make that happen?
    Thanks much.
    Jonathan

    Add your new images first. Then drag the new audio track and drop it on the first of the new images.

  • Open an existing project in Eclipse

    Hi, folks. I am really new to Eclipse. I followed a tutorial, created a new porject and few classes within it, that was all fine. Later on, I tried creating another new project while the first one was still opened under "Java prospective". But I could not see any updates under the "Package Explorer", i meant there was still the first project's package shown alone.
    I tried closing the extire Eclipse platform and double clicking the PROJECT File under workspace\secondProject directory to open the second project, but what was shown in Eclipse was still the first project alone.
    Could anyone please point me out what is the correct way of doing it? Thanx in advance.

    To open your project in secondProject just create a new javaproject in Eclipse and set its path to ...\workspace\secondProject. Eclipse will then find the .project file and open the existing project.
    Andre

  • Opening existing projects in iDvD

    i have been able to burn existing projects in iDvd but when I exited and went back in, I cant open them anymore? can someone please help? thanks!

    Hi
    Did You alter anything in the movies or materials that built Your DVD project.
    eg clicked on Update Project button -
    If so - this is a BUG - and only way around it as I know of is to start all over
    in iDVD and a new project.
    Jumping from iDVD to iMovie to correct and then back - DOESN'T WORK - Apple know's about it !
    else
    *Not knowing the origin to Your problem - General approach when in trouble is as follows.*
    • Delete iDVD pref file - *or rather start a new user/account* - log into this and re-try
    iDVD pref file resides.
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    and is named. com.apple.iDVD.plist
    While iDVD is NOT RUNNING - move this file out to desk-top.
    Now restart iDVD.
    • Free space on internal (start-up) hard disk if it is less than 10Gb should rather have 25Gb
    • Hard disk is untidy. Repair Permissions, Repair Hard disk (Apple Disc Util tool)
    • Program miss-match. iDVD 5.0.2, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK - DON’T work under Leopard
    • Program miss-match. iDVD 6.0.4, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK (might work under Leopard)
    • Program miss-match. iDVD’08 v. 7.0.1, Mac OS X.4.11 AND QuickTime 7.5.5 - is OK (might work under Leopard)
    • iDVD (08) v7 Locate theme folder. Move out iDVD1, iDVD 2 and eventually iDVD4 folders to desktop - re-try
    • Try a Cleaning CD/DVD that cleans the laser lens on the DVD burner/player
    iDVD 6.0.4 and iDVD 7.0.1 are compatible with Mac OS X 10.5 Leopard
    Last resort. from Craig. Solved the problem!! Finally!!
    I deleted every iDVD application and folder from my boot drive,
    emptied the trash and then installed iDVD 08 using the customize option
    and I am up and running.
    If You do a re-install be sure to get rid of all iDVD old parts AND then EMPTY the Trash-basket !
    iDVD updated ?
    Apple Codec updated ?
    Start a New Clean project - or delete project assets
    No of Colors - must be set to millions
    Yours Bengt W

  • Open/import existing project

    I created an Oracle Web Service Project, and it is still in my eclipse workspace. I deleted it from the eclipse Project Explorer (not from disc).
    How may I reopen the project?
    Sorry to plug up the forum with such a silly question, but I can't find it.
    Thank you.

    One option would be to try and to overlay eclipse project metadata on your existing project by creating a new project with the same name and location (on your file system) as your existing project. I haven't tried this with a Web Services project but have made this work for other types of projects - so your mileage may vary.
    Basically, you use the same steps used when you first create a project and just make sure the name and location are the same as your existing project. The steps would be something like this...
    - Copy your existing project to your Eclipse workspace or a location where you want to maintain the project as an Eclipse project.
    - Launch OEPE and configure a runtime environment for the version of your WebLogic server. To do this, launch OEPE, select from the main menu bar options, "Window -> Preferences -> Server -> Runtime Environments" and then select "Oracle -> WebLogic Server XYZ" corresponding to the version of your server installation. You will enter the path to your WebLogic and Java home directory. This process will set up your Eclipse workspace for the proper runtime environment.
    - Select "File -> New -> ..." and the project type you want to create.
    - In the New Project wizard,...
    - Use the exact same name/location of your existing project in the wizard.
    - click "modify" to update the configuration and include the desired technology facets or update versions that are in your project.
    - depending on the wizard there may be an option to generate the web.xml deployment descriptor. It would be selected by default and you can override to so that it is not selected and the process will not overwrite your existing web.xml.
    After completing the remaining pages of the wizard, the process will generate the required Eclipse metadata to the project and will refresh the project so that it now contains all the src and content files from the underlying sub folders. If it doesn't you can force a refresh (F5) on the project.
    This is just a rough example and you may have to do some additional configurations for dependent libraries, etc.

  • I opened a new project with the same name as an existing project and it deleted my existing

    Bad day on my part. I spent all day recording a song with Garageband. As I finished it, I exported it to iTunes (Thank God), closed garage band and listened to the song. Hearing that it had several seconds at the beginning that were silence and not edited out I opened a new Garageband project under the same project name as the previous one and it erased everything the previous project had. Leaving me with no file. No project. No memory of the initial project. Any clues or am I SOL?

    SchilbAaron wrote:
    I opened a new Garageband project under the same project name as the previous one
    the OS should have asked if you wanted to replace the old file with this one. if it did not, perhaps you saved this file in a different folder and the old one still exists? You could try a spotlight search on your entire hard drive to see if both files exist.
    if you did replace the old with the new, the only real hope is that you have a backup (perhaps you use Time Machine?)
    SchilbAaron wrote:
    Hearing that it had several seconds at the beginning that were silence and not edited out[...]  am I SOL?
    if that's the _only_ issue, not completely out of luck. you could drop the audio file back into a new GB project and export an exact length:
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportexactlength
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    Note: if you compressed the export (mp3/acc) you'll be double compressing the file and losing a lot of musical information, but it may be better than losing a One-Time piece of work.
    an alternate method would be to use an Audio Editor to cut out the silence. i'm not sure that this would save any quality, i think you'll still be double compressing the file, but it's something else to try, and listen to, to make a decision on which is better:
    http://www.bulletsandbones.com/GB/GBFAQ.html#audioeditors
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • HT5149 Will uninstalling and reinstalling fcpx effect my pre existing projects and events? That is to say, will it delete them?

    Hey my FCP X has stopped working. It lasts about 30 seconds and then the beach ball comes up and it doesn't respond after that. It's pretty much unusable now. I was thinking of uninstalling and reinstalling it. Will that delete my existing projects and events or will they stay on my system?
    Thanks

    This is my pet checklist for questions regarding FCP X performance - you may have already addressed some of the items but it's worth checking.
    Check the spec of your Mac against the system requirements:
    http://www.apple.com/finalcutpro/specs/
    Check the spec of your graphics card. If it's listed here, it's not suitable:
    http://support.apple.com/kb/HT4664
    Make sure you're using the latest version of the application - FCP X 10.0.3 runs very well on my 2009 MacPro 2 x 2.26 GHz Quad-Core Intel Xeon with 16 GB RAM and ATI Radeon HD 5870 1024 MB. I run it with Lion 10.7.3.
    Check that you have at least 20% free space on your system drive.
    If you have not already done so, move your Projects and Events to a fast (Firewire 800 or faster) external HD. Make sure the drive's formatted OS Extended (journalling's not required for video). You should always keep at least 20% free space on the Hard Drives that your Media, Projects and Events are on.
    If you are getting crashes, there is some conflict on the OS. Create a new (admin) user account on your system. Do NOT import any of the settings etc from the old account - simply use FCP X from there - if it runs a lot better, there's a conflict and a clean install would be recommended - but remember, if you reinstall the system, and then use Migration Assistant (or anything else) to import all your old settings etc etc, you may well be importing the cause of the conflict in the first place.
    Keep projects to 20 mins or less (about half that for Multicam). If you have a long project, work on short sections, make them into Compound Clips and then paste these into a final project for export.
    If you ever experience dropped frames, I strongly recommend you use ProRes 422 Proxy - it edits and plays back like silk because the files are small but lightly compressed (not much packing and unpacking to do) - but remember to select 'Original or Optimised Media' (FCP X Preferences > Playback) just before you export your movie, otherwise it will be exported at low resolution.
    If you have plenty of processor power, for the ultimate editing experience, create Optimised Media - most camera native files are highly compressed and need a great deal of processor power to play back - particularly if you add titles, filters or effects. ProRes 422 takes up much more hard drive space but is very lightly compressed. It edits and plays back superbly.
    Hide Audio Waveforms at all times when you don't need them (both in Browser and Storyline / Timeline). They take up a lot of processor power. (Use the switch icon at the bottom-right of your timeline to select a format without waveforms if you don't need them at the moment, then switch back when you do).
    Create folders in the Project and Events libraries and put any projects you are not working on currently, in those folders. This will help a lot. There's a great application for this, called Event Manager X - for the tiny cost it's an invaluable application.
    http://assistedediting.intelligentassistance.com/EventManagerX/
    Unless you cannot edit and playback without it, turn off Background Rendering in Preferences (under Playback) - this will help general performance and you can always render when you need to by selecting the clip (or clips) and pressing Ctrl+R.
    The biggest single improvement I saw in performance was when I upgraded the RAM from 8 GB to 16.
    Andy

  • Return under Warranty (Tracking Line only) Should we use MIGO - Goods Issue

    Return under Warranty (Tracking Line only) Should we use MIGO - Goods Issue when sending out Materials for repair or exchange under Warranty (Free)?

    Please post it in SD/MM forum.

  • I have garage band ver 10.0.2 and am trying to add effects to an audio track but i have no info button or track info under the track tab.  How do i get these things to show up on my program?

    I have garage band ver 10.0.2 and am trying to add effects to an audio track but i have no info button or track info under the track tab.  How do i get these things to show up on my program?

    In GarageBand 10.0.2 you can no longer add all kinds of effects freely; this GarageBand '11 feature has been discontinued. Pick one of the predefined patches that already has the effects you want.
    However, you can add effects from the predefined audio units.
    You'll see the predefined effects on the track, when you open the Smart Controls. To add audio units, click the button and enlarge the the smart controls pane by dragging the dividing line to the Track Area upwards.

  • Importing existing project to Project Online

    Hello, my company recently purchased Project Online to add to our existing Office 365 environment.
    From the Project Web App home page, I would like to use the Create or Import projects tile to add an existing .mpp project file that I have uploaded to my SkyDrive to Project Online, and manage this project from the Project Web app.
    However, I cannot figure out how to do this or if it is even possible. The tile itself says "Create new or import from Sharepoint sites and project files.".  To import an existing project you're then referred to this site: http://office.microsoft.com/en-us/project-server-help/more-ways-to-create-or-import-projects-HA102923810.aspx.
     On that site the only listed ways of importing an existing project are to import a Sharepoint task list (not what I want) or by connecting your local Project Pro to Project Online and publishing the project.
    Importing or uploading an existing project file directly to Project Online would seem to be a fundamental basic usage of Project Online. Do I really need to also purchase Project Professional in order to import existing project files to Project Online?
    Thanks

    Project Online cannot read mpp files, hence the reason for requiring Project Professional 2013 if you want to import these into Project Online - even if you only want to manage them via Project Web App from then on.  
    If you've not got Project 2013 Pro, you could cut and paste the existing task list from Project into a SharePoint list, and create the project from there.
    The way forward will depend on the complexity of your schedules, remember that PWA does not have all of the capability of MS Project 2013
    Ben Howard [MVP] blog |
    web

  • EXCEPTION_ACCESS_VIOLATION trying to import existing project into eclipse

    Eclipse Europa version 3.3, Java 1.6
    No problems using Eclipse on other projects
    But trying to import an existing project into Eclipse.
    File->Import->General->Existing Projects into Workspace
    Import Projects box-> Select root directory-> browse to path
    In Projects Box : Project appears with check in checkbox -> click Finish
    Eclipse closes
    A new file is created in eclipse directory titled hs_err_pid
    In the file :
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x083e7bfc, pid=4092, tid=6076
    # Java VM: Java HotSpot(TM) Client VM (1.6.0-b105 mixed mode)
    # Problematic frame:
    # C [libapr-1.dll+0x7bfc]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x05f63c00): JavaThread "ModalContext" [_thread_in_native, id=6076]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x013ca070, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
    ESP=0x08af8730, EBP=0x08af873c, ESI=0x0014ef10, EDI=0x00000000
    EIP=0x083e7bfc, EFLAGS=0x00010246
    Top of Stack: (sp=0x08af8730)
    0x08af8730: 00000000 0014ef10 013ca070 08afa768
    0x08af8740: 083d1f32 08afa764 013ca070 00000000
    0x08af8750: 00000000 00000000 0014ef10 013ca070
    0x08af8760: 00000000 013ca070 00000000 013ca070
    0x08af8770: 013ca110 6eec84f1 013ca070 00000010
    0x08af8780: 6ee40000 6eec11f2 013ca070 013ca110
    0x08af8790: 6eec1210 6eec8610 013ca070 013ca0c0
    0x08af87a0: 013ca070 013ca070 00000001 003a0043
    Instructions: (pc=0x083e7bfc)
    0x083e7bec: 89 55 10 53 8b 5d 14 56 57 85 db 75 03 8b 58 18
    0x083e7bfc: 8b 03 bf 01 00 00 00 3b c7 0f 82 19 01 00 00 8b
    Stack: [0x08a00000,0x08b00000), sp=0x08af8730, free space=993k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libapr-1.dll+0x7bfc]
    C [libapriconv-1.dll+0x1f32]
    C [libapriconv-1.dll+0x1da4]
    C [_tbl_simple.so+0x123b]
    C [_tbl_simple.so+0x11c4]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.tigris.subversion.javahl.SVNClient.status(Ljava/lang/String;ZZZZZ)[Lorg/tigris/subversion/javahl/Status;+0
    j org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.getStatus(Ljava/io/File;ZZZZ)[Lorg/tigris/subversion/svnclientadapter/ISVNStatus;+83
    j org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.getStatus(Ljava/io/File;ZZZ)[Lorg/tigris/subversion/svnclientadapter/ISVNStatus;+7
    j org.tigris.subversion.subclipse.core.client.PeekStatusCommand.execute(Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;)V+61
    j org.tigris.subversion.subclipse.core.resources.SVNWorkspaceRoot.peekResourceStatusFor(Lorg/eclipse/core/runtime/IPath;)Lorg/tigris/subversion/subclipse/core/resources/LocalResourceStatus;+16
    j org.tigris.subversion.subclipse.core.SVNProviderPlugin.isManagedBySubversion(Lorg/eclipse/core/runtime/IPath;)Z+37
    j org.tigris.subversion.subclipse.core.SVNProviderPlugin.isManagedBySubversion(Lorg/eclipse/core/resources/IContainer;)Z+29
    j org.tigris.subversion.subclipse.core.SVNTeamProviderType.metaFilesDetected(Lorg/eclipse/core/resources/IProject;[Lorg/eclipse/core/resources/IContainer;)V+9
    j org.eclipse.team.internal.core.TeamResourceChangeListener.handleUnsharedProjectChanges(Lorg/eclipse/core/resources/IProject;Lorg/eclipse/core/resources/IResourceDelta;)V+217
    j org.eclipse.team.internal.core.TeamResourceChangeListener.resourceChanged(Lorg/eclipse/core/resources/IResourceChangeEvent;)V+53
    j org.eclipse.core.internal.events.NotificationManager$2.run()V+8
    J org.eclipse.core.runtime.SafeRunner.run(Lorg/eclipse/core/runtime/ISafeRunnable;)V
    j org.eclipse.core.internal.events.NotificationManager.notify([Lorg/eclipse/core/internal/events/ResourceChangeListenerList$ListenerEntry;Lorg/eclipse/core/resources/IResourceChangeEvent;Z)V+79
    j org.eclipse.core.internal.events.NotificationManager.broadcastChanges(Lorg/eclipse/core/internal/watson/ElementTree;Lorg/eclipse/core/internal/events/ResourceChangeEvent;Z)V+97
    j org.eclipse.core.internal.resources.Workspace.broadcastPostChange()V+22
    j org.eclipse.core.internal.resources.Workspace.endOperation(Lorg/eclipse/core/runtime/jobs/ISchedulingRule;ZLorg/eclipse/core/runtime/IProgressMonitor;)V+150
    j org.eclipse.core.internal.resources.Workspace.run(Lorg/eclipse/core/resources/IWorkspaceRunnable;Lorg/eclipse/core/runtime/jobs/ISchedulingRule;ILorg/eclipse/core/runtime/IProgressMonitor;)V+182
    j org.eclipse.ui.actions.WorkspaceModifyOperation.run(Lorg/eclipse/core/runtime/IProgressMonitor;)V+25
    j org.eclipse.jface.operation.ModalContext$ModalContextThread.run()V+15
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x05f63c00 JavaThread "ModalContext" [_thread_in_native, id=6076]
    0x05f65c00 JavaThread "Thread-6" [_thread_blocked, id=5348]
    0x05f65800 JavaThread "Timer-2" [_thread_blocked, id=2336]
    0x05f65000 JavaThread "Timer-1" [_thread_blocked, id=5900]
    0x05f64400 JavaThread "Timer-0" [_thread_blocked, id=4932]
    0x05f64000 JavaThread "Worker-7" [_thread_blocked, id=1732]
    0x05f62800 JavaThread "Worker-3" [_thread_blocked, id=1648]
    0x05f62400 JavaThread "Worker-2" [_thread_blocked, id=1380]
    0x05db1c00 JavaThread "Java indexing" daemon [_thread_blocked, id=5812]
    0x05e5fc00 JavaThread "Worker-1" [_thread_blocked, id=5956]
    0x0453b400 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=4172]
    0x0453a800 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=5728]
    0x0453a000 JavaThread "State Data Manager" daemon [_thread_blocked, id=2704]
    0x017b5400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=6104]
    0x017b4400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2604]
    0x017b3c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=4820]
    0x017b3400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5232]
    0x017a1400 JavaThread "Finalizer" daemon [_thread_blocked, id=2824]
    0x01798800 JavaThread "Reference Handler" daemon [_thread_blocked, id=6060]
    0x01898400 JavaThread "main" [_thread_blocked, id=5148]
    Other Threads:
    0x01795800 VMThread [id=328]
    0x017d0800 WatcherThread [id=5936]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2944K, used 296K [0x10020000, 0x10350000, 0x12780000)
    eden space 2624K, 3% used [0x10020000, 0x10036378, 0x102b0000)
    from space 320K, 64% used [0x10300000, 0x10333de8, 0x10350000)
    to space 320K, 0% used [0x102b0000, 0x102b0000, 0x10300000)
    tenured generation total 37824K, used 18827K [0x12780000, 0x14c70000, 0x30020000)
    the space 37824K, 49% used [0x12780000, 0x139e2d70, 0x139e2e00, 0x14c70000)
    compacting perm gen total 36352K, used 36332K [0x30020000, 0x323a0000, 0x38020000)
    the space 36352K, 99% used [0x30020000, 0x3239b1d8, 0x3239b200, 0x323a0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\eclipse-3.3\eclipse.exe
    0x775f0000 - 0x7770e000      C:\Windows\system32\ntdll.dll
    0x76260000 - 0x76338000      C:\Windows\system32\kernel32.dll
    0x77550000 - 0x775ee000      C:\Windows\system32\USER32.dll
    0x777e0000 - 0x7782b000      C:\Windows\system32\GDI32.dll
    0x761a0000 - 0x7625f000      C:\Windows\system32\ADVAPI32.dll
    0x77710000 - 0x777d3000      C:\Windows\system32\RPCRT4.dll
    0x73460000 - 0x734e6000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6000.16386_none_87e0cb09378714f1\COMCTL32.dll
    0x774a0000 - 0x7754a000      C:\Windows\system32\MSVCRT.dll
    0x711f0000 - 0x7120e000      C:\Windows\system32\ShimEng.dll
    0x75c90000 - 0x75cbc000      C:\Windows\system32\apphelp.dll
    0x70eb0000 - 0x70f37000      C:\Windows\AppPatch\AcLayers.dll
    0x76370000 - 0x76e3e000      C:\Windows\system32\SHELL32.dll
    0x75ff0000 - 0x76045000      C:\Windows\system32\SHLWAPI.dll
    0x77350000 - 0x77494000      C:\Windows\system32\ole32.dll
    0x76e40000 - 0x76ecc000      C:\Windows\system32\OLEAUT32.dll
    0x75d60000 - 0x75d7e000      C:\Windows\system32\USERENV.dll
    0x75d40000 - 0x75d54000      C:\Windows\system32\Secur32.dll
    0x73000000 - 0x73041000      C:\Windows\system32\WINSPOOL.DRV
    0x758e0000 - 0x758f4000      C:\Windows\system32\MPR.dll
    0x6fd90000 - 0x6ffa0000      C:\Windows\AppPatch\AcGenral.DLL
    0x74f50000 - 0x74f8f000      C:\Windows\system32\UxTheme.dll
    0x749e0000 - 0x74a13000      C:\Windows\system32\WINMM.dll
    0x749a0000 - 0x749d8000      C:\Windows\system32\OLEACC.dll
    0x75b60000 - 0x75bca000      C:\Windows\system32\NETAPI32.dll
    0x75ea0000 - 0x75ea7000      C:\Windows\system32\PSAPI.DLL
    0x74520000 - 0x74535000      C:\Windows\system32\MSACM32.dll
    0x75580000 - 0x75588000      C:\Windows\system32\VERSION.dll
    0x732a0000 - 0x732a5000      C:\Windows\system32\sfc.dll
    0x71df0000 - 0x71dfd000      C:\Windows\system32\sfc_os.DLL
    0x77140000 - 0x772c9000      C:\Windows\system32\SETUPAPI.dll
    0x73140000 - 0x7314c000      C:\Windows\system32\dwmapi.dll
    0x76070000 - 0x76197000      C:\Windows\system32\urlmon.dll
    0x76ee0000 - 0x76f25000      C:\Windows\system32\iertutil.dll
    0x741e0000 - 0x741e5000      C:\Windows\system32\SHUNIMPL.dll
    0x75eb0000 - 0x75ece000      C:\Windows\system32\IMM32.DLL
    0x75f20000 - 0x75fe7000      C:\Windows\system32\MSCTF.dll
    0x76ed0000 - 0x76ed9000      C:\Windows\system32\LPK.DLL
    0x77030000 - 0x770ad000      C:\Windows\system32\USP10.dll
    0x77000000 - 0x7702d000      C:\Windows\system32\WS2_32.dll
    0x76060000 - 0x76066000      C:\Windows\system32\NSI.dll
    0x75d10000 - 0x75d31000      C:\Windows\system32\NTMARTA.DLL
    0x75ed0000 - 0x75f19000      C:\Windows\system32\WLDAP32.dll
    0x75cf0000 - 0x75d01000      C:\Windows\system32\SAMLIB.dll
    0x74c50000 - 0x74de4000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6000.16386_none_5d07289e07e1d100\comctl32.dll
    0x10000000 - 0x10011000      C:\eclipse-3.3\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
    0x003e0000 - 0x003e6000      C:\Users\ERIKHA~1.ALF\AppData\Local\Temp\IadHide5.dll
    0x6d7c0000 - 0x6da07000      C:\jdk1.6.0\jre\bin\client\jvm.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x6d310000 - 0x6d318000      C:\jdk1.6.0\jre\bin\hpi.dll
    0x6d770000 - 0x6d77c000      C:\jdk1.6.0\jre\bin\verify.dll
    0x6d3b0000 - 0x6d3cf000      C:\jdk1.6.0\jre\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\jdk1.6.0\jre\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\jdk1.6.0\jre\bin\net.dll
    0x75510000 - 0x7554b000      C:\Windows\system32\mswsock.dll
    0x75570000 - 0x75576000      C:\Windows\System32\wship6.dll
    0x6d590000 - 0x6d599000      C:\jdk1.6.0\jre\bin\nio.dll
    0x00fa0000 - 0x00fef000      C:\eclipse-3.3\configuration\org.eclipse.osgi\bundles\405\1\.cp\swt-win32-3346.dll
    0x772d0000 - 0x77344000      C:\Windows\system32\comdlg32.dll
    0x76f30000 - 0x77000000      C:\Windows\system32\WININET.dll
    0x76050000 - 0x76053000      C:\Windows\system32\Normaliz.dll
    0x052a0000 - 0x052b4000      C:\eclipse-3.3\configuration\org.eclipse.osgi\bundles\405\1\.cp\swt-gdip-win32-3346.dll
    0x74700000 - 0x748aa000      C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6000.16386_none_9ea0ac9ec96e7127\gdiplus.dll
    0x75270000 - 0x752a8000      C:\Windows\system32\rsaenh.dll
    0x751f0000 - 0x751f5000      C:\Windows\system32\msimg32.dll
    0x770b0000 - 0x77134000      C:\Windows\system32\CLBCatQ.DLL
    0x6f290000 - 0x6f2c0000      C:\Windows\system32\mlang.dll
    0x6eec0000 - 0x6eee1000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libapr.dll
    0x6ee50000 - 0x6ee59000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libapriconv.dll
    0x06e90000 - 0x06f98000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libeay32.dll
    0x71de0000 - 0x71de7000      C:\Windows\system32\WSOCK32.dll
    0x058b0000 - 0x05974000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libdb44.dll
    0x70dd0000 - 0x70e36000      C:\Windows\system32\MSVCP60.dll
    0x04d40000 - 0x04d71000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\ssleay32.dll
    0x6ee60000 - 0x6ee89000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libaprutil.dll
    0x04d80000 - 0x04d92000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\intl3_svn.dll
    0x06fa0000 - 0x070a9000      C:\eclipse-3.3\plugins\org.tigris.subversion.javahl.win32_1.2.4\libsvnjavahl-1.dll
    0x71fe0000 - 0x71fe5000      C:\Windows\system32\SHFOLDER.dll
    0x728b0000 - 0x729b7000      C:\Windows\system32\shdocvw.dll
    0x73b80000 - 0x73c32000      C:\Windows\system32\WindowsCodecs.dll
    0x72480000 - 0x72515000      C:\Windows\System32\cscui.dll
    0x73ce0000 - 0x73d97000      C:\Windows\System32\PROPSYS.dll
    0x72ac0000 - 0x72ac9000      C:\Windows\System32\CSCDLL.dll
    0x72ab0000 - 0x72aba000      C:\Windows\System32\CSCAPI.dll
    0x05350000 - 0x054d3000      C:\Program Files\TortoiseCVS\TortoiseShell.dll
    0x723f0000 - 0x72477000      C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb8f8\MSVCP80.dll
    0x721b0000 - 0x7224b000      C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb8f8\MSVCR80.dll
    0x72760000 - 0x728a5000      C:\Windows\system32\browseui.dll
    0x74f20000 - 0x74f50000      C:\Windows\system32\DUser.dll
    0x6c240000 - 0x6c2a0000      C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    0x71f10000 - 0x71f22000      C:\Windows\System32\ntlanman.dll
    0x71fd0000 - 0x71fd8000      C:\Windows\System32\drprov.dll
    0x71fc0000 - 0x71fcf000      C:\Windows\System32\davclnt.dll
    0x71ef0000 - 0x71f04000      C:\Windows\system32\LMIRfsClientNP.dll
    0x6e540000 - 0x6e586000      C:\Windows\system32\PortableDeviceApi.dll
    0x75050000 - 0x7507d000      C:\Windows\system32\WINTRUST.dll
    0x757e0000 - 0x758d1000      C:\Windows\system32\CRYPT32.dll
    0x75930000 - 0x75942000      C:\Windows\system32\MSASN1.dll
    0x76340000 - 0x76369000      C:\Windows\system32\imagehlp.dll
    0x71ae0000 - 0x71d03000      C:\Windows\system32\NetworkExplorer.dll
    0x70e40000 - 0x70e8a000      C:\Windows\system32\ntshrui.dll
    0x757a0000 - 0x757d9000      C:\Windows\system32\slc.dll
    0x083b0000 - 0x083b8000      C:\eclipse-3.3\configuration\org.eclipse.osgi\bundles\85\1\.cp\os\win32\x86\localfile_1_0_0.dll
    0x6ee40000 - 0x6ee45000      C:\Program Files\Subversion\iconv\_tbl_simple.so
    0x083d0000 - 0x083d9000      C:\Program Files\Subversion\bin\libapriconv-1.dll
    0x083e0000 - 0x08400000      C:\Program Files\Subversion\bin\libapr-1.dll
    VM Arguments:
    jvm_args: -Xms40m -Xmx512m -XX:MaxPermSize=128M
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=C:\jdk1.6.0
    CLASSPATH=c:\mysql-connector-java-5.1.6\mysql-connector-java-5.1.6-bin
    PATH=C:\jdk1.6.0\bin\..\jre\bin\client;C:\jdk1.6.0\bin\..\jre\bin;C:\jdk1.6.0\bin;C:\Programme\PHP\;c:\Program Files\Sun\JavaES5\WebServer7\lib;c:\Program Files\Sun\JavaES5\share\lib;c:\Program Files\Sun\JavaES5\share\bin;C:\Java\JDK15~1.0_0\bin;c:\Program Files\Sun\JavaES5\share\ant\bin;c:\Program Files\Sun\JavaES5\share\cacao_2\bin;c:\Program Files\Sun\JavaES5\appserver\lib;c:\Program Files\Sun\JavaES5\appserver\bin;c:\program files\imagemagick-6.2.8-q16;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;d:\Programme\alfa\oracle\BIN;C:\Program Files\Common Files\Adobe\AGL;c:\program files\OpenOffice.org 2.0\program\;YBASE\DLL;C:\Program Files\QuickTime\QTSystem;d:\Programme\alfa\dll\de;C:\jdk1.6.0\bin;c:\Program Files\apache-ant-1.7.0\bin;$CATALINA_HOME/bin;c:\mysql-5.0.51a-win32\bin;C:\Program Files\Subversion\bin;C:\Program Files\CVSNT\;C:\Program Files\IDM Computer Solutions\UltraEdit\;C:\Program Files\IDM Computer Solutions\UltraCompare;C:\Program Files\Common Files\Ahead\Lib\
    USERNAME=doug.scovill
    SHELL=d:\Programme\alfa\PageOneXT32\unixbin\sh.exe
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 4, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 1048575k(902316k free), swap 2097151k(1048575k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0-b105) for windows-x86, built on Nov 29 2006 00:48:48 by "java_re" with unknown MS VC++:1310

    Have you got subversion commandline tools installed? And if so, did you install the version that was built against Apache 2.2. Subclipse is built against ver 2.0 and if you have the wrong version of the APR libraries included in your path then this causes eclipse to crash.
    My solution was to uninstall the commandline tools built against Apache 2.2 and reinstall those that are built against version 2.0
    Thats what I found anyway.

  • I have copied videos onto an external hard drive. to free memory on my macbook. When I try to delete these I am warned that I will not be able to use this video in existing projects   How do I point iMovie to events in my external  hard drive so I can pl

    I have copied videos onto an external hard drive. to free memory on my macbook. When I try to delete these I am woarned that I will not be able to use this video in existing projects
    How do I point iMovie to events in my external  hard drive so I can play projects which use them?
    MacBook, iMovie 9.0.4

    Hi
    You can do this - by not doing it the way You describe as it will not work.
    a. the external hard disk - MUST BE - Mac OS extended (hfs) formatted -
    UNIX/DOS/FAT32/Mac OS Exchange - will work for most things - BUT NOT FOR VIDEO (iMovie, iDVD or FinalCut doesn't matter)
    b. Do not alter or move any folder named
    • iMovie Event's - or -
    • iMovie Project's
    on DeskTop/Finder - at all
    All moving's of Events and Projects must be done within the iMovie Application - then connections will not break.
    (move them back and see if iMovie remembers them - then do move as described above)
    Yours Bengt W

Maybe you are looking for

  • Best of forum 2008

    I just stumble about some collected quotes from this forum from last year. No offense ment to anybody, just have fun reading... | 2008 | ----------Billy>Be careful about making conclusions using observation only. Simple example. Observe how the WARP_

  • I'm using Firefox on a Windows 7 OS, and I want to know how to disable the small window that appears when I hover my mouse over a tab, bookmark, etc.

    Okay, so when I'm using Firefox, say I have multiple window open, I hover my mouse over a window's panel at the bottom of the screen and a small box appears telling me about the webpage on that panel. The same thing occurs when I hover over a tab or

  • How to deactivate or remove previous id with window 8

    I buy a laptop week ago. It has window 8 I started with one of my e-mail id. Then due to some problems I exchange it. Now I have another new laptop I like to add my that id with this laptop. But they id already in use. How can I add this to my this l

  • Spry - Data retrieve

    Hello, I wanna know something that I think it's simple, but I can't find at the website. I wanna know how to: Create a button that will send a param do spry -> PHP(it's not important) and the server return a value in a spry region. Do I make myself c

  • SRM Org Structure

    Hi, I have a simple probelm. Can anyone tell me how to view org structure in srm? Thanks in advance Nisha