Confirming SPAU -- what happens with objects

Hi all
I do not have an actual problem...but I'm just wondering what happens if you do not adjust all "red" or "yellow" or "question mark"  objects in spau after applying a support package, and anyhow  confirming the spau? Are then all objects switched to original version?
Thanks in advance for the answer.
Regards
Marco

Hi all
Thank you for your replies.
I already used SPAU several times, I know the functionality. But I just was wondering what happens if you confirm the SPAU - phase (during SP) without performing the spau (means without starting transaction spau --> looking for objects needing modification --> deciding if change to original (means activating the change of the new "standard" object from SP) or use modification).
Are then all objects set automatically to "original" or are the changes not applied?
Hope I expressed my question more clear this time...
Thanks and Regards
Marco

Similar Messages

  • Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Select the text, and open the Appearance palette (Come on guys, text highlight is irrelevant, it happens to objects too says the OP), and see what's listed there.  For a simple text object, there should only be a line item "Type", followed by "Characters", and when double-clicked the Characters line item expands to tell you the stroke and fill color.  For a basic object, there should be a fill and/or stroke.
    What happens sometimes, is that you end up adding extra strokes/fills to objects or text, and the appearance palette is where that will be noted.  Especially when you are dealing with groups, and/or picking up a color with the eyedropper, you may inadvertently be adding a fill or stroke on top of something.  You can drag those unwanted thingies from the Appearance palette into its own little trash can.

  • What happens with SOA schemas during SOA (appServer) Suite reintstallation

    I have installed Oracle DB for Vista and also - I have installed serveral times SOA suite - the last time - I installed is using advanced wizard and against my Oracle database (so - not against Oracle lite as it can be by default) and it was sucesfully (all the ESB, BPEL, web services consoles were avialable), then I started to delete the homes of odl suite's installation and result is that my SOA installation is not working now. As I can see from logs - it is becuase of lack of ESB, BPEL etc html documents in htpdoc directory of apache server of SOA Suite.
    So my main question is - now I plan to reinstall the SOA suite against the same database - but is it safe? As I guess - previous installation has already created a lot of database objects (besides the usual ESB, Web services and BPEL scripts that should be execute before beginning of installation) and so - what happens with them during reinstallation and should I make any deletions by hand before second installation of SOA suite. I guess - if some old objects will be detected as existing, then SQL scripts will fail during second installation and apparently - any configuration assistants will exit with error and completion will be impossible.
    Well - one more question - can I make installation of two SOA suites against the same database?
    Thanks in advance!

    First of all thanks for the qucik reply.
    Ok, that explains why I can't run the BPEL Process Manager standalone with a shortcut.
    So do I assume right that if the Weblogic Server is started, the BPEL Process Manager is started as well? Running on the WLS? Or is there no seperate BPEL Process Manager instance any more?
    I installed everything as described in the first link I posted and made the necessary configurations as described.
    Nevertheless, when I go to http://localhost:7001/em I arrive in the following situation:
    - I can't see any “SOA” folder in the left-hand side navigation tree as it was described in the tutorial above.
    - As you can see on the screenshot linked below, the soa_server1 is down. I tried to start this server by clicking on it and then I chose to start the server from the WebLogic-PullDown menu from the EM-Menu.
    First I received an error saying that the Node-Manager is not started. So I started that one as well and tried again to start soa_server1. Then after a while I saw on the pop-up that soa_server1 has been started. But as you can see from the screenshot below it still appears to be down. When I then try to start it again, the EM-pop-up however says that it is running.
    http://i38.tinypic.com/262wj88.jpg
    How - if everything would be running - could I then get to the BPEL process managing view on the EM?
    The next problem I have with the JDeveloper. I installed as described above, but don't arrive in installing the plugin. The Update-Process finds the correct plugin. Then I select to install it and already after two seconds it seems to be installed.
    How do I create my BPEL process with that updated version of the JDeveloper. Do I have to select Applications -> new -> SOA Composite -> Composite BPEL process or how does that work?
    Thanks again in advance for your cooperation!

  • What happens to objects when you redeclare a new object?

    ... and is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?
    i.e.
    private CustomObjectType myObject;
    public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    Is it better to declare new variables to hold this second object?
    Should a person declare the object to be null when no longer required?
    Do I ever need to worry about this, does the garbage collector sort out references for me?
    (Please go easy, still learning and don't really need to know this right now but I'm curious! :)

    What happens to objects when you redeclare a new object?If you go:
    Dog myDog = new Dog();
    and then go:
    Dog myDog = new Dog();
    you are replacing the first reference to Dog() with another one. I don't think it would make sense to do this because it is redundant.
    But if you go:
    static Dog myDog = new Dog();
    and then go:
    static Dog myDog = new Dog();
    then then second one will be ignored because the first one already assigned Dog() to myDog.. so the second one won't replace the first one - it will just be ignored or generate an error.
    is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?In c and c++ you have to think about when the life of an object ends and destroy the object to prevent a memory leak. But in Java the garbage collector takes this task on if a certain amount of memory is used. If you don't use a lot of memory the gc won't bother and the objects will be destroyed when you exit the program.
    You can use:
    finalize(){
    // insert code to be executed before the gc cleans up
    and if you call System.gc() (which you probably won't need to do) then the code in the finalize() method will run first e.g. to erase a picture from the screen before collecting the object.
    private CustomObjectType myObject;public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    you could do:
    public class CustomObjectType{
        //this constructs an instance of the class using a string of your choice
        CustomObjectType(String str) {
            System.out.println(str);
        static void main(String[] args){
            CustomObjectType myObject = new CustomObjectType("I am the first object");//  This sends the constructor the string you want it to print
            CustomObjectType myObject2 = new CustomObjectType("I am the second object");//  This sends the constructor the string you want it to print
    }Bruce eckel wrote Thinking in Java 4th edition considered to be the best book on Java because of how much depth he goes into, although some recommend you should have atleast basic programming knowledge and a committment to learn to get through the book.
    I just started it and it helps a lot. Maybe u could borrow it from the library.. good luck!

  • HT4918 what happen with the documents in Idisk, how can i see them in iCloud?

    what happen with the documents that i have in my idisk?? how can i move them into icloud??

    Welcome to the Apple Community.
    Unfortunately, iCloud does not offer equivalents to Mobile Me’s iDisk, Gallery or Web Hosting services. You will need to find a third party solution to replace these services. You might consider DropBox, SugarSync, MediaFire or any other service that offers online storage. (not all these alternatives offer all the services previously provided by iDisk)

  • When scrolling vertically there is an horizontal line which causes distorsion of the screen. I do not have noticed such concern on my iMac or on my macbook. What happen with the macpro ?

    When scrolling vertically there is an horizontal line which causes distorsion of the screen. I do not have noticed such concern on my iMac or on my macbook. What happen with the macpro ?

    MacPro bought in 2010
    MacBook Pro
    MacBookPro7,1
    Intel Core 2 Duo
    2,4 GHz
      Nombre de processeurs :          1
      Nombre total de cœurs :          2
      Cache de niveau 2 :          3 Mo
      Mémoire :          4 Go
      Vitesse du bus :          1,07 GHz
      Version de la ROM de démarrage :          MBP71.0039.B0B
      Version SMC (système) :          1.62f6
      Numéro de série (système) :          W804853GATP
      UUID du matériel :          716CB476-983B-5C43-B363-988FB608C01C
      Capteur de mouvement brusque
    État :          Activé
    System:
    Mac OS X 10.6.7 (10J869)
    Darwin 10.7.0
    Video DIsplay Card
    NVIDIA GeForce 320M :
      Jeu de composants :          NVIDIA GeForce 320M
      Type :          Processeur graphique (GPU)
      Bus :          PCI
      VRAM (totale) :          256 Mo
      Fournisseur :          NVIDIA (0x10de)
      Identifiant du périphérique :          0x08a0
      Identifiant de révision :          0x00a2
      Révision de la ROM :          3533
      Moniteurs :
    LCD couleur :
      Résolution :          1280 x 800
      Profondeur de pixels :          Couleurs 32 bits (ARGB8888)
      Miroir :          Activé
      État du miroir :          Miroir matériel
      Connecté :          Oui
      Intégré :          Oui
    Is that what you asked ?  Do you need other data ?
    Note that I have also strong distorison when running slides show with iphoto.
    Thanks

  • Cloning Hdd to SSD boot drive and what happens with Music/Logic Plugins

    Hi, my computer is a mid-2012 Mac Pro 12 Core
    It's a great computer but I'm considering upgrading my main boot drive (WD Caviar Black 1TB HDD) to a 1tB Samsung EVO 840 SSD drive (I'm using a sonnet tempo PCI card to mount an SSD that holds audio at the moment and will add another SSD for the boot drive I'm referring to) so I just had a question - if I clone the HDD to the new SSD, what happens with things like licenses for my audio plugins, such as Native Instruments Komplete, programs by IKMultemedia. programs that use an ILOK such as Steven Slate Plugins and also, WAVES plugins?  Will this info all carry across to the new SSD drive or do you think I'll need to reauthorise some things?  I have all the serials etc so this shouldn't be an issue, but just wondered.
    Any help would be appreciated as it feels like quite a big step in that it's my main system drive!
    Thanks in advance
    Sam

    CCC is excellent. If it doesn't work then sure, just always have a safety net of your system that is untouched.
    Also, after a clean install, CLONE it!
    And then use Setup Assistant. Migration Assistant.
    Clone of the system can go on sparse disk images too so you don't have to partition (should have at least one though) and you can have clone from different stages and versions: 10.9.4, without Setup Assistant, migrated, full loaded with all your apps. Multiple versions.
    CCC is designed to make a working bootable copy of a system so you can move the system to another boot device like hdd and SSDs without the worry.
    But I think we were talking about a system that did not see a clean install of Mountain Lion or Mavericks so it is over due for one!

  • In latest 2 days after update ios 5.01 my ipad2 suddenly restart when i reading from ibook, what happen with new update ?

    In latest 2 days after update ios 5.01 my ipad2 suddenly restart when i reading from ibook, what happen with new update ?

    Download the full version of the software then shift click the restore button. This will ask you where the firmware files are. Once you point to the firmware then you can install the official version

  • What happens with bootcamp after ios update

    Hello,
    I am about to update from ios 10.7 to 10.8 (Mountain Lion). What happens with my (data on) bootcamp? Do I need to reinstall it?
    Thanks in advance.
    Regards,
    Marcel Rombeek

    iOS and Mac OS X are completely separate things, so I'm a bit confused. But assuming you're referring solely to updating Mac OS X, upgrading to Mountain Lion should not affect your Bootcamp partition in any way, though with Mountain Lion not yet released, we can't say with absolute certainty.
    Regards.

  • What happened with the pagemaker trial?

    Hi, I'm trying to download the Adobe Pagemaker on my MAC and it's not working, can you guys help me or tell me why?
    Thanks

    I try that too but didn't open as well...???Do you think there's anyway you can send me the file?Thanks!
    Nany           <Removed by Moderator>
    Date: Fri, 8 Jun 2012 10:19:15 -0600
    From: [email protected]
    To: <removed by moderator>
    Subject: Re: What happened with the pagemaker trial? What happened with the pagemaker trial?
        Re: What happened with the pagemaker trial?
        created by Jeff A Wright in Trial Download & Install FAQ - View the full discussion
    This is a stuff-it archive.  You can locate a copy of Stuff-it Expander at http://www.stuffit.com/mac-expander.html#compare.  You can use this to open the sit file.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: What happened with the pagemaker trial?
    To unsubscribe from this thread, please visit the message page at Re: What happened with the pagemaker trial?. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Trial Download & Install FAQ by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HT204347 What happened with my Macbook?

    When I started my MacbookPro, and press hold the option key which I would like go to Bootcamp, but It goes to the Locked and need type password. What happened with my macbook?

    Dear Melophage,
    Thank you for your replied. Do you know any way to solve my trouble without go to the Apple Retail Stores or Apple Authorized Service Providers?.
    Thank you.

  • What happened with the 7000 2011.q1 fw update

    Dose any one know what happened with the 7000 2011.q1 fw update, we where eagerly waiting hopping to get the compressed replication feature (save in replication bandwidth).
    Thanks,
    -Eli

    Restore your library from an up to date backup.
    If you don't have a backup (which you really should), see turingtest2's user tip on Empty/corrupt iTunes library after upgrade/crash for steps necessary to restore your library within iTunes - this assumes that your media is all present on your computer, as it always should be.
    Otherwise, see tt2's notes on Recover your iTunes library from your iPod or iOS device

  • What happened with 'Hard Rock/Metal' streams?

    Hi there,
    What happened with 'Hard Rock/Metal' streams? It's gone...
    thanks!

    That's what I'd like to know aswell...

  • What happened with my photoshop? the layers name disappear and every drop-down function getting smaller?

    What happened with my photoshop? the layers name disappear and every drop-down function getting smaller?

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • What happened with cc sync?

    what happened with cc sync. its been more than a year since adobe advertise service file/folder sync, right? So why still it doesn't work? we paying for this service after all! any suggestions?

    When Whats app is synced to my computer I think it just copies the app

Maybe you are looking for

  • SEPA Payment - Bank Charges borne by Self OR Payer

    We are doing a simple SEPA payment using Idocs. As you know default PSD setting is now "SHA". Does anyone know how payer can set the default charges to be borne by "OUR" i.e the company should bear charges rather than being shared between beneficiary

  • Reg : Cross browser issue while handling LOV event on KeyFlexFeild

    Hi OA Gurus, We are encountering issues on R12.0.6, JDev 120Rup6. We have the following test case and code changes. Requirement: We have OA page where we have one KeyFlexFeild item and a normal LOV. Page items are part of one AM and LOV is in another

  • How do I display variables in a query in Bex Analyser 7.0?

    Is this option gone in 7.0? I know I can insert navigation pane or filters, but how do I display what variables have been used to run a particular query? I run a query and there is no way of telling HOW I ran it... I am surely missing something here,

  • Issue With select Check box in advance datagrid

    Hi        i am using advance datagrid having hierarichal data.There is one column having checkbox and one header renderer(CheckBox) on top giving functionality of select all.when i clicked on select all checkbox , all the checkboxes in that column no

  • Help in translating JAVA code into CF

    Hi all!  I'm at the end of integrating an in-house calendar with Google calendars and all is working, however, I am stumped as to how implement callback functions.  Here's what I'm trying to do as outlined on http://code.google.com/p/google-api-java-