IP : Delete a value in e cell without entering zero

We have an input ready planning layout created with WAD. In WEB user deletes a value in a cell without entering zero instead. When we refresh data former value appears again. When the user enters zero to the cell we have no problem. When we execute the query with BEX and delete the value in cell without entering zero, there is no problem also. Is there a parameter in WAD to check this?

Hi
If you create a "Delete" function and provide the same on layout it will delete the same from the cube. However, the user need to enter the line # which he/she wants to delete from the layout. Ofcourse, entering zero in the input for Key Figure will help delete the values from cube but if it has any corresponding calculations (say salary or revenue)....it will not get nullified. It is always good idea to provide a standard delete function on the layout.
Regards
Srinivas

Similar Messages

  • Char NUMC(5) - need to store value at database level without leading Zeros.

    Hi All
    We have 0Mat_Item like infoobjects in SAP BI, which have data type Char NUMC(5). Here if u load value '1', it would show us '1' at front end (BI or reporting level) but at database level stores as u201800001u2019.
    My requirement is to store this value without leading zeros at database level. I wrote code in transformation u201Cshift u2026 left deleting leading u20180u2019 u201C & could load the data into New data table and at database level as I was getting result without leading zero. But once I activate the request, it gives SID generation error u201CValue '1' of characteristic 0ME_XCHRATE is not a number with 000009 spaces.u201D
    How to solve this issue so that I could store u20181u2019 value instead of u201800001u2019 value in the database & could able to activate in DSO.
    Thanks....

    Hi.....
    System may be storing the data in that way to maintain consistency.
    Alpha conversion is used to store data consistently. It does this by storing numeric values prefixed with 0s Eg. If you have defined a material as length 6 (of type Numc) then material number 1 is stored as 000001 but displayed as 1; this removes inconsistencies between 01 vs. 001.
    U can add the conversion routine for this Infoobject in either below way...
    In the BW side...in the Datasource Level
    In the datasource >> Go to fields tab >> there search the R/3 field which is mapped to that Infoobject in the Transformation >> Then in the Conv.Routine column select the Alpha Conversion Routine and In the Format column select External....
    In the Transformation
    Write a field level routine for that particular field abd call the Alpha conversion routine there...
    In the R/3 side
    In the Customer exit ....Go to SE37 >> EXIT_SAPLRSAP_001 >> Double click on ZXRSAU01 >> search the datasource......write the code there....
    Hope below link helps you.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7108a690-0201-0010-4cbc-9bca94f9ad9c?quicklink=index&overridelayout=true
    Regards,
    Vinay.
    Edited by: Vinay Joshi on Mar 10, 2011 4:54 AM

  • Delete currency values while using cells

    Hello experts, we are having trouble with Currency Key (0CURRENCY) values. On a certain query, we are using cells (we have one structure in rows and another one in columns). For all key figures in which Currency Key is used, the value of the currency in question appears on every cell. We need to eliminate this value, if possible show the value alongside the key figure (if the key figure is in columns, the value would be shown at the top).
    I know that one solution is to use NODIM function over the key figure, and I also know that changing scaling factor can show both the selected factor as well as the currency alonside the key figures. However, both solutions are feasible when not working with cells. The main problem we have is that this query has around 400 cell values (due to this, the query runs much more slowly than other queries, even in the Query Designer), so changing everything (every single cell) to the formula that uses NODIM will take too long. And for some reason, changing the scaling factor over the key figure is not working. I also tried changing the scaling factor over the non-key figure structure, but it did not work. Finally, I tried selecting all values of the individual cells and changing the scaling factor, but it did not work either.
    Is there an easier way, or should we create the key figure with the NODIM function and have all cells use it?

    In the end we decided to do it manually, although it took a very long time to finish.

  • Check modified cells without "ENTER"

    Hello togehter,
    i have a problem: I set up an alv-grid with editable cells. I also venen registered the edit-event! So when i modify values in my grid-control and press Enter, the internal table is correctly filled with the new, just now modified, values. So i need this functionality (i can't get it with the debugger) for an own-created button. This button can be pressed/clicked without pressing an Enter. When i click this button (without previous ENTER-click) my report checks the handler-method "on_data_changed" and execute a perform where is just check/modify the internal table, like:
    LOOP AT alv_itab INTO wa.
          MODIFY alv_itab FROM wa.
        ENDLOOP.
    How can i get the same functionality for directly clicking any own-created button without an ENTER.
    Hope you can help me,
    THX

    Hi Marcel,
    try to call the method Check_Changed_Data of your ALV Grid in the PAI (or when you catch the event for your button) like this:
          Clear g_ALV_Check.
          CALL METHOD go_0200_alv->check_changed_data
            IMPORTING
              e_valid   = g_ALV_Check.
    it will raise (if there are modified cells) the event DATA_CHANGED and activate your method handler, if there are no modified cells it will adjust your internal table with the new values (and set the e_valid = 'X'). In case of any errors in the modified cells you will have a popup window displaying them and the return value e_valid is set to ' '.
    Greetings,
    Claudio

  • How to delete a file from time machine without entering time machine mode ?

    Is there  a terminial hack or a third-party app  to delete a backed up file from the finder and at the same time from time machine without having to enter time machine mode, and is there a shortcut to do so ?

    Please post your code using code tags (click on CODE above the text area, when posting)
    response.setContentType("application/octet-stream");Why octet-stream? Set the correct mime-type.
    String disHeader = "Attachment; Filename=\"filename\"";The filename should just be the file's name. Not the complete path to the file! This will tell anyone where the file is located on the server. It's also inconvenient because by default,the browser will suggest it as the name for the download.
    Your way of writing to the output stream is just plain wrong. See this snippet (picked from [http://balusc.blogspot.com/2007/07/fileservlet.html])
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open streams.
                input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
                output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
                // Write file contents to response.
                byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                // Finalize task.
                output.flush();
            } finally {
                // Gently close streams.
                close(output);
                close(input);
            }

  • ALV cell without displaying Zero.

    Hi ABAP gurus,
       I am working on alv report  and  i came across situation where we don't want to display zeros in
      some of the Cell based on some condition.
      i don't want to do it on column level otherwise i can use no_zero. i like to do it on cell base.
    Any help would be  appericated ..
    Thanks,
    Jack
    Edited by: jack troy on Jun 17, 2009 9:48 PM

    u can do that while passing values to ur final table..
    declare the field as string.
    pass value to it only when u need (as per ur conditions). else leave it blank.. that can avoid ur zeros..
    do u need a ref code??
    Edited by: soumya prakash mishra on Jun 17, 2009 9:50 PM

  • Deletion of plannable values in a cell does not result in zero value

    Hi,
    In a planning report when I wanted to set the values in a plannable cell to '0', I just deleted the value in that cell without actually setting a '0' expecting a '0' to appear in that cell after I refresh my report. But instead I get my original value back in the cell. Is this standard behaviour or a bug or do I need to change some setting to get a '0'.
    I run my planning reports on the portal.
    Thanks.
    Regards,
    Jaya

    Hi,
    Check this out please.
    [Re: Cannot Save empty cell, can only save 0|Re: Cannot Save empty cell, can only save 0]
    regards,
    Ergin Ozturk

  • Setting the footer with the value of a cell - Excel 2010-2013

    Hi,
    is it possible to set the footer of a workbook with the value of a cell without using VBA code or macro?
    Thanks

    No; it is not possible to enter a formula that refers to cells in the header or footer. A VBA macro is the only way to set the header or footer to the value of a cell.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Everyone is how to delete repeating values?

    There is a column,values are repeated,everyone is how to delete repeating values?
    Assuming that this set of numerical many, can not directly determine whether there is a duplicate value.
    Thank you~
    Message was edited by: Tao.
    Message was edited by: Tao.

    Hi Tao,
    I've found that a short AppleScript provides a convenient way to identify duplicates (repeating values) in a range.
    Just select the range of cells you want to check for duplicates and click. It will turn the duplicates red.
    --select range, run, turns duplicates red
    tell application "Numbers" to tell front document to tell active sheet
              set selected_table to first table whose class of selection range is range
              tell selected_table
                        set selected_range to the selection range
                        tell selected_range
                                  set values_list to {}
                                  repeat with i from 1 to count cells
                                            set this_value to value of cell i as text
                                            if values_list contains this_value then set text color of cell i to "red"
                                            set end of values_list to this_value
                                  end repeat
                        end tell
              end tell
    end tell
    --end of script
    Just copy and paste the above script into AppleScript Editor, and run it from there. Or place it in your scripts menu. Or download this  Automator Service (Dropbox download) and double-click it to install it in your Services menu.
    Similarly, if you want to get a list of just the distinct values in a range (i.e. with duplicates removed) this Copy Distinct Automator Service (Dropbox download) is very convenient.
    Select the cells, make the menu pick, then paste the distinct values wherever you want in a table by single-clicking a cell and typing command-v to paste.
    These functions become, in essence, a customized menu.  That way you don't have to set up formulas to do this each time you work with a new Numbers document.
    SG

  • SUM function resulting WRONG values when some cell contains a string

    A very strange problem that can result in wrong financial calculations and big mistakes...
    If we have SUM function for some range of cells and one of them is treated as text string (I mean it's number in fact but Number is sure it's text string). than SUM function calulates ALL cells except this sell silently without errors and results in wrong result.
    For example we have cells and values
    A B
    =====
    1| 15 USD
    2| 0 USD
    3| 37 USD
    4| 1 USD
    5| 3 USD
    here the function SUM(B1:B5) should provide the result "56 USD"
    But if cell B5 is treated as text string (it can be still displayed as "3 USD" so we don't know it's treated as text string for some reason) than SUM(B1:B5) swill answer "53 USD".
    The problem is we DON'T know cell B5 is treated as text and we are fully sure that we have the correct sum of all 5 cells, in reality we see sum of 4 cells only....
    I think anybody working with financial or other important data can imagine how dangerous this SUM behaviour is.... I encountered several times that when importing data from Excel or by other ways numbers are imported as text strings. So if I have a lot of cells I'm not sure if all those cells are correctly styled or some of them for some unknown reason is treated as text string.
    In Microsoft Excel there is a very right solution. In MS Excel if any cell in the SUM is wrong format the SUM function simply provides error as a result. But in Numbers SUM doesn't tell us about error, it simply provides us with a wrong result!
    With formal logic the way SUM works in Numbers is total idiotism. If I ask to SUM B1:B5 than I definitely ask to sum ALL 5 cells, not 4, not 3, not 6 but 5 definite cells. If Numbers can't sum those exactly those 5 cells the only answer of the function should be ERROR.
    But Apple Numbers answers me some result of summing those cells that it's able to sum. Apple Numbers SUM function is not confused that I asked for SUM of 5 (not 4 or 3) cells and I expect to have this sum as a result.
    In fact Apple uses the right logic when we use another formula. If we use =B1B2+B3+B4B5 and any cell contains text string that we'll have error result the sam as in Microsoft Excel. So in this example Numbers behaves correctly.
    So why SUM (B1:B5) can provide totally different result as =B1B2+B3+B4B5?

    alexb2 wrote:
    So when I set format for my number as my local currency it's displayed as 123 XXX (XXX is my currency but it's not in latin). I see it's not only displayed but also stored as 123 XXX. That's different from Excel that stores only numbers in cells and shows number with prefix or suffix - Numbers storex number with prefix or suffix.
    No, you get this behavior because the original sheet is displaying values as currencies. I assumes that the import process pass it as a string because he doesn't recognize it as a currency value. As far as I know, Numbers stores the currency entries as a pure number and an indicator of the used currency.
    Here is an example.
    (a) the description of the numerical value (I underlined it: 456)
    <sf:number-cell sf:flags="4" sf:value="456" sf:col="1" sf:row="2">
    <sf:cell-style-ref sfa:IDREF="SFTCellStyle-46"/>
    <sf:content-size sfa:w="58.659881591796875" sfa:h="14"/>
    </sf:number-cell>
    (b) the description of the format (I underlined the used currency: XAM)
    <sf:cell-style sfa:ID="SFTCellStyle-46" sf:cell-style-default-line-height="12" sf:parent-ident="tabular-Basic-body-cell-style-id">
    <sf:property-map>
    <sf:SFTCellStylePropertyNumberFormat>
    <sf:number-format sfa:ID="SFTNumberFormat-23" sf:format-type="1" sf:format-string="#,##0.00 &#xA4;;-#,##0.00 &#xA4;" sf:format-decimal-places="2" sf:format-currency-code="XAM" sf:format-negative-style="0" sf:format-show-thousands-separator="true" sf:format-fraction-accuracy="-3" sf:format-use-accounting-style="false"/>
    </sf:SFTCellStylePropertyNumberFormat>
    <sf:SFTCellStylePropertyImplicitFormatType>
    <sf:number sfa:number="256" sfa:type="i"/>
    </sf:SFTCellStylePropertyImplicitFormatType>
    <sf:SFTCellStylePropertyFormatType>
    <sf:number sfa:number="257" sfa:type="i"/>
    </sf:SFTCellStylePropertyFormatType>
    </sf:property-map>
    </sf:cell-style>
    Of course, if the original currency string is not recognized, it can't be described as such a feature and the value is treated as a simple string.
    So may be at some moment my 123 XXX is treated like string value.
    Yes, find and replace is a nice tool when importing data - thanks for the tip. the last problem is with already Numbers files that were imported not today (or even createde as Numbers file) where some cell becomes string value after some editing.
    Here again, if you edit a currency string and replace it to a not recognized one, the result will be logically a string.
    There is an other way to give this result:
    copy a value from a cell formatted as XAM currency (just an example)
    paste it in a cell whose format is currency Euro (once again it's just an example).
    The result will be a string.
    The culprit is not the program, it's the user.
    I had several times this situation and last time I found error only because I have my budget in 2 programs - in Numbers and in another special budgeting program. As each program has advantages I have in fact 2 instances of the same budget.
    And when I changed some string in Numbers and another program I noticed the sum is different. I was sure it's another program somewhere buggy but noticed than Numbers simply ignores one of the budget strings and sums without it... In fact it was even not the string I changed, I remember I changed the buggy string about a week ago but I haven't compared budgets that time so my budget had a mistake for some time till I noticed it. If I used only Numbers without copy of budget in another program may be even today I won't notice the mistake.
    The same situation happened not once.
    I think that the choice made by Apple for SUM() is correct. You feel that it is wrong. It's useless to debate more, we will not change the behavior of the function.
    I try to give a workaround.
    The neater one is to add columns as I described in my first response.
    The given formula will clearly flag cells which aren't containing numerical values. If you move the SUM from the original range to the new one, the oddities will be flagged automatically.
    Here is an alternate workaround:
    The currency is XAM.
    In B4 I introduced a typo so the value is no longer a numerical one.
    Given that, the sum in the footer doesn't count the 34 (which is the normal behavior).
    In column C1 I entered =1*B
    which flagged the bad cell.
    The alternate is to use an auxiliary table like aux1
    In A1 I entered:
    =IF(ISERROR(INDIRECT(ADDRESS(ROW(),COLUMN(),,,"main"))),"",IF(ISBLANK(INDIRECT(A DDRESS(ROW(),COLUMN(),,,"main"))),"",1*INDIRECT(ADDRESS(ROW(),COLUMN(),,,"main") )))
    Exactly the same formula in B1, C1, D1, …
    So, the table will automatically grab the contents of the main table (just take care to insert more columns in aux1 than in main)
    In the footer row of aux1, insert a sum formula for columns where there is required.
    Looking at this footer will flag columns where a value may be "wrong" so, it will be necessary (but easy) to scan the column's content to find the red triangle(s).
    Yvan KOENIG (from FRANCE lundi 13 octobre 2008 13:27:40)

  • How do I copy the value of a cell?

    I'm trying to copy just the value of a cell that contains a formula. I only want to copy the cell that contains the answer and not the other cells that are contained in the formula. Any answers or suggestions would be gratefully appreciated.
    Thanks
    JQ

    Hi jonquant,
    Click on the cell that contains the answer.
    Edit > Copy (command c)
    Click on the cell where you want the value.
    Edit > Paste Values.
    That will paste the answer without the formulas.
    Regards,
    Ian

  • ALV Tree - Color Specific Column based on value in that cell?

    Hi Forums,
    I have searched the forum and I am unable to find the answer to my question.
    I am using an ALV tree and I would like to color a cell RED is the value in the cell is negative.
    I have set my field catalog to many different emphasize numbers and no luck either?
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname  = 'ORG_TXT'.
      ls_fieldcatalog-coltext    = text-d02.
      ls_fieldcatalog-scrtext_m  = text-d02.
      ls_fieldcatalog-col_pos    = 2.
      ls_fieldcatalog-outputlen  = '30'.
      ls_fieldcatalog-no_out     = 'X'.
      ls_fieldcatalog-emphasize  = 5.
      APPEND ls_fieldcatalog TO et_fieldcatalog.
    I am using 
        gr_alv_tree_control  TYPE REF TO cl_gui_alv_tree
    as my class to display my tree and I have found no methods that would set the color in there either?
    What else could be checked?

    To those interested, i was able to color the TEXT of a First coloumn of the TREE. Using this code:
    That said it will not work without BOTH
           ls_layout_item-fieldname = gr_alv_tree_control->c_hierarchy_column_name.
          ls_layout_item-style   =
                               cl_gui_column_tree=>style_intensifd_critical.
        IF ls_vip_display-vip_diff_tot > 0.
           ls_layout_item-fieldname = gr_alv_tree_control->c_hierarchy_column_name.
          ls_layout_item-style   =
                               cl_gui_column_tree=>style_intensifd_critical.
        ENDIF.
        IF ls_vip_display-vip_diff > 0.
          ls_layout_item-style   =
                               cl_gui_column_tree=>style_intensifd_critical.
        ENDIF.
        ls_layout_item-t_image = '@GZ@'.
        ls_layout_item-style   =
                            cl_gui_column_tree=>style_intensifd_critical.
        APPEND ls_layout_item TO lt_layout_item.
    *   add leaf nodes
        CALL METHOD gr_alv_tree_control->add_node
          EXPORTING
            i_relat_node_key     = lv_parent_id
            i_relationship       = cl_gui_column_tree=>relat_last_child
            i_node_text          = lv_node_text
            is_outtab_line       = ls_vip_display
            it_item_layout       = lt_layout_item
            is_node_layout       = ls_node_layout
          IMPORTING
            e_new_node_key       = lv_new_key
          EXCEPTIONS
            relat_node_not_found = 1
            node_not_found       = 2
            OTHERS               = 3.
    Anybody else who can shed some light to why both are needed OR possibly how I can change the position of the colored text to a different cell?
    Edited by: Keith Warnock on Feb 9, 2011 6:48 PM

  • Is there any way for a formula to ignore other cells without data in them yet?

    I'm trying to create a spreadsheet to track my grades. I have all the formulas set up (quizzes, tests, etc. are calculated separately because they are all weighted differently towards the final grade). The "Final Grade" formula has an error because some of the other sets don't have data in them yet (i.e. haven't taken a test yet). Is there any way to get the Final Grade formula to ignore the cells without data yet?
    Formula for each category (quizzes, tests, etc): ((SUM [total point column]) / (SUM [total points possible column])) * 100
    Formula for Final Grade: (([quiz grade] * 0.15) + ([test grade] * 0.25)) * 100

    Hi badwolfgirl,
    I agree with quinn that merged cells can lead to many problems. Here is a table with no merged cells
    Two Header Rows, one Header Column and one Footer Row.
    I have used Cell Fills (colours) to distinguish Quizzes, Tests, Final Exam and Projects.
    Formula in Footer B8
    =IF(SUM(C)=0,"",100×SUM(C)÷SUM(D))
    if the SUM of C is 0 (zero), insert "" (NULL) to make it appear blank. Else insert 100xSUM(C)/SUM(D) to show the % score.
    Formula in C8
    =SUM(C)
    Formula in D8
    =SUM(D)
    Select B8 to D8 and drag the yellow Fill Handle to the right.
    If you want the appearance of merged cells, you can delete the contents of B1 and D1, then show No Border to the left and right of C1
    And so on for EFG etc.
    The cells are still there (to avoid problems down the track.
    Regards,
    Ian.
    Edited to rearrange paragraphs. Ian.

  • Copying cells without autofilling

    I'm using Numbers version 9.  I have a row of cells in a summary sheet that reference back to cells in a particular sheet.  Now I want to create other rows that reference the same cells in other sheets.  When I try to copy these cells to create the other rows, Numbers is autofilling (auto-incrementing the references) incorrectly.  Is there a way to copy a series of cells without autofill?
    Do I have to select each cell and change it's reference to absolute?
    Also, is there a way to select a bunch of cells and just change the sheet that's referenced by all the cells formulas?
    Thanks,
    Dave

    Hi Gavin,
    Here's the original formula from the post above:
    B2: =OFFSET(INDIRECT($A2&"::$A$1",),3,COLUMN()-1,,)
    The syntax for OFFSET is:
    OFFSET(base, row offset, column offset,rows,columns)
    The last two arguments are otional. If omitted, as they are in this formula, both default to 1, and the content of a single cell is returned.
    'base' is the address of the cell from which OFFSET starts. Here, it is specified using the INDIRECT function, which constructs the address as a text string. The content of cell A2 (on the table containing the formula) is the name of the table (ABIE) from which data is to be returned to row 2 of the summary table. The name from A2 is concatenated with the text "::$A$1" to create the address of the base—ABIE::$A$1.
    All data to be returned from ABIE is in row 4 of that table, three rows below $A$1, so the row offset is 3.
    In your case, the data is in row 25 of the table, twenty four rows below $A$1. Your row offset value is 24.
    The first piece of data to be returned is in column B of ABIE, one column to the right of the base, $A$1.
    the second piece is in column C, the third in column D.
    The COLUMN() function, with no argument supplied, returns the 'column number' of the cell containing the formula. In B2, it will return 2, in C2, 3, and in D2, 4. Each of these values is one more than the column offset needed to get to the column containing the data, so we can specify the column offset using COLUMN()-1, and the returned value will automatically adjust as the formula is filled right.
    That's true for the three columns of data in the example, and for the six columns of data in your case, provided the columns are contiguous.
    So for your case, assuming you are returning the data from row 25 of the source table(s), and that you are returning it to row 2 of your summary tabe. the formula requires only one reision:
    B2: =OFFSET(INDIRECT($A2&"::$A$1",),24,COLUMN()-1,,)
    Regards,
    Barry

  • Delete "false"-values from queue?

    Hello experts,
    I wrote an UDF to delete "false"-values from a queue:
    String f = "false";
    for(int i=0;i<list.length;i++)
    if (list<i>.equals(f))
           result.addSuppress();
    else
           result.addValue(list<i>);
    I am adding a SUPPRESS for each "false"-value and I am not happy with that.
    Question: Can I somehow delete the false-values from my queue?
    Thank you for your help and best regards,
    Peter

    Hi,
    it's hard to answer without knowing your complete scenario, but maybe you don't need the suppress values.
    Then you could write
    String f = "false";
    for(int i=0;i<list.length;i++)
    if (!list<i>.equals(f))
           result.addValue(list<i>);
    Or maybe you could assure that you don't have false values in your queue.
    Regards
    Patrick

Maybe you are looking for

  • Double counting an insert in the db

    When I run the following code – the INSERT INTO occurrence seems to repeat itself – Thus, I am double counting each word: Example, if I have three words, (Help, Hope & Peace) – each word is placed in the word table – but, when inserted into the occur

  • Object locking in Distributed cache

    Hi,      I have gone through some of the posts on the forum regarding the locking issues.      Thread at http://www.tangosol.net/forums/thread.jspa?messageID=3416 specifies that      ..locks block locks, not gets or puts. If one member locks a key, i

  • Server error when testing form!!

    Hi, We have a completed form but cannot test it do to server errors we encounter ever time we try to test. Also have tried to email link to access form which will open and can be filled out, but Server error encountered when we hit submit. How can th

  • Factory

    Hi guys, I was reading a book when I came accross to an: public abstract interface xpto()being called a factory. But how can this class be called a factory? I have been lintening this word for a while, but I never cared much about it, because like th

  • I see my receipt of purchase for CS 6 upgrade... But my CS 6 upgrade won't download

    I upgraded earlier today, but the purchase won't download... I tried going through 'my account', clicking on 'download', to no avail. I figured I'd get a trial of CS 6 and use my serial #, which has worked in the past, but when I try downloading a co