Is it possible to update only the Shared Install component?

We are running MDM 7.1 with all components at 7.1.06.211.  We opened an OSS ticket due to an issue with CCMS monitoring and SAP told us to upgrade the MDM Shared Install component to at least 7.1.06.230.  We want to use sapinst --> update to apply the patch but cannot find a way to select only the shared install component.  Is the correct procedure to:
1. In sapinst on the "Update - MDM Instances" screen, select  "Update all MDM instances of the SAP system" (MDS00, MDIS01, MDSS02)
...and then...
2. In sapinst on the "Update - Content Archives" screen, extract only the shared.sar archive and deselect the others (mds.sar, mdis.sar, mdss.sar).
Will this procedure update the shared installation component only and not the others?  Is this possible?  If not, will all of the other components have to be updated even though SAP said to update only the shared installation component?
We have searched OSS and SDN but cannot find a clear explanation of how this should work.  Note 1481741 states that all components within the same SP level (e.g. 7.1.06.xx) are compatible and recommends upgrading only the component affected by the fix, which is what we want to do.
Any help will be appreciated.
Thanks and regards,
WL

Camoracer got it - my work computer has limited hardware/system resources. It can handle iTunes audio, but iTunes video slows it to a crawl and makes it so I can't get any work done. There are video podcasts I'd like to listen to at work, but can't for that reason. So I'd like to just play the audio stream from the podcast while disabling the video stream. The video portion isn't necessary anyway, it's usually just a talking head and not anymore informative than the audio portion alone.

