Steps to Upgrade PT8.49 to 8.50 Manually without using an Upgrade Template

Folks,
Hello. I am Upgrading PeopleTools 8.49 to 8.50 Manually without using an Upgrade Template because I cannot download an Upgrade Template from Oracle.
Upgrading is actually add/drop some tables/views in PeopleTools 8.49 Database using Chang Assistant 8.50.
According to the document "Enterprise PeopleTools 8.50 Upgrade" Chapter 3 and Chapter 4, after configure Change Assistant 8.50 and EMF, we need to creat an Upgrade job and run some scripts.
I have configured Change Assistant 8.50 and EMF. EMF run successfully. After that, I don't know the exact steps to do in Change Assistant.
Can any folks tell me the steps to upgrade PT8.49 to 8.50 manually in Chang Assistant without using an Upgrade Template after configure Change Assistant and EMF ?
Thanks.

Do you know what is Change Assistant ? It is running job defined from template and indicate when step has to be done manually. But Change Assistant itself is nothing but an assistant, it does not build record, it does not run DMS, it does not run sql script, for all those Change Assistant is calling corresponding tools (AppDesigner, DataMover, SQL*Plus). Consequently, if you don't have template, you should do yourself every single step usually ran by the PsCA, but you won't need PsCA itself, just run manually whatever indicated in the doc (basically replace "PsCA" by "manually").
As I already told you earlier, it is tedious, but works fine if you pay attention enough.
HTH,
Nicolas.

