7.1 update process for CS2 users

Hi - I want to update the Acrobat 7.x Pro / Designer 7.0 combo on a PC which came with CS2.
Can I just run the 7.1 install and let it intelligently remove and install over existing Designer 7.0 ? I ask because - unlike standalone Acrobat install, CS2 does not seem to offer you a way of manually uninstalling Designer 7.0
By the way - unless I've missed something, the ReadMe on the 7.1 CD talks about everything except the 7.0 > 7.1 update procedure. Think this should always be explained, even if no problems foreseen.

"Anyways, moral of the story is I shouldn't open my big mouth about things I don't know for sure
Chris
Adobe Enterprise Developer Support" - LOL - confirms my long-held opinion that Adobe staffers are generally honest and friendly people. Probably too honest ;o)
"It would be helpful if Adobe published a document that listed (e.g. in tabular form) the functionality that works/exists in various Designer + Acrobat combinations. " - definitely, but this is where Adobe always fall down. It is as if they just don't have the layer of people who should be around to do this kind of stuff.
Which reminds me - what exactly are QA people there for? Most QA people I know can't figure out how to use the elevator.
They need to employ at least one person per product whose sole job is just to see things from a customer's viewpoint (not form Adobe's!!!) - we would soon see improved documentation (especially on the Javascript side!) and more logical install routines.