Similar Messages

  • How do I update only the page numbers of a table of contents in Indesign CS6?

    Hi there!
    Please help! I'm making a medical book with more then 1300 pages and about 40 different table of contents.
    I want to update only the page numbers on all the table of contents. But I only see the option to update the complete table of contents.
    I saw on other forums that this is a familiar and very old problem. Did Adobe already fixed this?

    hahaha thanks no I won't Using cross-references in the future! but sending the request anyway; nothing ventured, nothing gained!
    Thanks again!

  • Is it possible to update to the latest Mail version without updating OSX Mountain Lion, Current Mail version is 6.6

    Is it possible to update to the latest Mail version without updating OSX Mountain Lion, Current Mail version is 6.6?

    Thank you for your prompt reply.
    Just wanna confirm again, your are sure about it?

  • SPA 9000 - Is it possible to use only the FXS lines (a la SPA2102) ?

    SPA 9000 - Is it possible to use only the FXS lines (a la SPA2102) ?    At this moment I have not received the 9x2 series phones I ordered, but am trying to set up the SPA9000.

    yes, it would work. 

  • I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    Question
    I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    To be more precise, you can setup a JComponent or JPanel on top of your JavaFX nodes that has a TransferHandler that can convert the (AWT/Swing) images dragged to the app to JavaFX image and then insert it into the underlying node.
    As for the file chooser itselft: ListView and the JavaFX composer can allow you to create one quite easily. TreeView can aslso be used to a lesser extend (still a big buggy). For both of these, there are small bugs in the Cell API that may (or may not) prevent from displaying a proper thumbnail in the cells.
    You can also use a regular JFileChooser if you do not mind the dialog box having a different LnF from the rest of your application.

  • It is possible to copy paste the Flex AmChart component

    Hi
    It is possible to copy paste the Flex AmChart component to word or powerpoint.
    Thanks in advance.
    With regards
    Karthy

    1. To take a snapshot of a graph
    import mx.graphics.ImageSnapshot;
    [Bindable]
    public var balanceSheetImage:String;
    var snapshot:ImageSnapshot =
    ImageSnapshot.captureImage(balanceSheet); // balanceSheet is a Flex chart instance
    balanceSheetImage = ImageSnapshot.encodeImageAsBase64(snapshot);
    snapshot = ImageSnapshot.captureImage(earnings);
    earningsImage = ImageSnapshot.encodeImageAsBase64(snapshot);
    2. Copy to the clipboard
    Flash Player
    System.setClipboard(text);
    AIR
    http://livedocs.adobe.com/flex/3/html/help.html?content=CopyAndPaste_6.html
    You have more flexibility for that part if you use AIR than if you use Flash Player. With Flash Player, it will be only text based information, with AIR, it can be a binary format like a bitmap
    3. Someone explains here how to get that Base 64 encoded XML image to Powerpoint
    http://tech.groups.yahoo.com/group/flexcoders/message/157794

  • Is it possible to update only a part of my apps

    Hi, I would like to upgrade my apps, but my iPad2 writes that I don't have enough memory. Is it possible to upgrade only a part of the apps? In the appstore, you can chose either all of them or nothing.
    Thank you!

    You can update all, or download select App updates one at a time by selecting the app update you want to install.

  • Updating only the last record.

    Hi,
    I have a scenario where we get more than 1 record based on style. Everytime the new record comes in, I need to update the last record inserted. It requires a procedure to do it, but need some help on how to just update the last record only and not all the previous received records.
    Here is the scenario.
    create table test_1 as
    with data_Set as
    ( select 'ABCD' style, 20080101 date_received, 2 duration,20080301 expire_Date from dual union all
    select 'PQRS' style, 20080201 date_received, 2, 20080401 expire_Date from dual
    ) select * from data_set
    so now on next run when i get another record
    insert into test_1
    select 'ABCD' style, 20080401 date_received, 3 duration,20080701 expire_Date from dual.
    now the procedure should insert the incoming record and also update the expire_date for the previous record to a day before date_received for the new record. I am ok doing it when its only 2 records , but when i get another record of same style, i dont want to update all the previous received records. I only want to update the last record on file.
    can anyone suggest?

    STYLE     DATE_RECEIVED     DURATION     EXPIRE_DATE     SEQ_INSERTED
    110427     7/31/2006     0     7/31/2006     2
    110427     9/1/2007     12     9/1/2008     2
    110427     8/2/2008     24     8/2/2010     3
    468130     3/13/1997     0          2
    468130     3/13/1997     12     3/13/1998     2
    468130     1/12/2008     12     1/12/2009     3
    Here is my data set
    and here is the query i use to update, does it look correct?
    update test b
    set ( expire_Date) =
    (select start_date - 1
    from test a
    where (style_no, date_received) in
    (select style_no, max(date_received)
    from test c
    group by style_no
    and a.style_no = b.style_no
    and style_no in ('468130','110427')

  • It is possible to copy only the response in web console?

    Ctrl+C an item in web console copies both time and response, example:
    [13:28:58.020] function alert() {
    [native code]
    How to copy only the response?
    function alert() {
    [native code]
    }

    That isn't possible AFAIK.<br />
    Firefox 26 will have the possibility to select part of the text, so you can leave out the time stamp and only select what you want.<br />
    The current Nightly build (28.0a1) can suppress the time stamps via the toolbox options, so you do not even see them anymore.

  • Is it possible to scale only the weight of strokes without the objects?

    I have a lot of line drawing illustrations each made with various weight strokes. Each illustration looks good by itself but when compared some look with overall thicker or thinner lines and I want to make them look the same because all will be used in the same book. To scale the weight of the strokes I make a scaled copy of each illustration and then select a line or set of lines selected using same -> stoke weight and with the eyedropper copy the style from the scaled version. This is a lot of work and I would like to know if there is a faster way to do this. Ideally I wish it was possible when using the scale tool to have the option to scale only the strokes with the same percentage.

    ...all I had to do was scale them with Scale Strokes & Effects turned off.
    Not quite the same thing. Using just one step in the situation you described only works because you had the forethought to use the same stroke weights on the two differently-scaled drawings. If you had used different sets of stroke weights in the two drawings, and needed to scale them to similar size, simply turning off Scale Strokes would not suffice; thus the workaround described.
    Example:
    You draw a camshaft using stroke weights of 1 pt. and 2 pt.
    From another original, you have a rocker arm also drawn using two stroke weights, but of .75 pt and 1.5 pt. The rocker arm is also drawn to a different scale, three times that of the camshaft.
    You need to combine the camshaft and rocker arm in the same drawing.
    Simply scaling the rocker arm to 33.3% with Scale Strokes turned off would not serve. The rocker arm would still have stroke weights lighter than those used in the camshaft. So you:
    1. Note an overall dimension of the rocker arm drawing.
    2. Scale the rocker arm to 133.33% with Scale Strokes on.
    3. Scale the rocker arm back to its original size by keying the noted dimension back into the H or V dimension fields, with Scale Strokes off.
    4. Scale the rocker arm to 33.33% with Scale Strokes off.
    Even the workaround will not truly serve if the stroke weights used in the two drawings being merged are not proportional. For example, If the camshaft had been drawing using stroke weights of 1 pt and 2 pt, but the rocker arm had been drawn using .75 pt and 2 pt.
    The underlying lesson is that it's advantageous to structure drawings using Graphic Styles, just as it's similarly advantageous to always use paragraph and character styles--even when you think you don't need them.
    So GSI's desire for a sensible, no-nonsense setting that allows you to scale strokes without scaling paths is quite legitimate. This could be implemented as simply as:
    Change this:
    to this:
    ...and make the checkboxes behave like checkboxes are supposed to (non-exclusive), rather than like radio buttons (mutually exclusive).
    Given several drawings (ex: a set of cartoon figures drawn at different times and/or from different sources) all drawn in loosey-goosey, artsy-tartsy eyeballed fashion with no structure whatsoever in terms of defined (and therefore selectable) styles, one could at least scale the various drawings to commensurate proportion and then just the stroke weights based on percentage of their original weights, and at least make the combined drawing more convincingly consistent. A "Sameness" slider could even be provided to skew the scaling of thin versus thick weights.
    Failing that (as is no doubt certain), this feature could be built with Javascript. But the result of doing so would be far more elegant if one could get the Palette object of ScriptUI to work worth a dang.
    JET

  • Is it possible to download Only the RunInstaller

    I want to patch the 8.1.7 to 8.1.7.4 but the RunInstaller ( from the 8.1.6) I have, doesn't work.
    How can I get this without download all the 8.1.7.0 package?
    Thanks

    robb13 wrote:
    Is there any way we can "download only" software updates on one computer and transfer the update to the other systems
    well, one way of doing that is to get the stand alone installer packages from [here|http://support.apple.com/downloads>, then either mount the .dmg's from the other Mac(s) or copy the .dmg's over the network.
    i actually prefer this over software download - i usually install new software while booted into _*safe mode*_.
    JGG

  • HT4914 Is it possible to make only the media on my computer show on my devices when iTunes match is activated so i don't have the thousands of songs of my whole family on my phone?

    I share an apple ID with my whole family, therefore there are hundreds of playlists and thousands of songsfrom the many computers. Can I make it so that only the playlists and songs from my computer to which my devices are synced to, are the ones that show up on my devices with out having to sync them all to my phone, ipad, etc.

    iTunes match will only work from a computer in terms of uploading new content. You should be able to copy iTunes purchases back via File > Transfer Purchases (File > Devices > Transfer Purchases on iTunes 11). For content from other sources there are some third-party programs listed half-way down this page which might help you get your content back from your phone : https://discussions.apple.com/docs/DOC-3991

  • Is there a possibility to clear ONLY the COMPLETED downloads when a button is clicked in firefox?

    is there any way (natively, or by using an extension) to clear ONLY the COMPLETED downloads when a button is clicked in firefox. it should not clear the paused, failed or cancelled downloads. - similar to the functionality in INTERNET DOWNLOAD MANAGER software by TONEC. i have searched lots but could not find such a function. :(

    Along the lines of cor-el's last post, if you want to delete most of the downloads, you can select the entire list using Ctrl+a then Ctrl+click the ones you want to exclude from the selection.
    In some cases, Firefox supports "places queries" to drill down on specific kinds of history. However, I didn't see one for downloads documented in the MDN article, so I'm not sure whether there is a way to query just for successfully completed downloads.
    https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Places_query_URIs

  • Update only the row in DB where the cursor are positioned using Write Back

    Hello,
    I need to have the possibility to create/change values (insert or update data back into the database), dynamically or by typing, in some columns of the physical DB that are mapped in a report request, and that new or changed values could be used as a filter columns in another report request.
    So, I have created a new report request in a Subject Area where a certain column of the request result could be editable to make possible change the present value and then write it back in the physical DB.
    I have implemented for the column name ‘MOV_VALUE’ the value interaction type format Write Back, and every time I changed any value on this column it updates all rows with this same value from the table ‘MOVEMENTS’.
    See below the Template file used in the Write Back table properties:
    <?xml version="1.0" encoding="utf-8" ?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
    <WebMessage name= "UpdateMovementData">
    <XML>
    <writeBack connectionPool="Connection Pool">
    <insert> </insert>
    <update> UPDATE MOVEMENTS SET MOV_VALUE=@{c4} </update>
    <!-- <postUpdate>COMMIT</postUpdate> -->
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    Is there any possibility to only update the record from where it is the cursor positioned by using the Write Back in the Answers report?
    Is necessary to create any condition to the where clause for the update statement? Which conditions?
    Thanks in advance.
    Regards,
    Pedro Resende

    You might try posting to a BPM forum. BPM is a layered product that happens to use WL JMS, but I think most of the folks on this forum aren't familiar with BPM.
    Tom

  • Is it possible to update only one java file in my application bundles without re-deployment?

    For Example,
    i have a Application.java file in my application-bundles.jar and it is running.
    I need to add a new method in Application.java file alone while the instance is running.
    I know we can change .jsp file through CRX-DE lite, but looking for .java files.
    is it possible or can some one suggest an idea on this?

    Hi kalimisetty,
    It is part of bundles. It needs recompilation & deployment. Though server restart is not required.
    Thanks,
    Sham

Maybe you are looking for