Upgrade to Adobe CC with the conditions of the "special offer" (35,69€ / year) with an old registered CS5 Students Edition?

Hi!
I just tried to update my Adobe Creative Suite to Adobe CC. I have a registered CS5.5 Master Collection from 2012 that I bought while studying (Students Edition).
On the Adobe Website I can choose the CC as a special offer and a price o 35,69€ per year. When my Serial is checked they say that I'm not allowed to use this special offer.
Does anybody know what's the problem? Can't I use the special offer with the old serial of a student's edition?
Thank's for your help!
Best!!!

No.  Student licenses cannot be used per the terms and conditions...
from: Terms and Conditions | Adobe
"Eligible customers may purchase an Adobe® Creative Cloud™ Complete Membership with annual commitment for a reduced price. Offer valid for purchases of an annual plan, which requires a 12-month contract. This offer is only available to customers who own a Creative Suite edition or individual product in one of the following versions (CS3.x, CS4, or CS5.x, or CS6), and who purchase directly from the Adobe Store or by calling a regional Adobe Call Center. This offer is not available to Education, OEM, or volume licensing customers."

Similar Messages

  • If..then..else statement in SQL with 'generalized' conditions in the if sta

    it is possible to write something approaching an if..then..else statement in SQL with 'generalized' conditions in the if statement.
    Attached is the query for the payment register, in which I've written a series of decode statements, one for each possible value of the payment code. The query works OK - however, its specific and as the number of paycodes expand (and they do), the report won't pick up the new paycode until the code is changed. More importantly, the report won't be correct until someone 'discovers' that a paycode is missing, which might take months.
    If I were writing the equivalent of this series of decode statements in Focus, it would be something like this:
    DEFINE.......
    PAYMED/D12.2 = IF PAYMENT_CD LE 18
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYIND/D12.2 = IF PAYMENT_CD GE 19 AND PAYMENT_CD LE 49
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYEXP/D12.2 = IF PAYMENT_CD GE 70
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYREC/D12.2 = IF PAYMENT_CD GE 50 AND PAYMENT_CD LE 69
                   THEN PAYMENT_AMT
                   ELSE 0;
    END
    IN SQL/PLUS:
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(PAYMENT_CD, 20, PAYMENT_AMT, 21, PAYMENT_AMT,
    22, PAYMENT_AMT, 23, PAYMENT_AMT, 25, PAYMENT_AMT,
    26, PAYMENT_AMT, 27, PAYMENT_AMT, 28, PAYMENT_AMT,
    29, PAYMENT_AMT, 30, PAYMENT_AMT, 31, PAYMENT_AMT,
    32, PAYMENT_AMT, 33, PAYMENT_AMT, 34, PAYMENT_AMT,
    35, PAYMENT_AMT, 36, PAYMENT_AMT, 37, PAYMENT_AMT,
    39, PAYMENT_AMT, 40, PAYMENT_AMT, 41, PAYMENT_AMT,
    42, PAYMENT_AMT, 43, PAYMENT_AMT, 44, PAYMENT_AMT,
    45, PAYMENT_AMT, 46, PAYMENT_AMT, 47, PAYMENT_AMT,
    48, PAYMENT_AMT, 49, PAYMENT_AMT, NULL) INDEMNITY,
    DECODE(PAYMENT_CD, 0, PAYMENT_AMT, 1, PAYMENT_AMT,
    2, PAYMENT_AMT, 3, PAYMENT_AMT, 4, PAYMENT_AMT,
    5, PAYMENT_AMT, 6, PAYMENT_AMT, 7, PAYMENT_AMT,
    8, PAYMENT_AMT, 9, PAYMENT_AMT, 10, PAYMENT_AMT,
    11, PAYMENT_AMT, 12, PAYMENT_AMT, 13, PAYMENT_AMT,
    14, PAYMENT_AMT, 15, PAYMENT_AMT, 18, PAYMENT_AMT,
    17, PAYMENT_AMT, NULL) MEDICAL,
    DECODE(PAYMENT_CD, 70, PAYMENT_AMT, 71, PAYMENT_AMT,
    72, PAYMENT_AMT, 73, PAYMENT_AMT, 74, PAYMENT_AMT,
    75, PAYMENT_AMT, 76, PAYMENT_AMT, 77, PAYMENT_AMT,
    78, PAYMENT_AMT, 79, PAYMENT_AMT, 80, PAYMENT_AMT,
    81, PAYMENT_AMT, 82, PAYMENT_AMT, 83, PAYMENT_AMT,
    84, PAYMENT_AMT, 85, PAYMENT_AMT, 86, PAYMENT_AMT,
    87, PAYMENT_AMT, 88, PAYMENT_AMT, 89, PAYMENT_AMT,
    90, PAYMENT_AMT, NULL) EXPENSES,
    DECODE(PAYMENT_CD, 50, PAYMENT_AMT, 51, PAYMENT_AMT,
    52, PAYMENT_AMT, 53, PAYMENT_AMT, 54, PAYMENT_AMT,
    55, PAYMENT_AMT, 56, PAYMENT_AMT, 57, PAYMENT_AMT,
    58, PAYMENT_AMT, NULL) RECOVERIES,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH,
    DATE_FROM_SERVICE,
    DATE_THRU_SERVICE
    FROM &INPUT_TABLES
    WHERE &SECURITYCOND
    DATE_OF_PAYMENT BETWEEN :START_DATE AND :END_DATE
    ORDER BY LOCATION_1, CPO_CHECK_NBR
    As you can see, this is both much easier to write and covers the possibility of expansion of paycodes (expansions always fit in these defined ranges).
    My question is, then, is it possible to write something like this in SQL and, if so, could you give me some sample code? (I'm one of those people who learn best from looking at the code as opposed to a set of instructions)

    Here is one way you could do it.
    Create a table that has columns like:
    Payment_code varchar2(2),
    Effective_Date Date,
    Payment_type varchar2(20),
    Expiration_Date Date)
    Payment type for example could be
    I- indemnity
    M- medical
    R- recovery
    E- expenses
    Let the table name for example be PAYMENT_CODE.
    The select query would look like
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(p.payment_type,'E',PAYMENT_AMOUNT,0) expenses,
    DECODE(p.payment_type,'I',PAYMENT_AMOUNT,0) indemnity,
    DECODE(p.payment_type,'M',PAYMENT_AMOUNT,0) Medical,
    DECODE(p.payment_type,'R',PAYMENT_AMOUNT,0) recoveries,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH
    FROM &INPUT_TABLES,
    PAYMENT_CODE P
    WHERE P.PAYMENT_CODE = SOMEINPUT_TABLE.PAYMENT_CODE
    and other conditions
    The idea is to group all the payment codes into a few groups to reduce the clutter. If there is ever a change to the payment code, you could modify the table and it will be reflected in your select query.

  • I am now unable to print pdf documents. The message on screen says I have not selected any pages to print, even though the bullet point saying 'All' pages  has been clicked. I have recently upgraded to adobe reader XI, could that be the problem? I also ca

    I am now unable to print pdf documents. The message on screen says I have not selected any pages to print, even though the bullet point saying 'All' pages  has been clicked. I have recently upgraded to adobe reader XI, could that be the problem? I also cannot sign in to Adobe Export pdf now either. It says 'error occured while signing in'!

    Open Adobe Reader | Edit | Preferences | Documents: change View Documents in PDF/A Mode to Never.
    Regarding the ExportPDF problem, please start a new topic in the ExportPDF forum.

  • Should the condition in the loop step

    Should the condition in the loop step in the integration process(BPM) be = or not= ?I need to do the following>>perform certain operation only when the container value is less than 3 Else then get out of the loop.
    Regards,
    Mansi

    The loop step in ccBPM implements a while loop.
    So, while count not = 3, it will be executed.
    Once the counter reachs 3, the loop will be terminated.
    Regards,
    Henrique.

  • Trasnporting the Condition in the Action Profile

    I have defined an action profile “Activity” for sending the email automatically when saving an activity.
    I defined the condition for the Remainder email to send in the Tcode CRMC_ACTION_CONF.
    But I am not able to transport the defined Condition from the Dev system to the QA system.
    How can I transport the condition from the dev to QA

    Zack,
    Did it create a transport request when you initially created the condition?
    If it did and if the transport was loaded onto QA and you cannot see the new condition in QA then there seems to be a problem in the system. Try creating a new dummy condition and see if that gets transported. If not then, you have open a message to sap.
    Ani

  • Adobe CS5 Student Edition won't install

    I have the Adobe CS5 Student Edition which I purchased in 2009. When I try to open Photoshop it said there is not enough space on my scratch disk. I have uninstalled CS5 to try to fix this and would now like to re-install it however the serial number registered in my account details of my Adobe account is not recognised. Can somebody please help.

    Hi Ria,
    I would recommend you to get in touch with the customer support to resolve the serial number issue.
    You can reach our chat support at: http://adobe.ly/1aYjbSC
    Regards,
    Rave

  • How to redownload, if possible, Adobe MS CS5 Student Edition?

    I am a student at Full Sail University, and they have generously provided me with the whole Adobe Master Suite CS5. Up until recently, my laptop went haywire and deleted everything I have on my laptop. I went to my account on adobe, and it shows the serial number to the product the school gave me. What I'm trying to say is if there is any way that I can download CS5 Student Edition to my laptop? On a side note, I have lost the CD's that my school sent.

    You can download the Master Collection here, and input your serial number when asked to.
    Just be sure to follow the download instructions carefully or the link wont' work.
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • Can I upgrade from a CS5 Student Edition (PC) to CS6 Mac?

    Hi, quick question:
    Some time ago I bought CS5 (student edition) for my PC. I've never opened the box, so it's uninstalled.
    I'm getting a mac (it arrived today actually) and I'd like to be able to install photoshop on this. Since it's a different platform, can I upgrade from my current version without having to buy the full-priced CS6 for mac?
    Basically, could I: install my student edition on my pc, get the student verification code (I'm still a student), and then not just go through the upgrade process to CS6 but also cross platforms from pc to mac?
    OR: could I install the pc version, upgrade to CS6 (still pc) then crossgrade that?
    Would it be the same cost?
    Thanks so much

    There are no upgrades for student versions. If you are still eligible you simply buy a new CS6 license for Mac.
    Mylenium

  • I lost my Photoshop CS5 Student Edition disk, but still have the product key. Can I download it from somewhere?

    I lost my Photoshop CS5 Student Edition disk, but still have the product key. Can I download it from somewhere?

    Hi,
    Hopefully cs5 from here will work:
    Download CS5 products

  • Upgrade from Adobe Premiere Pro 1.5 to the latest version

    I purchased few years ago Adobe Premiere Pro 1.5 and enjoying it since.
    Recently I purchased a new camcorder outputing MP4 and AVCHD video formats which cannot be read by Adobe Premiere Pro 1.5.
    What are my options?
    Is there a path to upgrade from Adobe Premiere Pro 1.5 to a version which can read MP4 and AVCHD video formats?
    Philippe

    There are two solutions for you and neither of them offer any discount for already having version 1.5 since it was released over 10 years ago.
    You can atill purchase Premiere Pro CS6 (which will never, ever, be upgraded) and have it for a one time price, or, you can simply subscribe to the Creative Clould and get the latest and greatest Premiere Pro CC.
    To sign up for one product is $19.99 per month, and to sign up for all of them is $49.99 per month. That is just about every Adobe program from Premiere Pro, Audition, After Effects, Illustrator, InDesign, all the way through to Acrobat Pro.
    See here for a list of membership plans.

  • Is there any way to specify the condition of the COUNTIF function to contain a certain text embedded in the cell with other text?

    I know you can set it to count the cells if they contain ONLY what's in the condition, but what if they contain the search term and something else? For example, if I wanted to count the number of cells that said "apple" when each of the cells contains something like "apple, orange, pear" or "pear, banana, apple" how would I do that?

    Ken,
    LI's solution will get you there if you are looking to count the string even if it is part of a larger string. You can see that Apple only exists three times as a distinct word, but 4 times as a string or sub-string.
    If you are only wanting to count the frequency of the word "Apple", you can do this:
    If you are using a Comma-Space between words as in your problem statement, you can substitute the following column B expression:
    =IFERROR(FIND(“Apple,", A&”,"), 0)
    Regards,
    Jerry

  • I have the Cs5 student Edition of Adobe Web and design, do I have to upgrade to a full?

    I'm close to graduating and I plan on getting CS6 before I graduate so I can get a student discount, but will I have to upgrade to a full verson of the sofeware once I gradate? If so how much is that going to cost? Will I be able to use the CS6 student for commercal use so I can work at a job/office? Can you please tell me? I really need to know this!

    You can continue to use your Student Edition after your graduation for any legal purpose. As a student you can purchase a new version of CS 6 Student programs. There is no upgrade from one student edition to another. You can of course, upgrade a student version to a non-student version, but the cost for doing so is ussually much more expensive than a new student version, so take advantage of your student status while you can.

  • How to stop a second while loop when the condition in the first one is met for different VIs

    Hi, am running two seperate Vi's. am new to labview so please help accordingly.
    I have introduced a comparison test  in one Vi through ashift register. i would like now the second Vi to stop when this comparison condition in the first Vi is met. 
    I dont want the first Vi to stop, it should only stop the second Vi while awaiting for the next input.
    waiting for your help guys

    Thanks so much guys. am now starting to pick some ideas. i have attached the Vis as requested for best identification of the help.
    waiting help guys
    best regards
    Alex
    Attachments:
    first Vi.vi ‏132 KB
    second vi.vi ‏149 KB

  • How to register a students edition to get a licence number, as the respective adobe webpage form shows a error after submit?

    We have all relevant documents and information to show to adobe that this students edition of lightroom for my daughter is valid and that she could get a license number to make it usable after the 30 days test period.
    But when we try to submit the relevant adobe web form including copy of her students license of the University we face an error message indicating that the target page could not be found.
    At least up to now we have found no way to contact adobe fro this topic. Just chat is offered.
    Is there someone who could help us?
    Regards from Germany

    You had probably best tried to use the chat option. I'm wondering if maybe the website you are trying to access is not available in Germany. That's only a guess.

  • My fone is not responding​. im trying to unlock it and nothing is happening.​. i tried o update it n every thing else .. but the condition is the same

    hey i got up in the morning only to find my fone not respnding to nything..  plz help .. i cant unlock it .its being connected to the computer though.. the desktop device manager cant connect..  though it says programme not responding ..please help ...  i have also tried taking out the battery n all ...but then i is still the same...  the fone is getting charged though .. idk what might be the problem??

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain directly connected to a known-good wall charger (not PC USB, not a cradle):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain an known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem. Note carefully please that "new" and "know good" are not necessarily the same things. While rare, a "new" battery certainly could be defective. Rather, the simplest (and least costly, btw) method to conduct this test is to find someone with an identical BB who has no issues...trade batteries and see what happens.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for