Similar Messages

  • How to create inspection lot manually without using QA01 Transaction code?

    Hi,
    Please anybody give procedure for creating Inspection Lot Manually without using Transaction Code QA01

    Hello, Srinivas,
    If you want another T code only then you can try QA01A.
    or you can create a Physical Sample with QPR1 and then click on the button there to create inspection lot. To create inspection lot for that Physical sample (you will able to see that button only after releasing the sample) Or you can use QPR5.
    But let me know the reason why you want T code other than QA01.
    Regards,
    Shyamal

  • Upgrading from iOS 4.3.3. without using iOS 6

    I have an iPad 2 which is still using iOS 4.3.3 as I didn't get round to updating it. Now I need to upgrade to iOS 5 or above to enable me to use a digital AV adapter for HDMI. Is there anyway I can upgrade to iOS 5 or above without updating to iOS 6?

    No. You will have to update to iOS 6 now. That's the way it works.

  • To delete child records manually without using oracle's delete cascade

    Hi all
    I have to write a procedure that accepts schema name, table name and column value as parameters....I knew that i need to use metadata to do that deleting manually....I am a beginner...can somebody help me with the procedure?

    Hi Guru,
    They told me to use this procedure...but this procedure isn't working...can you help me to understand this procedure?
    CREATEOR REPLACE PROCEDURE delete_cascade(
        table_owner          VARCHAR2,
        parent_table         VARCHAR2,
        where_clause         VARCHAR2
    )IS
        /*   Example call:  execute delete_cascade('MY_SCHEMA', 'MY_MASTER', 'where ID=1'); */
        child_cons     VARCHAR2(30);
        parent_cons    VARCHAR2(30);
        child_table    VARCHAR2(30);
        child_cols     VARCHAR(500);
        parent_cols    VARCHAR(500);
        delete_command VARCHAR(10000);
        new_where_clause VARCHAR2(10000);
        /* gets the foreign key constraints on other tables which depend on columns in parent_table */
        CURSOR cons_cursor IS
            SELECT owner, constraint_name, r_constraint_name, table_name, delete_rule
              FROM all_constraints
             WHERE constraint_type ='R'
               AND delete_rule ='NO ACTION'
               AND r_constraint_name IN(SELECT constraint_name
                                           FROM all_constraints
                                          WHERE constraint_type IN('P','U')
                                            AND table_name = parent_table
                                            AND owner = table_owner)
               ANDNOT table_name = parent_table;-- ignore self-referencing constraints
        /* for the current constraint, gets the child columns and corresponding parent columns */
        CURSOR columns_cursor IS
            SELECT cc1.column_name AS child_col, cc2.column_name AS parent_col
              FROM all_cons_columns cc1, all_cons_columns cc2
             WHERE cc1.constraint_name = child_cons
               AND cc1.table_name = child_table
               AND cc2.constraint_name = parent_cons
               AND cc1.position = cc2.position
            ORDERBY cc1.position;
    BEGIN
        /* loops through all the constraints which refer back to parent_table */
        FOR cons IN cons_cursor LOOP
            child_cons   := cons.constraint_name;
            parent_cons  := cons.r_constraint_name;
            child_table  := cons.table_name;
            child_cols   :='';
            parent_cols  :='';
            /* loops through the child/parent column pairs, building the column lists of the DELETE statement */
            FOR cols IN columns_cursor LOOP
                IF child_cols ISNULLTHEN
                    child_cols  := cols.child_col;
                ELSE
                    child_cols  := child_cols ||', '|| cols.child_col;
                ENDIF;
                IF parent_cols ISNULLTHEN
                    parent_cols  := cols.parent_col;
                ELSE
                    parent_cols  := parent_cols ||', '|| cols.parent_col;
                ENDIF;
            END LOOP;
            /* construct the WHERE clause of the delete statement, including a subquery to get the related parent rows */
            new_where_clause  :=
                'where ('|| child_cols ||') in (select '|| parent_cols ||' from '|| table_owner ||'.'|| parent_table ||
                ' '|| where_clause ||')';
            delete_cascade(cons.owner, child_table, new_where_clause);
        END LOOP;
        /* construct the delete statement for the current table */
        delete_command  :='delete from '|| table_owner ||'.'|| parent_table ||' '|| where_clause;
        -- this just prints the delete command
        DBMS_OUTPUT.put_line(delete_command ||';');
            EXECUTE IMMEDIATE delete_command;
        -- remember to issue a COMMIT (not included here, for safety)
    END;Edited by: BluShadow on 09-Oct-2012 16:05
    added {noformat}{noformat} tags for readability.  Please read: {message:id=9360002} and learn to do this yourself in future.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Hi, Can anybody suggest the easiest steps to updgrade OS X: Updating OS X without using the backup.

    Hi,
    I have received the software update for my MacBook Air. .
    OS X: Updating OS X
    May I request this forum to suggest the best way to take the backup before the start of the upgrades.
    Is it compulsory to take the backup.
    If yes , what is the method to take the backup.

    Backups are not required but are a good idea in case something goes wrong during the update. Apple makes it easy for you, as the Time Machine utility is included with every Mac. Just purchase an external hard drive, and you're good to go. Apple makes a wireless hard drive called a Time Capsule: https://www.apple.com/airport-time-capsule/

  • Activate new service without using my upgrade?

    I'm interested in switching to Verizon Wireless from my current carrier who shall remain nameless.
    Let's say there is a new phone coming out in a few months that I'm interested in purchasing at the upgrade/new contract price, but I want to switch my service to Verizon now. I have a spare Verizon phone. Could I get Verizon to activate the current phone I have while maintaining my upgrade so that when this new phone comes out in a few months, I would be able to buy it at the upgrade price rather than full retail?
    Does anyone have experience with this?

    Good news holloway!  This is entirely possible to do, as long as the phone you want to activate IS branded Verizon.  You will pay for the cost of the plan you choose, $35 for activation, and possibly a deposit based on credit history.  The line will be on a month to month basis, eligible to upgrade.
    When the phone you are awaiting becomes available, you can purchase it at the upgrade price, and at that point you will sign a 2 yr agreement, effective the date of purchase.
    If you are porting your number from your current carrier, you don't need to cancel your account with them; in fact, you shouldn't do that.  Initiate the account and port with Verizon, and when the port is complete, your account with the other carrier will be cancelled.
    Welcome to Verizon!

  • Can I still upgrade to CS6 from CS5.5 without using Cloud or subscriptions?

    I'm new to cloud. Do I have to use this or can I still buy a physical disc upgrade of CS5.5 to CS6?

    CS6 products are still available for purchase thru Adobe outside of the Cloud.
    Purchase CS6 products:
    http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html

  • Can you edit the RTF layout manually WITHOUT using wizards?

    Hi,
    In Oracle Reports we can edit the layout in the layout editor. I.e. we can add fields, repeating frames and drag the objects to any position we want. Can you do the same in BIP, instead of using a wizard?
    Is it recommended? Or should we always only the wizards provided by the BIP Menu?
    Thanks & Regards,
    C.S.

    I mentioned XML only becasue you will need to be familiar with your XML data stream (i.e. the elements avalaible for use inyour RTF template), if you are not using the BIP toolbar, as you will not be able to choose them from a list, like you can with the toolbar.
    There are aspects of XSL you will eventually require but these can be picked up as you go by reading on this forum and others Blogs, and the BIP user guide of course. (You get the user guide when you install the toolbar!)
    Regards,
    Dave

  • Continued Discussion - Steps to Upgrade PT8.49 to 8.50 Manually

    Folks,
    Hello. I am upgrading PeopleTools 8.49 to 8.50 manually without using an Upgrade Template according to the document http://download.oracle.com/docs/cd/E16255_01/psft/acrobat/upt850_103009.pdf.
    I am working on Task 4-2-3 to update PeopleTools system tables that is to run script RELxxx.SQL.
    In SQL Server, I run the script REL850.SQL. It comes up many invalid objects like PSSTATUS, etc.
    Then I run script REL849.SQL. It comes up many invalid objects like PSSTATUS as well.
    I think the correct version of script to run is REL850.SQL because I upgrade PT8.49 to 8.50.
    Can any folks tell me how to run script RELxxx.SQL on Task 4-2-3 to update PeopleTools system tables ?

    Folks,
    I add "USE DatabaseName" into the script REL850 and run successfully. Thanks.

  • How to build, package & deploy web services manually without ant on JWSDP

    Hello,
    How can I Build, Package & Deploy web services manually without using ant tool on JWSDP 1.3?.
    Because I am having difficulties in using ant tool for my own webservices. ant is very tightly coupled with the directory hierarchy & configuration files (as I go throught the examples of JWSDP1.3). Also I need to learn the overall process going on behind the scene.
    I have to teach the simplest required steps to build, package & deploy any webservice to any container independent of application server & OS without using ant tool. It would also help me to understand which items are required as specified in the Web Services Specifications & which one are implementation or platform specific.
    Any help would be greatly appreciated.
    Thanks,
    Iftikhar.

    Just follow the step of the JWSDP1.3 tutorial..

  • Can anyone help me with this: my daughter lost her unlimited data plan when I used her upgrade.

    My daughter lost her unlimited data plan when I used her upgrade to buy a new phone (upgrade transfer). She didn't upgrade her phone, I did. No one told us this was going to happen and the first I knew of it was when I got a letter in the mail telling me of the change. We went back to the store where we bought the new phone and they put in 2 requests for her unlimited plan to be reinstated, but both were denied. They then told us to call Customer Care, but Customer Care doesn't care. Does anyone else have any experience of this and know of any recourse we may have? Thanks for any help you can give me.

    tikibar1 wrote:
    She didn't upgrade her phone, but you did by using her upgrade.  It's her contract that then gets extended, not yours.  And, unfortunately, as of last June, whenever you sign a new two-year contract, you lose your unlimited data.  You can try to reverse the upgrade and get the unlimited data restored if within 30 14 days, but since Verizon has discontinued the unlimited data plans for everyone, I'm not sure how successful you'll be.
    For what it's worth, to keep unlimited data (at least for now; rumor has it that it may be completely gone next summer), you don't want to sign a new two-year contract, but pay full retail price, get the phone elsewhere (like ebay), or use an upgrade from a phone that's on a tiered data plan.
    It's 14 days, tiki.  Otherwise they are out of luck.

  • E4200V2 Manual Download and Firmware Upgrade to 2.0.7

    I have a 4200V2 acting as a Router and (2) more E4200V2's acting as Access Points,
    The E4200V2 acting as the Router is at Firmware 2.0.37, but, the other Access Points are at Firmware 2.0.36.126507 and when I try to have the Firmware Upgrade Utility in Setup update the Firmware it gives me this message:
    "Current Version: 2.0.36.126507
    Available Upgrade: Your router software is up to date"
    Where is the downloadable Firmware 2.0.7 located?
    How do I upgrade the Firmware Manually to 2.0.7 and should I?
    Murray

    Hello mkerdman. Suppossedly the Version 2 for E4200 has the option to automatically upgrade to the lastest firmware (and even has the option to restore it to the previous one) but if it is not working for you then yes, go for manual upgrade.
    I found this from Cisco's public kb site:
    FIRMWARE UPGRADE METHOD
    1. How do I upgrade the firmware on the E4200?
    When logged in to the web-based setup page, go to Administration tab > Firmware Upgrade sub-tab.  If the router is currently online, make sure the Online Upgrade radio button is selected.  Click Check for Upgrades button.  If an update is available, click the Upgrade Now button.  If the router is not currently online, make sure the Manual Upgrade radio button is selected and browse for the firmware file.  Then click the Start Upgrade button.
     http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=1c142f6902cc42dea46443670219893c_E4200_FAQs.xml&pi...
    And to download firmware version 2.0.37 from their website: http://homesupport.cisco.com/en-us/support/routers/E4200

  • Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • What's the best way to upgrade from 10.4 to 10.6 - import or upgrade?

    I've got an Intel MacPro running 10.4. I bought a 10.6 CD, and want to upgrade. Is it best to 1) install 10.6 onto a clean (empty) new partition and then let Migration Assistant import everything from my 10.4 disk, or 2) ask it to upgrade the existing 10.4 partition to 10.6? My biggest priority is that my system stay as functional as possible (i.e., I don't want it to mess up stuff that worked fine on the 10.4). Is this a risky process - am I better off upgrading a clone (or Time Machine) backup of the 10.4 and booting off that to see how it works, or is this pretty safe and I should just do it? I do have a backup of course. Thanks,
    Mike

    Be aware that the Snow Leopard installer is more advanced than previous ones & is optimized to upgrade an existing installation.
    Among other things, it performs the equivalent of Disk Utility's "Verify Disk" check before it writes anything to the target disk & will not do so if it finds any problems. Thus, you don't need to worry about checking for preexisting directory corruption before running the installer.
    The installer also uses the network settings of the existing system on the startup drive (if there is one) to access Apple's database of incompatible apps to get the most current version of it before rebooting from the installer DVD. It may not be able to do this without any existing network settings, & of course if the target drive is empty to begin with you don't get the benefit of that feature, which moves incompatible apps in a existing installation to an "Incompatible Software" folder as part of the upgrade.
    The installer will also use what is already installed as a reference for what to install. For instance, if you have existing PPC apps on the target HD, it will install Rosetta automatically. If you have a Quicktime Pro license, it will automatically install Quicktime Player 7 (in the Utilities folder) & reregister your pro license. If you start with an empty disk, neither will be installed by default. The installer will also default to installing 'local & nearby' printer drivers, based on the existing system's printer preferences.
    Moreover, unlike earlier OS installers, it never patches any existing OS files to bring them up to the new OS versions, so it is immune to the problems this sometimes caused if the existing versions had any corruption or other damage. Note that it does preserve any preexisting third party system files you have added (unless they are in the incompatible items database) so if they are corrupted or damaged they can still cause problems when the Mac restarts from the newly installed OS. However, since all the actual installation work is done while booted from the DVD, this will not interfere with the installation process itself. For the same reason, the installer is immune to any existing permissions issues, since everything is installed by the superuser running on the DVD's version of the OS.
    Basically, while it isn't bulletproof (& for that reason you definitely should have a backup or clone before you use it), the Snow Leopard installer has eliminated the need to perform essentially all the pre-installation steps knowledgeable users often recommend to insure a smooth, trouble-free upgrade to earlier OS versions.
    Getting rid of any old 'flotsam and jetsam' is a different matter; however, the installer does remove much of that (or move it to the Incompatible Software folder) & spares users the sometimes tedious task of deciding what to migrate or manually move back into a fresh new system from a backup, which can itself be a source of problems.

  • HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIME

    HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIMES IT STOPS DOWNLOADING AND SHows THAT "UNABLE TO DOWNLOAD THIS APP" IT'S SHOWING THIS MESSAGE IN EVERY APP AND ALSO AT ITS DISTURBING ME AT THE TIME OF WATCHING ANY VIDEOS TOO. BECAUSE WHEN I AM TRYING TO WATCH ANY VIDEO IN YOUTUBE IT'S DISTURBING VIDEOS ARE NOT PLAYING ND SOUNDS ARE NOT COMING PROPERLY ND THE IMAGE QUALITY ALSO BECOMES POOR AND THE VIDEO STOPS AFTER SOME TIMES THIS PROBLEM IS HAPPENING AT ALL THE VIDEO ND IT'S HARASSING A LOT. THE SAME PROBLEM IS ALSO HAPPENING TO MY BROTHER'S PHONE TOO.. REQUEST TO APPLE PLEASE ANALYSE AND FIXED THE PROBLEM AS SOON AS POSSIBLE OR ELSE MAYB I NEED TO STOP USING APPLE PRODUCTS. CAUSE IT'S HARASSING MY DAILY LIFE A LOT....

    These are user to user forums.  You ARE NOT addressing Apple by posting here.
    Also, why are you YELLING at us??  Stop using ALL CAPS.
    What steps have you done to try and fix the problem?

Maybe you are looking for

  • Creating XML Publisher report without xml data source

    Hi Anyone developed XML publisher without xml source.I wanted to know is there any way to develop that.. Presently we need a .xml file to develop any report on XML Publisher.But if there will be a way where is no .xml file and we need to generate tag

  • How to change value date from posting date to net due date

    Hi Gurus, My client wants to change value date from posting date to net due date. currently posting date is considered as value date but in future client wants to change value date to net due date of documents. 1. what configurations need to be maint

  • How to stop the std SUS method from being called

    Hi I am working on SRM - EDI integration for NON SUS vendor.I am using a custom mapping and custom method call in this case.i have placed the logic in the std. mapping BADI - BBP_SAPXML1_OUT_BADI.i am triggering my custom method call in this method o

  • Standard application buttons in alv report

    i am using function module 'reuse_alv_list_display'.   in my report i have all the standard buttons such as last, next previous,first etc.    but the buttons such as CHOOSE and SAVE is missing.   what should i do in the code to invoke these two stand

  • JRCMD

    Hi, By default, the jrcmd start_management_server and -Xmanagement java option both start up the listener on all IPs instead of limiting it to the IP that is hosting the JVM. We have a large number of app server instances running on each physical Lin