Similar Messages

  • Order management header level updation process for iStore order.

    Hi all,
    I worked on OM header level updation process for iStore order.only card holder name,expiration date updated using OE_ORDER_PUB.process_order but Credit card number,card type not updated for istore order in OM.so please help to me.
    CODE:
    SET SERVEROUTPUT ON;
    DECLARE
    v_api_version_number NUMBER := 1;
    v_return_status VARCHAR2 (2000);
    v_msg_count NUMBER;
    v_msg_data VARCHAR2 (2000);
    -- IN Variables --
    v_header_rec oe_order_pub.header_rec_type;
    v_line_tbl oe_order_pub.line_tbl_type;
    v_action_request_tbl oe_order_pub.request_tbl_type;
    v_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    -- OUT Variables --
    v_header_rec_out oe_order_pub.header_rec_type;
    v_header_val_rec_out oe_order_pub.header_val_rec_type;
    v_header_adj_tbl_out oe_order_pub.header_adj_tbl_type;
    v_header_adj_val_tbl_out oe_order_pub.header_adj_val_tbl_type;
    v_header_price_att_tbl_out oe_order_pub.header_price_att_tbl_type;
    v_header_adj_att_tbl_out oe_order_pub.header_adj_att_tbl_type;
    v_header_adj_assoc_tbl_out oe_order_pub.header_adj_assoc_tbl_type;
    v_header_scredit_tbl_out oe_order_pub.header_scredit_tbl_type;
    v_header_scredit_val_tbl_out oe_order_pub.header_scredit_val_tbl_type;
    v_line_tbl_out oe_order_pub.line_tbl_type;
    v_line_val_tbl_out oe_order_pub.line_val_tbl_type;
    v_line_adj_tbl_out oe_order_pub.line_adj_tbl_type;
    v_line_adj_val_tbl_out oe_order_pub.line_adj_val_tbl_type;
    v_line_price_att_tbl_out oe_order_pub.line_price_att_tbl_type;
    v_line_adj_att_tbl_out oe_order_pub.line_adj_att_tbl_type;
    v_line_adj_assoc_tbl_out oe_order_pub.line_adj_assoc_tbl_type;
    v_line_scredit_tbl_out oe_order_pub.line_scredit_tbl_type;
    v_line_scredit_val_tbl_out oe_order_pub.line_scredit_val_tbl_type;
    v_lot_serial_tbl_out oe_order_pub.lot_serial_tbl_type;
    v_lot_serial_val_tbl_out oe_order_pub.lot_serial_val_tbl_type;
    v_action_request_tbl_out oe_order_pub.request_tbl_type;
    v_msg_index NUMBER;
    v_data VARCHAR2 (2000);
    v_loop_count NUMBER;
    v_debug_file VARCHAR2 (200);
    b_return_status VARCHAR2 (200);
    b_msg_count NUMBER;
    b_msg_data VARCHAR2 (2000);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('Starting of script');
    -- Setting the Enviroment --
    mo_global.init('ONT');
    fnd_global.apps_initialize ( user_id => 1013438
    ,resp_id => 21623
    ,resp_appl_id => 660);
    mo_global.set_policy_context('S',204);
    -- Header Record --
    v_header_rec := oe_order_pub.g_miss_header_rec;
    v_header_rec.request_date := SYSDATE;
    v_header_rec.header_id := 251413;
    v_header_rec.credit_card_holder_name :='esakki';
    v_header_rec.credit_card_number := 'XXXXXXXXXXXX3510';
    v_header_rec.credit_card_expiration_date := to_date('01-JAN-2014','dd-mon-yyyy');
    v_header_rec.credit_card_code := 'MASTERCARD';
    v_header_rec.payment_type_code := 'CREDIT_CARD';
    v_header_rec.sold_to_org_id := 131747;
    v_header_rec.sold_from_org_id := 204;
    v_header_rec.ordered_date := SYSDATE;
    v_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
    v_action_request_tbl (1) := oe_order_pub.g_miss_request_rec;
    -- Line Record --
    v_line_tbl (1) := oe_order_pub.g_miss_line_rec;
    DBMS_OUTPUT.PUT_LINE('Starting of API');
    -- Calling the API to update the header details of an existing Order --
    OE_ORDER_PUB.PROCESS_ORDER (
    p_org_id =>204
    ,p_operating_unit => NULL
    p_api_version_number => v_api_version_number
    ,p_init_msg_list => fnd_api.g_false
    ,p_return_values => fnd_api.g_false
    ,p_action_commit => fnd_api.g_false
    , p_header_rec => v_header_rec
    , p_line_tbl => v_line_tbl
    , p_action_request_tbl => v_action_request_tbl
    , p_line_adj_tbl => v_line_adj_tbl
    -- OUT variables
    , x_header_rec => v_header_rec_out
    , x_header_val_rec => v_header_val_rec_out
    , x_header_adj_tbl => v_header_adj_tbl_out
    , x_header_adj_val_tbl => v_header_adj_val_tbl_out
    , x_header_price_att_tbl => v_header_price_att_tbl_out
    , x_header_adj_att_tbl => v_header_adj_att_tbl_out
    , x_header_adj_assoc_tbl => v_header_adj_assoc_tbl_out
    , x_header_scredit_tbl => v_header_scredit_tbl_out
    , x_header_scredit_val_tbl => v_header_scredit_val_tbl_out
    , x_line_tbl => v_line_tbl_out
    , x_line_val_tbl => v_line_val_tbl_out
    , x_line_adj_tbl => v_line_adj_tbl_out
    , x_line_adj_val_tbl => v_line_adj_val_tbl_out
    , x_line_price_att_tbl => v_line_price_att_tbl_out
    , x_line_adj_att_tbl => v_line_adj_att_tbl_out
    , x_line_adj_assoc_tbl => v_line_adj_assoc_tbl_out
    , x_line_scredit_tbl => v_line_scredit_tbl_out
    , x_line_scredit_val_tbl => v_line_scredit_val_tbl_out
    , x_lot_serial_tbl => v_lot_serial_tbl_out
    , x_lot_serial_val_tbl => v_lot_serial_val_tbl_out
    , x_action_request_tbl => v_action_request_tbl_out
    , x_return_status => v_return_status
    , x_msg_count => v_msg_count
    , x_msg_data => v_msg_data
    DBMS_OUTPUT.PUT_LINE('Completion of API');
    IF v_return_status = fnd_api.g_ret_sts_success THEN
    COMMIT;
    DBMS_OUTPUT.put_line ('Order Header Updation Success : '||v_header_rec_out.header_id);
    ELSE
    DBMS_OUTPUT.put_line ('Order Header Updation failed:'||v_msg_data);
    ROLLBACK;
    FOR i IN 1 .. v_msg_count
    LOOP
    v_msg_data := oe_msg_pub.get( p_msg_index => i, p_encoded => 'F');
    dbms_output.put_line( i|| ') '|| v_msg_data);
    END LOOP;
    END IF;
    END;
    OUTPUT:
    Starting of script
    Starting of API
    Completion of API
    Order Header Updation Success : 251413
    Thanks,
    saran

    Forgot to mention :Soruce is Oracle EBS

  • Error in Update Process for optimistic locking

    Hello,
    I tried to create a tabular form according to this How-To:
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html
    which worked fine until I tried to implement the optimistic locking.
    I use the same update process:
    declare
    l_cks wwv_flow_global.vc_arr2;
    j pls_integer := 1;
    begin
    -- Get original MD5 checksum
    select wwv_flow_item.md5(job,mgr,hiredate,sal,comm,deptno) cks
    BULK COLLECT INTO
    l_cks
    from emp;
    -- Compare the original checksum, l_cks,
    -- with submitted checksum, htmldb_application.g_fcs.
    -- If they are different, raise an error.
    for i in 1..l_cks.count
    loop
    if htmldb_application.g_fcs(i) != l_cks(i) then
    rollback;
    raise_application_error(
              -20001,
         'Current version of data in database has changed '||
              'since user initiated update process.');
    return;
    end if;
    end loop;
    but as soon as I try to apply the changes in the update process I get an error message saying: PLS-00503: RETURN statement required for this return from function
    So, if i delete the row with the "return;" statement, I get no error anymore, but when I test the optimistic locking I get an error as soon as I try to update a row in the first place.
    What am I doing wrong?
    Johnny
    P.S. : I am using Apex 1.6

    Hi Ant, of course......here is the customized pl/sql block I use:
    declare
    l_cks wwv_flow_global.vc_arr2;
    j pls_integer := 1;
    begin
    -- Get original MD5 checksum
    select wwv_flow_item.md5(partition,desig) cks
    BULK COLLECT INTO
    l_cks
    from UNITS;
    -- Compare the original checksum, l_cks,
    -- with submitted checksum, htmldb_application.g_fcs.
    -- If they are different, raise an error.
    for i in 1..l_cks.count
    loop
    if htmldb_application.g_fcs(i) != l_cks(i) then
    rollback;
    raise_application_error(-20001,'Current version of data in database has changed ' || 'since user initiated update process.');
    -- return;
    end if;
    end loop;
    -- update UNITS
    for i in 1..htmldb_application.g_f08.count
    loop
    if htmldb_application.g_f08(i) is not null then
    update UNITS
    set report_id = :P2_REPORT_ID,
    partition = htmldb_application.g_f10(i),
    desig = htmldb_application.g_f11(i)
    where unit_id = htmldb_application.g_f08(i);
    else
    if htmldb_application.g_f10(i) is not null then
    insert into UNITS
    (report_id,
    partition,
    desig)
    values
    (:P2_REPORT_ID,
    htmldb_application.g_f10(i),
    htmldb_application.g_f11(i));
    end if;
    end if;
    end loop;
    end;
    Thanks
    Johnny

  • Update process for installed CS extensions

    Hi,
    Once a CS extension has been built and installed what options are there  if you want to send out a update for a CS extension you have developed, how do you notify users who have installed the extension that there is an update.
    As CS Extensions created through CS Extension Builder are based on Adobe AIR is it possible to implement a update process similar to desktop AIR applications where it checks everytime it starts up if there is an update available or is there another solution?
    Thanks
    Stephen

    Even if the whole process is not yet finalized yet, a few things can be said already:
    Updates will be deloyed in the customer tennant => no explizit installation take place.
    The update will probably be visible via the business configuration or a kind of system message.
    Updates are also independent of the ByDesign release cycles.

  • Setting automatic update settings for all users

    Hello all,
    I'm trying to roll out Quicktime 7.6 to our corporate desktops with the automatic update feature within Quicktime disabled. In past installs we were able to make the setting change and then copy the quicktime.qtp file to the "C:\Documents and Settings\All Users\Application Data\Apple Computer\quicktime" directory on all the computers and all would be good. However with 7.6 is appears this file is now housed under the individual user's profile. Is there a way to make this a global setting for all users logging in to a pc?
    Thanks in advance!
    KC

    We have a similar problem in a High School, using Windows XP Pro, QT 7.x and Active Directory. While going to a Spanish Exam web page that uses QT, the students get locked into an auto update process. As restricted users, they can neither abort or accept the update, and are unable to complete the exam. We have found that unchecking the preference for auto update as an admin user does not uncheck it for anyone else. Under C:\Documents and Settings, there is no folder for Apple Software except for myself, once I have opened the QT preferences. I assume that Apple has hidden the location of the default preference to force updating, without regard to how that would work in a locked-down environment. It sure creates havoc when 30 students sit down for a timed and graded online exam!! Any answers out there?

  • Update available for another user's apps

    I just purchased a brand new iMac & set up two users with separate usernames/passwords.  Now the app store says I have updates for apps that I don't have, nor want. These are apps that my wife downloaded under her username/profile.

    You are seeing her app updates and she will see your app updates because App Store searches all the hard disk to find App Store apps.
    Also, applications are installed by default on a common folder for both users (/Applications), so you can try to move the App Store applications to ~/Applications (being ~ your user folder). Doing this, the other user shouldn't be able to see app updates for your Apple ID as you can't access to one user folder from a different one

  • Update BBP_APPROVAL_LIMIT for mass users (Personalization)

    Hello ,
    To update the approval limit for individual users , one can do so by using SU01 --> Personalization --> BBP_APPROVAL_LIMIT
    Can anybody let us know if we can update the same for n numbers of users (say 1000 users) by mass changes.
    Regards
    Chetan Agrawal

    HI Satya,
    Won't updating the value in PFCG personalization tab change it for all users having that role , i want to update it for selective but mass users.
    I guess the personalization is SU01 has priority over personalization in PFCG.
    Regards
    Chetan

  • 7.1 Update process for Acrobat 7.x standalone users

    OK, tried this one on a PC with Acrobat 7.x Pro (updated to 7.05) and the bundled Designer 7.0.
    The Designer 7.1 installer does not remove Designer 7.0, so confusingly you end up with both on the same machine. Can't think of any reason why this would be the desired effect... (can they co-exist safely?)
    The 'Before you install' section does not appear to contain any info on the above situation.

    just keep trying is the best advice i have. Good luck

  • Updated Process for the Ideas Exchange

    Hey folks! Spotify Community team here.
    If you've been around the Spotify Community for a while, you've probably noticed that we keep tabs on your suggestions for improving Spotify through our Idea Exchange. 
    In an effort to keep the Idea Exchange as organized and up-to-date as possible, we've changed the way Ideas are submitted. We've outlined the new process with a step-by-step guide below. 
    We hope that you continue submitting ideas to make Spotify even better.  While we can't promise that we'll implement every idea that you submit, but we'll always do our best consider each one and provide updates wherever possible. 
    The guidelines:
    Search for previously submitted ideas.  Someone may have already submitted the same idea.
    One idea per post.  No double dipping.  
    Ensure the idea is implementable.  Avoid posting general feedback or questions in the idea exchange--the more specific the idea the better.  
    Use an intuitive title.  
    Submitting a new idea:
    1. Go to the Idea Submissions Board.
    2. Click the New Idea button.
    3. Enter an Idea Subject that includes one of the tags above. 
    4. In the Body enter a detailed description of your idea, including any screenshots or links you'd like to share. 
    5. Select one a platform label.
    6. Then select a subcategory label.
    7. Click Post. 
    8. One of our Idea Guardians in the Rock Star Program will analyze the idea and mark it either as a "Live Idea" or close it for a specified reason (duplicate idea, unspecified, etc). Allow us to introduce our Idea Guardians: Marco, FredJ, gprocess, Peter, dinomight, Anthony, pnc, Jordi, kbrooksc, Carina, OviiiOne, and Rodrigo.
    9. If your idea reaches the Live Idea board it can then start to gain kudos and comments from other users.
    10. Once your idea reaches 100+ kudos a Community Manager or Moderator will update the status to one of the following:
    The Idea statuses: 
    New Suggestion (no status/default one): the idea was just posted, it is waiting to be reviewed by an Idea Guardian.  
    New Idea: this is a new and unique idea, you can add your kudos here. 
    Inactive Idea: Ideas that could not gather at least 25 kudos per year will get closed - you can submit this idea again if you still feel the topic should get some attention. We recommend changing the title or description if posting the same idea again.
    Good Idea, give it some kudos: We like this idea. A decision has not been made but we want to see how much the Community continues to vote on it.
    Under Consideration:  This has been brought up internally. 
    Watch this space: This feature is coming. We have a rough pipeline for its release. 
    Not right now: We talked about this internally and it’s not on our pipeline for the next few months or more.
    Case Closed:  We talked about it, but we won’t be running with it. Thanks anyway!
    Implemented:  This feature has rolled out on the specific platform.
    Needs more info:  We need more clarity or information around this idea from the original poster.
    Curious for more information about the Ideas Board? Check out The Ideas Board: How your feedback reaches Spotify.
    Thanks for your continued feedback and contributions everyone,
    The Spotify Community Team 

    Ah, yes, now I see it. For those of us with less than perfect vision, how about putting the text in red in the center of the page as opposed to in only slightly darker green to the right. I've never used this page before so I had no idea there even was something to select on the right hand side. Also, the first link in the first post on this page gives me this: "You do not have sufficient privileges for this resource or its parent to perform this action.Click your browser's Back button to continue.Return to my original page"

  • Is there a conversion process for CS2 to CS6?

    I manage IT for a school, and one of my teachers has recently converted to CS6 from CS2.  She reports that some of her files from CS2 are not saving after opening in CS6.  Is there some sort of conversion or file update that needs to happen?

    Saving as what? Where? On what system? Sorry, but this is totally useless. We do not even know what program "she" is referring to, much less anything else. Generally all files created in previous CS versions open just fine in current versions, so whatever happens is specific to "her" environment, not a generic issue.
    Mylenium

  • Updating applications for multiple users

    I have set up multiple user accounts on my mac pro so that I can restrict my kid's access to applications and the web. Trouble is that I am unable to update his browser and flash plug-in. My default browser is Firefox 17.0, Flash Player 11.5.502.110 but his shows up as Firefox 3! I have scrolled through the Parental Controls: Allowed Apps list looking in vain for a way to select the *right* browser version, but nothing seems to work. Any ideas?

    Thanks for responding, Kirk. Per your suggestion I checked the parental controls panel to see which apps folder was selected and found that there seemed to be no way to navigate to a particular folder. It simply offers an option named "Other Apps". Next I looked at the User/blah/Applications folder and found that there was none--so parental controls must be pointing to the HD/Applications folder.

  • Cannot update pages for second user

    We have 2 users on our iMac and my wife updated pages to 5.2, when i opened pages it asked if i wanted to update but i was in a hurry so said later. now i cannot get it to update.   any suggestions?
    thanks

    There is one Pages v5.2 available on your iMac for both of you. And, if you had the previous Pages ’09 v4.3 installed, it was moved to /Applications/iWork '09 folder, and is still available for use. Two Pages versions installed will produce challenges.
    We are preconditioned to believe that a higher version must be a better, improved solution. Pages v5 is a complete rewrite/redesign that offers bugs and about 100 less features than v4.3. It is intuitive which is the better solution to use going forward. This decision can be fortified by reading the reviews in the App Store, and the endless posts here about Pages v5 issues.
    The problem introduced with Pages v5 is an entirely new .pages document format that is incompatible with prior Pages applications. For instance, lets say that I have Pages ’09 v4.3 running, and double-click a Pages v5 document to open it. Here is the dialog box that results:
    If the preceding document had been created with Pages ’08 or ’09, then the double-click would open it in the already running Pages ’09 application. If no Pages application were running, the double-click would attempt to open the document in Pages v5. If it is a .pages document created by Pages ’09, Pages v5.2 will open it without any warning about the earlier document format. As soon as you edit and save, it becomes a version 5 document that causes the above dialog when attempting to reopen it in Pages ’09.
    When you have mixed Pages application versions and documents, it changes your workflow habits. You can now only open Pages ’09 documents with either a right-click on the document, and then choose Open With > Pages (4.3). Or, use the Pages ’09 open file browser.
    I dragged the Pages ’09 and Pages v5.2 application icons to my Dock from their respective locations in /Applications/iWork '09 and /Applications. These Dock aliases make it somewhat easier to work with disparate .pages documents.

  • Creative Cloud for CS2 users

    Have been using Adobe products for nearly 20 years. Currently using CS2 and rather frustrated that the Creative Cloud discount is not available. I would sign up immediately. Come on, Adobe, make it available to us too.

    I'm afraid I don't like your chances given that CS2 is more than 7 years old and the discount offer for CS3 and CS4 users expires on Dec 31, 2012.

  • How to creat business process for the user?

    Hi
    when i use to create message in notif_creat i am getting error message Business partner Neni_SM does not exist
    please help me
    Regards
    Neni

    Problem : when i use to create message in notif_create i am getting error message Business Partner Neni_sm cannot be the reporter
    Admin_sm(Key user)
    Neni_sm(sub user)
    Neni_sm1(sub user)
    Step Followed
    1L.ogon to System Admin_sm go to Code:BP
    2.When I use to select Display in BP role as “Employee”
    3 required Data filled in “address tab”
    4.In Identification tab  I can only c subtab
    Employee data:
             Personnel number
             User Name:neni_sm
    5.When I use to select Display in BP role as “Employee in cfloders”
    Employee data:
             Personnel number
             User Name :neni_sm
    Identification number
              External BP number :<SID>< installation number of the system>only this 2 r possible
    Now problem is  When I  logon to Neni_sm(sub user)system  create message in notif_creat i am getting error message <b>Business Partner Neni_sm cannot be the <u>reporter</u></b>
    <b>Requirement</b>: I have to give access to create message for the following user Neni_sm(sub user)
    Neni_sm1(sub user) 
    Where I have already  created user: neni_sm and also   roles
         SAP_SUPPDESK_ADMIN
         SAP_SUPPDESK_CREATE
         SAP_SUPPDESK_DISPLAY
         SAP_SUPPDESK_PROCESS
    Please help me
    Regards
    Neni

  • Update process for September NIC update?

    The install help file says to create a boot disc from the included iso file and boot the server(s) to be updated. Is it really this easy to update the NIC drivers? We're running Zenworks 10.3.3.

    Originally Posted by spond
    Elphantasmo,
    huh? I write those instructions, and I don't remember saying that...
    Shaun Pond
    Never mind... the pdf was corrupted; it only showed the first two or three pages. I re-downloaded it after your confused post and because I'm on a different computer. So, thanks for looking at me like you know something I don't.

Maybe you are looking for

  • Number of Copies in Crystal Report Layout

    Hi all, Is it possible to show the number of copy in a Crystal Report layout? I mean: I am creating an invoice layout in Crystal Reports for SAP Business One 8.8. Customer wants to print always 3 copies, but with the word "Copy" in second and third d

  • What are the required settings to enable HTTP Compression?

    I am running into download speed issues with some of my clients.  I am looking for ways to improve download response without having to rewrite my system(s). On the server side, I am using CF 8.01 on a W2003 system.  I have enable HTTP Compression for

  • Exported movie not showing correctly in MS Explorer

    I posted a .MOV file on my web site. It shows fine in a Mozilla browser but in a MS Explorer window it just shows a small piece of the video. The sound works fine. Any suggestions? Christer

  • Query variable shows up even when "Hide (Can Be Shown)" is checked

    BW gurus, When we run a BEX report, a variable needs to be input with value, but when we check the variable property in the BEX design, find under Hide list, there are three list values: 1. Always show 2. Hide (Can Be Shown) 3. Always hide The 2nd on

  • IWeb can't publish...

    says "You are offline.  Please check your internet connection"....but my internet connection is fine.  In fact, if I click "visit published site" it connects just fine. I tried publishing to a local file in "Documents" and that also returns an error: