Customization Manager 4.0 - Want to avoid default patch procedure

The only default deployment procedure available in ACMP 4.0 is "Patch Oracle E-Business Suite". As you know this shutdowns the application processes before the patch and starts them after the patch.
We don't want to stop applications for code migrations, as simple as a SQL script or a custom report RDF migration.
Is the only way to create a new deployment procedure by making a copy of "Patch Oracle E-Business Suite" and deleting un wanted steps ?
Are there any other options ?
-Srini

Hi Srini,
I am sure that ACMP also supports the hot patch mode. In this mode the environment will not go down. This mode I use by my own for all the not production environments.
But keep in mind that any environment in use may just lock an object and therefore your patch may fail. So our advise is it to log out any user when patching starts (at least).
Volker

Similar Messages

  • I want to avoid or reject mapping import from AD to UPA in sharePoint 2010

    I don't want the Title from AD to go to UPA I n Sharepoint 2010
    Like I don't want any updates from AD to UPA regarding the Attribute title in AD In UPA the property is TITLE
    but I have removed mapping I feel their is Hidden mapping between the AD and UPA for the TITLE property.

    Hello,
    As per my R&D, it does not seems to possible to remove standard properties. AD Title property by default map with SPS-jobtitle, which is the standard way. May i know why you want to avoid this?
    Here i have found one similar thread:
    http://sharepoint.stackexchange.com/questions/35525/user-profile-synchronization-how-to-delete-overwrite-job-title-property
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Newbie wants to avoid disaster!

    Hi everyone,
    My missus is getting a new iPod today to compliment the shuffle she is lovin'!!
    She & I want to avoid any possible disasters when setting it up and avoid erazing music losing settings etc.
    Can anyone help us with 4 questions please?
    Thank you
    Flobbyblob
    Question 1
    She has a collection of bought music which has been downloaded to her Library on her computer using iTunes.
    She has created a list of 53 tunes in DEVICES. (I'm not sure what you call this list)
    Does this mean that when the new 80GB iPod is connected it will also appear as a DEVICE and can have its own list of music, or will it erase her existing library?
    QUESTION 2
    Having purchased the tracks from iTunes, can she put them on both devices, and is it legal? (UK)
    QUESTION 3
    We like what we've bought, and plan to get 'Shuffles' for each of the kids.
    Can they also plug into her computer and load tracks on their Shuffles?
    QUESTION 4
    I will be getting an iPod in October.
    At the moment I have a crap mp3 player with my own collection of MP3's I have transferred from old LP's, plus Mp3's made from my 100 odd CD's.
    Can I then set up my computer to have my Library shared by all our family? i.e. 4 devices
    (I am confused whether if there are two PC's with two different libraries on them, the 2 iPods and 2 shuffles connect to either or both of these two pc's (2 libraries) to put their own selections of music on them - and is it legal?)
    PC   Windows XP Pro  

    "Does this mean that when the new 80GB iPod is connected it will also appear as a DEVICE and can have its own list of music, or will it erase her existing library?"
    You can use multiple iPods with a single library, the library will not be erased: How to use multiple iPods with one computer
    "Having purchased the tracks from iTunes, can she put them on both devices, and is it legal? (UK
    Yes she can put them on as many iPods as she likes
    We like what we've bought, and plan to get 'Shuffles' for each of the kids.
    Can they also plug into her computer and load tracks on their Shuffles?
    Yes they can: Loading songs onto iPod shuffle - Windows
    "Can I then set up my computer to have my Library shared by all our family? i.e. 4 devices"
    Yes you can, see the first link on using multiple iPods with a single computer
    "if there are two PC's with two different libraries on them, the 2 iPods and 2 shuffles connect to either or both of these two pc's (2 libraries) to put their own selections of music on them - and is it legal?)
    First of all yes it's legal (don't know why you think it's not). However:
    1) iPod shuffles can only update from a single iTunes library ( a technical issue, not a legal one, it's the way they are designed).
    2) To use an iPod ( other than a shuffle) on multiple computers you have to set it to manual update:
    Using iPod with Multiple computers
    Managing content manually on iPod

  • .  It's not clear to me if the default sync for calendar is the iphone or my mac (shows 82 modifications).  I want it to default to the mac but the wording suggests the iphone.  Also, I don't see any way to do the syncy

    I'm having trouble with a sync alert.  It's not clear to me if the default sync for calendar is my iphone (3G) or my mac (shows 82 modifications).  I want it to default to the mac but the wording suggests the iphone.  Anybody know the default device and if it can be and if the other can be selected if desired
    Also, I don't see any way to do the sync on an individual entry basis for calendar.  Looks like it will only do all of them at once.  I'd like to go through them one by one to confirm which entry is correct.
    Thanks
    PS This message ("Syncing with [OWNER'S NAME] iphone will change more than xx% of your calendars events or todos on this computer) only started when I recently updated my OS.

    bubblesblom wrote:
    Okay, so my friends think it is funny to change the passcode on my iPhone.
    Maybe you should get new friends.
    I'm not sure that recovery mode works when you have to trust the computer, but did you try it?
    If you can't update or restore your iOS device - Apple Support
    If that won't work, perhaps you can use Find my iPhone from a computer in your iCloud.com account to erase the device.
    iCloud: Erase your device - Apple Support
    This has nothing to do with the Find my iPhone app being installed on the phone, but you do have to have Find my iPhone activated in the iCloud settings on the phone.

  • Want to Avoid Loop for all entries with select query !!

    Hi Guru's  !
    This is my following code . I want to avoid loop  to improve the performance of program.
    data: lt_cuhd type HASHED TABLE OF /sapsll/cuhd WITH UNIQUE key guid_cuhd,
          ls_cuhd type /sapsll/cuhd.
    data: lt_comments type STANDARD TABLE OF zss_comments,
          ls_comments type zss_comments.
    data: lv_objkey type string.
    select * from /sapsll/cuhd into table lt_cuhd.
    loop at lt_cuhd  into ls_cuhd.
      CONCATENATE ls_cuhd-corder '%' into lv_objkey. " Example 'Mum%'
      select * from zss_comments into table lt_comments
                where objkey like lv_objkey
                 AND guid_cuhd = ls_cuhd-guid_cuhd
                  AND event_id <> ''.
    endloop.
    I want
    New code should be...using all entries no loop required.
      *select * from zss_comments into table lt_comments
                where objkey like lv_objkey
                 AND guid_cuhd = ls_cuhd-guid_cuhd
                  AND event_id <> ''.*

    why dont you add the object key also to  lt_cuhd and once you fetch the data to lt_cuhd loop it and add the '%'
    when looping use field symbols so that you dont have to use  modify.
    then use for all entries using lt_cuhd
    i don't you can find a better way to add the % mark apart from looping but by this way only one select query will be done for
    zss_comments
    Thanks
    Nafran

  • How to avoid default selection screen in HR interfaces(using pnp ldbs)

    How to avoid default selection screen in HR interfaces(using pnp ldbs)

    Dear Rakesh,
    The report category is used to change the selection screen of programs that use the 'PNP' logical database.
    See links bellow:
    http://www.sapdevelopment.co.uk/hr/hr_repcat.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/229357553611d3967f00a0c9306433/frameset.htm
    Report categories for selection screen in HR programming
    Also visit the following blog:
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    Regards,
    Naveen.

  • I have been an Adobe customer since 1991 on an old IICi.  Awhile ago I purchased Creative suite 4.  I have Adobe Acrobat 4, ver. 9.5.5.  Are there any updates I can apply?  What is involved in updating if I want to avoid the cloud?  I have a satellite con

    How do I upgrade Acrobat Pro 9.5.5?
    I have been an Adobe customer since 1991 on an old IICi.  A while ago I purchased Creative suite 4.  I have Adobe Acrobat 4, ver. 9.5.5.  Are there any updates I can apply?  What is involved in updating if I want to avoid the cloud?  I have a satellite connection that charges for bandwidth usage.  I have a 27" iMac, using 10.10.3.

    Hi Kenneth ,
    We are sorry but you would not be able to update from Creative Suite 4 .The reason being there are no updates available for Acrobat version 9 .It is quite an older version so you are unfortunately not eligible for any updates or upgrade .
    The best option for you would be to opt for Acrobat DC .
    You could either for Acrobat DC subscription or perpetual version .Here is the link to download the same .
    https://helpx.adobe.com/acrobat/kb/acrobat-dc-downloads.html
    https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    You could also opt for Acrobat DC Creative Cloud subscription
      https://creative.adobe.com/products/acrobat
    Regards
    Sukrit Dhingra

  • Raw material available in stock. Want to avoid Pur Req for sales ord stock

    Dear Experts,
    After MRP Run, we want to avoid creation of purchase requisitions (procurement) for for project stock/sales order stock for raw materials whoose unrestricted-use stock is available. Later on we will do transfer posting of available stock to project/sales order stock.
    Kindly suggest.
    Shiva

    Shiva,
    I dont think you would have got new PR's created after changing the Individual collective indicator in the material master - MRP4 view of the raw material.
    I would suggest you to run MRP in "3"- Delete and Recreate Mode or Delete the already created PR's and then try running MRP.
    Regards,
    Prasobh

  • Moving & want to avoid engineer charge

    I will be moving at the end of the month. I would like to transfer my line to my new place but I want to avoid having to pay £130 for an engineer to come out to connect the line. I know that the line there is still connected so I don't see why I should have to. I also don't want to be tied into another or extend my contract. 
    I don't really know how to approach the situation though. Can you help at all?

    There is no need to pay the £130 if the line is actually connected.  By that I mean that if you pick up the phone you get a dial tone, and if you dial 17070 you get a recorded message giving you your phone number.
    Make sure when you go through the ordering process (either by phone or on-line) that you say that the line is already connected.
    As for the minimum contract, it's a standard clause in BT's T&Cs that a home move means a new 12 month minumum contract.  I can't see any way round it.

  • Error Creating VM on 2011 iMac - The Hyper-V Virtual Machine Management service encountered an unexpected error: The remote procedure call failed. (0x800706BE).

    I am running Hyper-V in Windows 8.1 on a late 2011 27 inch iMac. Whenever I try to create a virtual machine I get the error below and Windows warns that it will restart in 1 minute. I tried a clean install of Windows, but my PC still crashes ever
    time I try to create a VM. I was able to successfully use Hyper-V in prior versions of Windows on this same PC. Any clue as to what is going on? A driver? Windows 8.1? Mac Hardware related?
    I see the following two entries in event viewer but have no other clue as to what is happening:
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          1/10/2014 10:48:46 AM
    Event ID:      16000
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      Charles-PC.CHARLESPOOL.local
    Description:
    The Hyper-V Virtual Machine Management service encountered an unexpected error: The remote procedure call failed. (0x800706BE).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-VMMS" Guid="{6066F867-7CA1-4418-85FD-36E3F9C0600C}" />
        <EventID>16000</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-01-10T15:48:46.770451300Z" />
        <EventRecordID>58</EventRecordID>
        <Correlation />
        <Execution ProcessID="2488" ThreadID="8704" />
        <Channel>Microsoft-Windows-Hyper-V-VMMS-Admin</Channel>
        <Computer>Charles-PC.CHARLESPOOL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <UserData>
        <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <ErrorMessage>%%2147944126</ErrorMessage>
          <ErrorCode>0x800706BE</ErrorCode>
        </VmlEventLog>
      </UserData>
    </Event>
    Log Name:      Microsoft-Windows-Hyper-V-VMMS-Admin
    Source:        Microsoft-Windows-Hyper-V-VMMS
    Date:          1/10/2014 10:48:46 AM
    Event ID:      16010
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      Charles-PC.CHARLESPOOL.local
    Description:
    The operation failed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-VMMS" Guid="{6066f867-7ca1-4418-85fd-36e3f9c0600c}" />
        <EventID>16010</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-01-10T15:48:46.773497100Z" />
        <EventRecordID>59</EventRecordID>
        <Correlation />
        <Execution ProcessID="2488" ThreadID="8704" />
        <Channel>Microsoft-Windows-Hyper-V-VMMS-Admin</Channel>
        <Computer>Charles-PC.CHARLESPOOL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <ProcessingErrorData>
        <ErrorCode>15005</ErrorCode>
        <DataItemName>Parameter0</DataItemName>
        <EventPayload>
        </EventPayload>
      </ProcessingErrorData>
    </Event>

    Hi CharlesPool,
    I am assuming that the win8.1 is in-place updated from win8 .
    Maybe you need to check the state of hypervisorlaunchtype .
    If it is off , please run command " bcdedit /set hypervisorlaunchtype auto "
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • In Scom,How to add CAC value in given MP (management pack)? Please give me in detail procedure with example if possible.

    In Scom,How to add CAC value in given MP (management pack)? Please give me in detail procedure with example if possible.

    Hi 
    CAC is System.ConsolidatorCondition condition detection module used to consolidate the monitoring i.e. you can generate an alert on multiple occurrence of issues instituted of generating single alert for issue.
    refer below link for more information
    http://msdn.microsoft.com/en-us/library/ee809324.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/20301.how-to-add-consolidation-for-url-monitoring-in-scom-20072012.aspx
    Regards
    sridhar v

  • VI70 - Default Import Procedure

    Hello Experts!
    My problem is, that the Default Import Procedure(40000 from AT to NL) in VI70 doesn´t default the field in my purchase order.
    I know i can also default the Procedure in an inforecord, but why i can default it in VI70, but the system doesn´t care about it.
    Maybe you have some advices for me,
    Best Regards
    Florian

    Hi,
       Refer the note: 473069 - Default values for external stock transport order which explains the standard design. Please check the note and proceed acordingly.
    Regards,
    AKPT

  • Iphone 4 wont sync to itunes anymore. Itunes opens then a message comes up saying I need to restore it. I want to avoid doing this as I've noticed some of my purchases since updating itunes are missing from computer but they are on my phone.

    I have reset my phone, put the latest updates on itunes and iphone and thought it might work then, but no luck. I am trying to avoid restoring it as I dont want to loose the data I have purchased that is missing off my itunes since I updated that. I'm not sure how to contact itunes to get my data put back on my itunes on computer. All my purcahsed data from itunes still comes up on my phone as it hasnt been able to sync to the update. DOes anyone know how to contact itunes to have bought data re-put back on. It comes up in my itunes acocount with the date and purchase number but these items are missing from my itunes purcahsed items. Weird?
    I am on an imac. Is there anyway I can get around the issue of syncing again or should I just restore once I have contacted itunes about them deleting my paid for items! I feel very ripped off, its like buyoing something from target and having the manager come to your house and retrieve it! lol

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • BDC - avoiding default values in screens

    Hi all,
    I am writing a BDC for transaction me31k. There are nearly 14 fields in the first screen. I am passing values to only 5 of them in my BDC program. The problem I am facing is that the remaining fields get some default values which I am not passing.
    I am not populating space for these fields in my BDC program to avoid the default values. Is this the right way of doing this ? please let me know if there is any other way.
    Thanks,
    MGS.

    if the transaction is a change tcode then the values already existing will be there, if you don't want them the only way is to blank them out in your program. Or else if you are creating and the default values are not set from the functional perspective then check your program once. Or else it should work find with the fields you are populating as long as the other fields are not mandatory.
    Run the SHDB and pass only the values you want to and leave the rest. you will know how it behaves and code accordingly.
    Hope it helps.

  • Please Help - Avoid default name when creating constraints

    Here I am creating two very simple tables:
    create table supplier
         id number not null,
         constraint pk_supplier primary key (id)
    create table product
    id number not null,
    supplier_id number not null,
    constraint pk_product primary key (id),
    constraint fk_product_supplier_id
    foreign key (supplier_id) references supplier(id)
    After done while I choose to view table constraint information by using:
    select table_name, constraint_name
    from user_cons_columns
    where lower(table_name) = 'product';
    I get result:
    TABLE_NAME                     CONSTRAINT_NAME
    PRODUCT                        SYS_C005441
    PRODUCT                        SYS_C005442
    PRODUCT                        PK_PRODUCT
    PRODUCT                        FK_PRODUCT_SUPPLIER_ID
    What is the "SYS_C005441" and "SYS_C005442" for? Can I avoid creating them?
    Thanks

    Justin Cave wrote:
    Are you suggest not explicitly naming all your constraints? Or just the NOT NULL ones?No, not at all. Did not even thought that far when I responded. Bit of foot in mouth as I only thought of not null constraints. Blame it on a lack of coffee. :-)
    I usually name primary & foreign key and check constraints. But not null constraints - too much of an effort to name them IMO.
    But you do raise an interesting topic. Why bother naming some constraints (e.g. PK and FK) and not others (e.g. not null)? So playing devil's advocate, why should we be naming constraints at all?
    It sounds like you're suggesting that all constraints should get system default names. Well, one can argue that the same effort of naming other constraints is not worth it - why have null constraints as the exception to implicit naming? I would think that the issue I raised also applies to all constraints.
    You have multiple foreign key constraints for INVOICE_ID - how do you name these? I would like both the table and column names as this will provide the meaning needed when seeing the constraint being violated. But with 30 chars only, that is a problem. So invariable one needs to start to abbreviate table and column names in order to make it meaningful constraint name. Been there many times - disliked the constraint name I came up with every time, as it was a compromise and not the actual naming format I would have preferred.
    If that's what you're suggesting, doesn't that create problems for you when different environments have different constraint names? I know personally that I'd much rather have named constraints so that when there are constraint violation errors in production, I can start troubleshooting the problem in my local environment without first determining how to map the production constraint name to my local database's constraint name. Understand your point - and yes, it can be an issue. But by the same token, why should an application user ever see a default Oracle exception? With the exception of system-type exceptions (e.g. no more tablespace space, eof on communcation channel), all other exceptions should be custom application exceptions.
    Showing for example a "+ORA-00001: unique constraint (xxx.xxxxx) violated+" is wrong IMO. The app code should trap that exception and raise a meaningful and unique application exception for that. The user seeing anything other than a custom app exception, should itself be an exception.
    And I'd much rather be able to put the constraint name in a script that is to be promoted through the environments rather than coming up with a process that uses dynamic SQL to figure out the name of the constraint I want to do something to. Well, I would not rely on a constraint name itself to determine what it is. Just because it says fk_invoiceid_invoices does not mean that is is a foreign key on column invoice_id and references the invoices table. The safe/proper thing to do would be to query the data dictionary and confirm just what that constraint is.
    I suppose if you know that all the lower environments are very recent clones of production rather than running all the scripts in source control that these problems may not be particularly large. But I'm curious if you have some better approach to handling them (or if I'm completely misinterpreting what you're suggesting).Not sure if you recall some feature discussion with Tom and others (was on asktom?) when someone came up with this core issue and suggested it be addressed by allowing one to define an exception message with the definition of the constraint. Cannot recall the exact syntax proposed, but I do remember thinking that it was not a shabby idea - as this solves the problem of having to invent a meaningful name using 30 chars only. And it also removes the need for trapping that constraint violation in all app code that may cause the exception and raising a custom and meaningful app exception instead. Not too mention that plain and direct SQL access will show the same exception message.
    Perhaps in Oracle 12c? I assume the c as it seems that The Next Big Thing is cloud computing and surely Oracle 12 will somehow try to exploit that buzzword - as it has with i (Internet) and g (Grid) versions. ;-)

Maybe you are looking for