How to use existing CC subscription as a discount to purchase a new CC subscription

I have bought a 1 year Creative Cloud Subscription from Adobe which is valid on 2 computers. I now want to buy another CC subscription to use on 3rd computer. While buying another subscription Adobe shows an option of getting 40% discount in case one has purchased a product earlier (which I have). Upon choosing it, adobe asks for a serial number which I don't have. Please help by telling me how to get it.  

While buying another subscription Adobe shows an option of getting 40% discount in case one has purchased a product earlier (which I have)
The 40% discount only applies to owners of Creative Suites CS3, CS4, CS5 or CS6.
There is no discount for owning a pre-paid Cloud subscription.

Similar Messages

  • Can any one tell me how to use EXISTS clause inplace of IN operator.

    Hi All,
    Can any one tell me how to use EXISTS clause AND (JC.EMPL_ID, JC.EMPL_RCD) inplace of IN operator.
    SELECT COUNT (1)
    FROM SYSADM.OHR_PERS_CURR PC
    , SYSADM.OHR_JOB_CURR JC
    WHERE PC.EMPL_ID = JC.EMPL_ID
    AND (JC.EMPL_ID, JC.EMPL_RCD) in (
    SELECT HS.EMPL_ID, HS.EMPL_RCD
    FROM SYSADM.HU_SCRTY_JOB HS, ODSHR.OHR_SCRTY_USER_CFG OS
    WHERE HS.HU_SCRTY_CFG_ID = OS.HU_SCRTY_CFG_ID
    AND OS.DB_LOGIN = USER)
    Thank you.

    SELECT COUNT (1)
    FROM SYSADM.OHR_PERS_CURR PC
    , SYSADM.OHR_JOB_CURR JC
    WHERE PC.EMPL_ID = JC.EMPL_ID
    AND EXISTS (
    SELECT null
    FROM SYSADM.HU_SCRTY_JOB HS, ODSHR.OHR_SCRTY_USER_CFG OS
    WHERE HS.HU_SCRTY_CFG_ID = OS.HU_SCRTY_CFG_ID
    AND OS.DB_LOGIN = USER
    AND HS.EMPL_ID = JS.EMPL_ID AND HS.EMPL_RCD = JC.EMPL_RCD)
    But why ?
    Rgds.

  • I used an upgrade from a different phone to purchase a new iPhone.  How do I assign that phone its original number (not the one that it was upgraded from)?

    I used an upgrade from a different phone to purchase a new iPhone.  How do I assign that phone its original number (not the one that it was upgraded from)?

    Phone number of the device is assigned by the carrier.
    Ask the carrier.

  • HT1688 What is the best way to unlock my phone 3gs so my wife can use it with her network.  I have purchased a new phone on the AT&T network

    What is the best way to unlock my phone 3gs so my wife can use it with her network.  I have purchased a new phone on the AT&T network.  I know there are alot of software companies that will sell to me but I have no idea which one I should use.  Can anyone help?

    To unlock an iPhone yoiu must go to the carrier and requesrt that they unlock it.
    Allan

  • How to use EXISTS or NOT EXISTS in analysis

    Hi all,
    I'm using OBIEE 11g. My question is how to use the functionality of SQL - EXISTS/ NOT EXISTS? I have a model where i have 2 fact tables . When i select from the first fact in some circumstances i want to anti-join the other fact table. Let us consider that the two fact tables are big enough /around 300mln of records/. Any ideas?
    Thanks in advance,
    Alexander.

    Stop asking these stupid vague questions and do some of your own research.
    Start here:
    http://www.regular-expressions.info/
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html

  • How to use Migration Assistant from OS 10.7.5 mac to new mac Maverick?

    Got a new imac.  I'm trying to use Migration assistant from my non-Maverick imac to the new one.  I'm told that I have to update my former mac, but it's too old to update to Maverick.
    So, how can I use Migration Assitant to transfer files?
    Thank you.

    The easiest method is to use the Time Machine backup from your old computer and connect it to the new machine. Then launch Migration Assistant on the new machine and use the TM backup HD to migrate to the new machine. DO NOT do this wirelessly, your profile indicates you have a Time Capsule, if you use that for your TM backup then connect it via eithernet to  your new iMac to do the migration.

  • How to use existing plugin transformation from a new plugin

    Hi,
    Begginer's question:
    I use the SDK examples for a new plugin I want to write.
    I want to invoke several commands of an existing plugins from my plugin.
    For example I define a new Effect Control: My Opacity. For start I would like to invoke the functionality of Transform->Opacity.
    Now, I saw in the example Projector that I can invoke
    suites.EffectSuite2()->AEGP_ApplyEffect
    Is this the way to do it?
    How can I pass the parameter that the user gave me to the needed effect?
    I guess rhere is a quicker way to find the effect by name instead of iteration on all available as done in the Projector example.
    Thanx in advance,
    Miro

    Hello miro A, welcome to the forum!
    i'm having some trouble understanding the process you're creating, so i have a couple of questions:
    1. is your effect a layer effect? (like "gaussian blur")
    or is it a general plug-in? (like layer->transform->fit vertical, or the "wiggler" panel)
    the two (effects and AEGPs) differ in many ways and will determine the way you approach the problem.
    2. when you say "the parameter that the user gave me", what do you mean?
    is there a standard slider on your effect that the user can manipulate?
    in the mean time i'll do my best to answer you questions:
    yes, suites.EffectSuite2()->AEGP_ApplyEffect() is the way to add a new effect to a layer,
    BUT if your effect is a layer effect (again, like "curves"), then you're in for some major problems.
    layer effects can't add new effects to the same layer as themselves.
    it causes errors and crashes, because by the time your effect returns from it's call AE discovers that the layer has changed in the mean time (you added an effect), and AE doesn't cope with that change well. at all.
    no, there is no way of knowing what effect to access on a layer without iterating through them at some point in time.
    to access an effect you must retrieve an effectRef.
    to get an effectRef you must call it's index on a layer, along with the identifier of a specific layer. (layerH and effect index on that layer (say... 3rd effect))
    to know the index, you must iterate though the effects on a layer and check each one for it's name or matchName.
    you don't have to do it every time.
    you can store the index for later use, but keep in mind that the user might move effects around,
    so make smart decisions.
    wait. it gets worse.
    now you want to affect a parameter on a different effect.
    that can be done using streamRefs. these refer to the different parameters on all effects.
    once you obtain the streamRef of a wanted parameter, you can read it or write to it.
    to get a param's stream ref on an effect for which you already have an effectRef, you must know it's index in the effect. (for example, the "blurriness" on "gaussian blur" is 1 (never 0. zero is the input buffer))
    the index is not always what it seems. there may be hidden params (and other stuff in the way).
    the param index might change if the vendor of the other effect decides to change it.
    in short:
    yes, it's as complex as you feared it would be, and as you saw in the "projector" sample.

  • How to use existing master data datasource as a enhanced datasource

    Hi,
    I have a requirement like this, 0FI_AP_0 is a datasource. But at my client side there were using this datasource as an Masterdata purpose.They are using this from past 3years. But due to the requirement changes I have to use that datasource and two more tables PAYR and REUGH in my cube creation.The report requirements are specifically from these tables BSAK,BSIk,PAYR,REUGH,LFB1 ,0FI_GL_4(This datasource is existing and using in the right way).
    How can I go head with this 0FI_AP_0 datasource. Can anybody please give some idea on this requirement.
    Thanks in advance for your all help.
    Points will be rewarded.
    Vamsi.

    0FI_AP_0 - go to the master data infoobject of this datasource. Check mark charercteristics is an export datasource in the master data tab
    Go to the infoprovider tab in RSA1, Insert this charecteristics as data target.
    Use export data mart of this infoobject in your cube creation. You can use this in update rules for update of cube

  • How to use existing Key figure strecture ??

    Guys,
    I am creating a new query from the existing query on the same Multi provider.
    So, i created a copy of the query using RSZC and gave a new technical name. But the problem is both the query has the same Key figure strecture. and i have to modify that strecture in the new query. If i am not wrong then if i do any changes then it will affect all the queries ...right ?
    So, for that in my new query i did right click on strecture and did "Remove Reference"  and saved it.
    Can i modify now ??? i am not sure, if i do some changes in the new query , but both the key strecture will have same techinacal name.
    will it modify everywhere? or should i copy that key strecture and give diff. tech. name and then do changes ???
    please giveme  your precisios thoughts ....
    thanx

    experts ! i m stuck !!! need help
    i created a copy of my query using rszc, then did remove refrence and then saved the strecture with diff. tech. name.
    Now, in my new query i have a same strecture from old query . but with diff. tech. name... so basically 2 diff. strecture.
    if i do where-used list in my new query strecture, i dont find any refrence...so thats fine.
    But, the problem is , now i made some changes to the new strecture, and wanted to remove some old stuf ( which was came when i did copy ). If i right click and do remove, its giving me an error...."Element cannot be deleted because it is still being used. "
    But where ???? in where-used it says " No refrence to external queries Found"
    whats the problem ??
    Thanx in advance

  • How to use existing leaderboard in a new app version?

    I have a live game in App Store, with a leaderboard.
    Now I'm releasing a new version. I have a new version set up in iTunes Connect, but I'm not able to select the existing leaderboard for this new version.
    How to do that? I assume it must be possible, as players should not lose any data or progress in the game when a new version is released.

    Here's a screen shot of how iTunes Connect's UI looks like. As said, the existing leaderboard can not be selected from it. (Normally I see a small "Edit" button next to "Leaderboards" header from which the leaderboards can be selected.)

  • How to use existing SharePoint Data Source in Visual WebPart in Visual Studio

    I want to create a SharePoint Visual Web Part using Visual Studio, which will query SQL database and will display some data (e.g. Latest News from Database)
    I already have a SQL Data Source (rsds file) in SharePoint. Can i use this rsds to connect SQL database for my Visual Web Part ?

    I will use web.config as last option but can you please explain how BdcService will connect external SQL database.
    What if I use SharePoint property to store connectivity information and all web parts will use it to make connection string?
    Following code returns 0 entities
    // Get reference to BDC Service
    BdcService service =
    SPFarm.Local.Services.GetValue<BdcService>();
    // Get MetaData Catalog
    IMetadataCatalog catalog = service.GetDatabaseBackedMetadataCatalog(SPServiceContext.Current);
    // Some heading for the literal control
    string dbData =
    "<h1>Lob Systems and Entities … </h1> " +
    "</br>";
    // Get all the external content types from the meta data catalog
    foreach (IEntity
    ect in catalog.GetEntities("*"))
    // Add external content type’s name and lob system name to the literal control
    dbData += ect.Name +
    "," + ect.GetLobSystem().Name +
    "</br>";
    ltMsg.Text = dbData;

  • How to use existing form with UDO

    Hi
    I want to use Sales order form with a new UDO. Is it possible that one form work with More than one object.
    I want that when we click on User defined menu then same existing SAP form of Sales order will open with A new UDO( contains master and child tables). Or we have to create a replica of that sales order form.
    Thx.

    The system forms are not released as UDOs... UDOs can only be used with Userforms

  • How to use existing WSP file of reusable workflow and create sanbox solution?

    Hello,
    I have to migrate the SharePoint Designer 2013 workflows from Development environment to Production environment. So, I am following the process which is mentioned in this blog:
    http://sharepointyankee.com/2010/12/11/options-for-deploying-reusable-workflows-in-sharepoint-2010/
    And it is working also, but problem is that; this visual studio solution is getting deployed as a Farm Solution and I wanted to deploy it as a sandbox solution. 
    Is there any way to achieve this?
    I have also tried one more way which is:
    Create SharePoint Custom Workflow Project as a sandbox solution in Visual studio.
    Get WSP file from development site (as mentioned in above referenced blog)
    Open WSP file and copy the content to Visual Studio Created project
    But this solution is also not working; "Feature is not getting deployed as sandbox solution" error is occurring.
    Can anyone please help me on the same?
    Thanks,
    Asim

    Hi,
    When you export SPD workflow, it will be a sandbox solution only, you are not required to configure further.
    Just import the workflow into Visual Studio, and make the changes that are required. you are good here.
    you can set the scope attribute in your WSP feature element.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to use existing db tables (8i) with apex

    I have already running 8i server on a machine, have now installed oracle xe on a sepatate computer, i want to develope application with application express installed with oracle xe but cannot connect to oracle 8i server.
    please help me to sort out this
    Regads

    Hi Ranaslam;
    To access Oracle 8i on other server, you need to create a database link. Go to object browser and click on CREATE then select Databse link.
    select * from tablename@database link name i.e
    select * from employee@ora8 where ora8 is your database link name.
    Ribhi

  • How to use second email address as primary email address without creating NEW ID?

    Hello Everyone,
    After TWO long years I am back in Apple Family.. I am loving it.
    I tried Android Galaxy S3 for TWO long years and I feel really good to come back in Apple Family again.
    I don't think so I or anyone from my family will ever go to Android.
    I have a quick question for all the Apple Family members.
    I have an Apple ID on abc@old_domain.com this ID I am no longer using it and I want to use my new ID which is abc@new_domain.com.
    But I DO NOT want to create NEW Apple ID. Because I want to make use of my PAID apps which I bought with abc@old_domain.com APPLE ID two years back.
    How can I do that ?
    Thanks for your help in advance.
    Hemant

    As the long as that email address isn't currently being used as the primary email address on an account (and it's not an alternate or rescue email address on the  old account that you want to use it on), then you should be able to put it as your primary email address by logging into the old iTunes account via the Store > View Account menu option on your computer's iTunes, or by logging into the account via http://appleid.apple.com
    Changing your primary email address : Change your Apple ID.
    Changing the primary email address on an account should not affect any of the account's purchases, as long as the apps are still in the store (and you haven't changed countries since buying them) then you should be able to redownload the via the Purchased link under Quick Links on the right-hand side of the iTunes store homepage on your computer's iTunes, and the Purchased tab in the App Store app on an iOS device.

Maybe you are looking for

  • How do I copy photos from a text message to my "Photos" location on my iPhone 5s?

    My friends send me photos via text messaging and I try to copy them to my "photos" location on my iPhone 5s. So far, I've only been able to create a folder for the photos but have had no luck in copying photos from iPhone text messages to iPhone "Pho

  • New Keyboard Question

    Ok so I have a white Macbook 2.16. I am wondering that I need a new keyboard I was wanting to know if it was ok for me to install a black one that I can purchase online in my white macbook. I am just wanting to know if it will be ok???

  • ITunes music library goes blank

    When I open my iTunes, the music library appears blank - as if I have no music. For quite a while now I have been having these problems! I contacted apple and they recommended uninstalling and reinstalling all the apple applications I had, in a parti

  • Calling BAPI in the Classes and also in Methods

    hi , is it possible to call the BAPI function module in the classes, i am creating BSP for creating the material, i think BDC will not work properly in this case, so i want to use BAPI for creating material , so please suggest me which way is suitabl

  • URGENT : nested AM and attribute permission (and action invocation error)

    Hello, we have an issue with our application. We have nested AMs and we want to add permission on iterators and attributes. We have no problem with the RowSetPermission in the nested AM, we have this in our system-jazn-data.xml                <permis