Release a patch from the concert in which it was generated.

Hello, I have a question .When I create a new patch this is a perfect copy of that concert. But if I try to do something as clear a strip, change its position, copy it or else I see that I can not do anything. Is there a way to make independent a new patch from the original concert which was originated? So you can edit it in its entirety?

Sorry but my first problem is an English really rough. I knew it was hard to explain, I try with an example: if I create an entire setup to the level of the concert then when I create a new patch with the "+" button at the top right, will create a new patch in all identical to the content of the concert. But in this new patch every strip displays the Mainstage icon at the top and is not editable except the very few aspects. You can not move, can not delete unless you do it at the concert level but then it will be deleted from all other pacth. And I do not find a solution to make it independent from the level of concert in which it was generated.

Similar Messages

  • Now have OSX 10.8.2. cannot update my HP Scanjet software. Have downloaded a patch from the HP site, but my MacBook will not open it as it says it does not recognise HP as an apple compatible compnay. Any advise?

    I have just plugged in my scanner (HP Scanjet G2710) however my old HP Scan software will not opne. I have found a patch on the HP site which may fic the problem (although it only sesm to go up to OSX 10.7) and having donaloaded the patch my Mac will not opne or deal with the software as it now tells me it does not recognise HP as an Apple affiliated compnay. Any help / suggestions? I don't really want to buy another scanner...

    Hi,
    By reading your notes I assume you didn't uninstalled the HP Software and installed the latest v10.6 software available online, any previous version will not work regardless the patch installation as it was not signed.
    Be sure to follow the directions listed in here:
    http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c03428470 #A3
    The latest software can be downoad from here:
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en &cc=us&prodTypeId=15179&prodSeriesId=3423844&prodNameId=3423845&swEnvOID=219&swL ang=8&mode=2&taskId=135&swItem=sj-78355-5
    Then you should reinstall the patch:
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en &cc=us&prodTypeId=15179&prodSeriesId=3423844&prodNameId=3423845&swEnvOID=219&swL ang=8&mode=2&taskId=135&swItem=cs-97791-1
    Hope that helps,
    Shlomi

  • Fetch the netprice from the validity period which always matches with the

    Let me describe the same.
    Suppose the PO creation date is 04.07.2007
    The conditions for an item in a contract for the PO are as follows;
    1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
    2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
    We need to always fetch the netprice from the validity period which always matches with the PO creation date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
    But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
    This data is then used to fetch the get the netpr data from EKPO.
    what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date..
    Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
    FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
    p_c_k_bstyp TYPE ebstyp
    p_p_bukrs TYPE bukrs
    p_p_ekorg TYPE ekorg
    p_p_ekgrp TYPE bkgrp
    *Begin of Mod-004
    fp_p_cernam type ty_r_ernam
    p_p_cernam TYPE ernam
    *End of Mod-004
    p_s_werks LIKE s_werks[]
    p_s_matnr LIKE s_matnr[]
    p_s_lifnr LIKE s_lifnr[]
    p_s_val_dt LIKE s_val_dt[].
    *mod-002
    data : l_amount type BAPICURR_D, " Net price
    l_waers TYPE waers, " Currency Key
    l_eff_amount type BAPICURR_D. " Effective value
    data: l_v_netpr type bprei.
    *mod-002
    SELECT ebeln
    bukrs
    bstyp
    aedat
    ernam
    lifnr
    zterm
    ekorg
    ekgrp
    waers
    wkurs
    kdatb
    kdate
    inco1
    INTO TABLE i_ekko
    FROM ekko
    WHERE ebeln IN p_s_cebeln
    AND bstyp EQ p_c_k_bstyp
    AND bukrs EQ p_p_bukrs
    AND ekorg EQ p_p_ekorg
    AND ekgrp EQ p_p_ekgrp
    *Begin of Mod-004
    AND ernam EQ p_p_cernam
    AND ernam IN fp_p_cernam
    *End of Mod-004
    AND lifnr IN p_s_lifnr
    AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
    IF sy-subrc EQ 0.
    Populates internal table i_ekpo using EKPO table.
    SELECT ebeln
    ebelp
    loekz
    txz01
    matnr
    werks
    ktmng
    menge
    meins
    bprme
    netpr
    peinh
    webaz
    mwskz
    uebto
    untto
    erekz
    pstyp
    knttp
    repos
    webre
    konnr
    ktpnr
    ean11
    effwr
    xersy
    aedat
    prdat
    INTO TABLE i_ekpo
    FROM ekpo
    FOR ALL ENTRIES IN i_ekko
    WHERE ebeln = i_ekko-ebeln
    and aedat = i_ekko-aedat
    AND werks IN p_s_werks
    AND matnr IN p_s_matnr.
    LOOP AT i_ekpo INTO rec_ekpo.
    MOVE rec_ekpo-ebeln TO rec_contr-ebeln.
    MOVE rec_ekpo-ebelp TO rec_contr-ebelp.
    MOVE rec_ekpo-loekz TO rec_contr-loekz.
    MOVE rec_ekpo-txz01 TO rec_contr-txz01.
    MOVE rec_ekpo-matnr TO rec_contr-matnr.
    MOVE rec_ekpo-werks TO rec_contr-werks.
    MOVE rec_ekpo-ktmng TO rec_contr-ktmng.
    MOVE rec_ekpo-menge TO rec_contr-menge.
    MOVE rec_ekpo-meins TO rec_contr-meins.
    MOVE rec_ekpo-bprme TO rec_contr-bprme.
    MOVE rec_ekpo-netpr TO rec_contr-netpr.
    move l_v_netpr TO rec_contr-netpr.
    mod-002
    read table i_ekko into rec_ekko with key
    ebeln = rec_ekpo-ebeln.
    l_waers = rec_ekko-waers.
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-netpr
    IMPORTING
    AMOUNT_EXTERNAL = l_amount.
    rec_contr-netpr = l_amount.
    mod-002
    MOVE rec_ekpo-peinh TO rec_contr-peinh.
    MOVE rec_ekpo-webaz TO rec_contr-webaz.
    MOVE rec_ekpo-mwskz TO rec_contr-mwskz.
    MOVE rec_ekpo-uebto TO rec_contr-uebto.
    MOVE rec_ekpo-untto TO rec_contr-untto.
    MOVE rec_ekpo-erekz TO rec_contr-erekz.
    MOVE rec_ekpo-pstyp TO rec_contr-pstyp.
    MOVE rec_ekpo-knttp TO rec_contr-knttp.
    MOVE rec_ekpo-repos TO rec_contr-repos.
    MOVE rec_ekpo-webre TO rec_contr-webre.
    MOVE rec_ekpo-konnr TO rec_contr-konnr.
    MOVE rec_ekpo-ktpnr TO rec_contr-ktpnr.
    MOVE rec_ekpo-ean11 TO rec_contr-ean11.
    MOVE rec_ekpo-effwr TO rec_contr-effwr.
    mod-002
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-effwr
    IMPORTING
    AMOUNT_EXTERNAL = l_eff_amount.
    rec_contr-effwr = l_eff_amount.
    *mod-002
    MOVE rec_ekpo-xersy TO rec_contr-xersy.
    APPEND rec_contr TO i_contr.
    CLEAR: rec_ekpo,rec_contr.
    mod-002
    CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
    mod-002
    ENDLOOP.
    Modifying i_contr using i_ekko.
    SORT i_ekko BY ebeln.
    LOOP AT i_contr INTO rec_contr.
    READ TABLE i_ekko INTO rec_ekko WITH KEY
    ebeln = rec_contr-ebeln
    BINARY SEARCH.
    MOVE rec_ekko-bukrs TO rec_contr-bukrs.
    MOVE rec_ekko-bstyp TO rec_contr-bstyp.
    MOVE rec_ekko-aedat TO rec_contr-aedat.
    MOVE rec_ekko-ernam TO rec_contr-ernam.
    MOVE rec_ekko-lifnr TO rec_contr-lifnr.
    MOVE rec_ekko-zterm TO rec_contr-zterm.
    MOVE rec_ekko-ekorg TO rec_contr-ekorg.
    MOVE rec_ekko-ekgrp TO rec_contr-ekgrp.
    MOVE rec_ekko-waers TO rec_contr-waers.
    MOVE rec_ekko-wkurs TO rec_contr-wkurs.
    MOVE rec_ekko-kdatb TO rec_contr-kdatb.
    MOVE rec_ekko-kdate TO rec_contr-kdate.
    MOVE rec_ekko-inco1 TO rec_contr-inco1.
    MODIFY i_contr FROM rec_contr.
    ENDLOOP.
    ENDIF.
    REFRESH: i_ekko,
    i_ekpo.
    CLEAR : rec_ekko,
    rec_ekpo,
    rec_contr.
    ENDFORM. "select_contracts
    Thanks.

    Hi,
    Please get the valid condition ( based on date ) from A016 (MK & LPA). With the appropriate KNUMH read the Condition header. You can access the different condition items viz., PB00, RA00 etc., for the values from table KONP. Further if you have Value scales / Quantity scales, you can read the data from KONM, KONW.
    An additional tips: in KONP, if you have a condition like RA00 - Rebate, the value will be multiplied by 10 and saven in database to accomodate the discount to the third decimal.
    I could not completely understand your requirements like nature of development ( Is it a Report / SAP Script ??) you are working etc., so that I could help you precisely.
    Hope this helps,
    Best Regards, Murugesh AS
    Message was edited by:
            Murugesh Arcot

  • I receive daily emails from the NY Times, which I read from my Ipad. Some of the emails will show all of the stories available, and some will only show a few lines in the body and the rest of the email is blank. Any ideas of what I need to do to fix this?

    I receive daily emails from the NY Times, which I read from my Ipad. Some of the emails will show all of the stories available, and some will only show a few lines in the body and the rest of the email is blank. Any ideas of what I need to do to fix this?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

  • I use more than one desktop to edit.  Can I access photoshop and lightroom from any of them, or only from the desktop onto which I have download Creative Cloud?

    I use more than one desktop to edit.  Can I access Creative Cloud Photoshop and Lightroom from any of them to edit, or only from the desktop onto which I have download Creative Cloud?

    Divindino you can activate Photoshop and Lightroom on up to two computers.  You can find more details at Activation & deactivation help - http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html.

  • Is it possible to download software from the Adobe site which will enable me to use the raw processor in Elements 9, to work on images shot with a Nikon D800 DSLR?

    Is it possible to download software from the Adobe site which will enable me to use the raw processor in Elements 9, to work on images shot with a Nikon D800 DSLR?

    The D800 is not on the list of supported cameras for the Camera Raw 6.5 update, bur the D80 is:
    http://www.adobe.com/special/photoshop/camera_raw/Camera_Raw_6.5_ReadMe.pdf

  • I've just completed a vunerability scan (Kaspersky 2010 suite) and it recommends Idownload a patch from the vendor (SA42517= fault report). there are no updates so is Firefox safe to use?

    I've just completed a vunerability scan (Kaspersky 2010 suite) and it recommends Idownload a patch from the vendor (SA42517= fault report). there are no updates so is Firefox safe to use?

    You are using a relatively old version of Firefox (version 3.6), you should update to the latest version (3.6.13), there have been quite a few security fixes since the one you are using. You can get it from http://www.mozilla.com - you can download the setup file then run it to install it, this will replace your version with the latest.

  • New hard drive installed on my 2009 mac book. Can I reinstall pages, numbers, etc... from the App Store? I was running Lion.

    New hard drive installed on my 2009 mac book. Can I reinstall pages, numbers, etc... from the App Store? I was running Lion.

    HI Corey ...
    Yes. Make sure you use the same Apple ID.
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    Make sure and use the same Apple ID used for the original purchase.
    If you can't re dowload the apps, launch iTunes. From the iTunes menu bar top of your screen click Store > Authorize This Computer. Sign out of the iTunes store and try re downloading your apps from the App Store again.

  • My fire fox download helper not detected current video on you tube. It's always shows only the first video which i was downloaded.pls help

    My fire fox download helper not detected current video on you tube. It's always shows only the first video which i was downloaded.pls help

    You need to refresh the page (F5) to update the items in the download menu. Apparently YouTube refreshes the page in such a way that the extension doesn't gets notified, so you need to refresh the page manually if you want to download a media file from this page.

  • How to change billing information for my annual subscription as the chart through which I was paying

    The option that gives me my brand Subscription error and I can not make changes.

    It solved the problem of changing the credit card for payment of a subcripción.
    thanks
    Date: Wed, 18 Jul 2012 14:22:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: How to change billing information for my annual subscription as the chart through which I was paying
        Re: How to change billing information for my annual subscription as the chart through which I was paying
        created by David__B in Adobe Creative Cloud - View the full discussion
    Hi Beto, What information are you attempting to change (address, credit card)? What is the error message you are getting? Would it be possible to post a screen shot of the error? -Dave
         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: http://forums.adobe.com/message/4565913#4565913
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4565913#4565913. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Creative Cloud 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.

  • My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs?

    My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs? My apple ID is my Yahoo mail it self, but not able to log in to  Icloud, Can any body guide, Why, I can not.

    Hi dip_kinu,
    I apologize, I'm a bit unclear on exactly what device you are trying to set up and what is happening when you try to do so. If you are having issues remembering your Apple ID, or feel like you may have set up multiple Apple ID's, you may find the following page helpful:
    Apple - My Apple ID: Find your Apple ID
    https://iforgot.apple.com/appleid
    Regards,
    - Brenden

  • How do I reinstall Adobe Acrobat XI Pro from the Creative Cloud? I was deleting another program and accidently deleted Acrobat.

    How do I reinstall Adobe Acrobat XI Pro from the Creative Cloud? I was deleting another program and accidently deleted Acrobat.

    Sweetmelissa63 for information on how to reinstall Adobe Acrobat XI Professional please see CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html.

  • HT204266 I downloaded AirPlayIt yesterday from the app store.  It was on my iPad yesterday.  Today, however, the app icon does not appear on my home screen.  When I go into apps it is there but it doesn't have an "Open" choice.  There is only a cloud with

    I downloaded AirPlayIt yesterday from the app store.  It was on my iPad yesterday.  Today, however, the app icon does not appear on my home screen.  When I go into apps it is there but it doesn't have an "Open" choice.  There is only a cloud with an arrow pointing down.  When I click on the app it pops up but there is no open button.  How can I remove it?  Tapping it won't work as it isn't on my home screen.

    You'll have to contact the developer about this. Apple doesn't make this app;

  • I cannot to download from the mac app store (There was an error in the App Store. Please try again later. (20))

    I cannot to download from the mac app store (There was an error in the App Store. Please try again later. (20))
    I traied to remove cookies and still don't working.

    Regretably, none of the above solutions has resolved this problem for me.
    Whenever I try to perform updates (in my case, Xcode and iPhoto both want to update), I receive the following error:
    An error occurred during purchase.
    (of course, I am not trying to purchase anything, it is a free update)
    If I press Retry, the above repeats until I press Cancel, then I see:
    We could not complete your request.
    There was an error in the App Store.  Please try again later.  (20)
    I have been "trying again later" for three weeks now, with no resolution in sight.

  • How do you specifically let the Itemlistener know which Item was selected..

    How do you specifically let the Itemlistener know which Item was selected in a JComboBox? Anyone has any idea? What should the coding look like?

    getSelectedItem()

Maybe you are looking for

  • Stock valuation down to Storage location level

    Dear all, System setup for stock valuation is till Plant level. And understand that's how data stored in table MBEW and MBEWH until plant level only. Eventhough that is system standrd, is that possible to get the stock valuation until Storage locatio

  • How can I change the color of the text/font for my emails on iPad?

    HHow do I change the font color when typing email messages on iPad?

  • Is Adobe Media Encoder CS4 always installed on drive c:?

    Since my OS drive C: is fairly full, I installed CS4 Production Suite on drive D:. It's all there, except for Adobe Media Encoder, which is in C:\Program files (x86)\Adobe. Is this behavior unique to Vista x64 or just my PC? It hasn't caused any prob

  • Can Check Number be start with zero?

    Dear all,                I knew that check number on SBO is numeric but check number of my country some number can start with zero and it effected to check number printing form. So, I'm not sure whether we can set check number to be charactor or not.

  • Selecting a table, view, synonym

    Hi, If I have a table, view and synonym with the same name, which object gets selected in a select table............