PS Installation - is it necessary for the loading of projects PPLTLS84CUR etc although my version of peopletool is 8.53

Hello

Please specify:

I have install Peopletools 8.53 (new installation) on my laptop. After you have created the database and scripts of dms required running, is required to load the project file as PPLTLS84CUR, PPLTLS84CURDEL etc? Because my tools already are 8.5 X and the project name is 84. It's a bit confusing because installed (8,53) is higher and you load a project with fewer 8.4 (PPLTLS84CUR).

Thank you

RK

Hi RK,.

In installing PeopleTools 8.53 for Oracle guide

Task 7-2: update database to the latest version of PeopleTools

He states:

This task must be performed for all applications where the version of PeopleSoft PeopleTools of the database which was delivered is different from the PeopleSoft PeopleTools version that you are running.

To check the version of PeopleSoft PeopleTools for your application database, run this SQL query:

Select TOOLSREL from PSSTATUS

If the version of PeopleTools isn't 8.53, you run this task. Otherwise, perform the task running of Scripts additional Data Mover.

Thank you

Tags: Oracle Applications

Similar Questions

  • [INS-30131] Failure of initial installation is necessary for the performance of the controls of the installer.

    Hi all

    12 c

    Win7 64 bit

    I install 12 c, but I encountered error:

    Capture.JPG

    [INS-30131] Failure of initial installation is necessary for the performance of the controls of the installer.

    Cause - failed to access the temporary location.


    Action - make sure that the current user has required permissions to the temporary location.

    Additional information:

    Details of the exception - GLWB-11322: one or more node names 'oracle_training' contains one or more invalid characters following "_".


    What temp file should grant permissions to?

    Thank you very much

    JC

    Hello

    Details of the exception - GLWB-11322: one or more node names 'oracle_training' contains one or more invalid characters following "_".

    Line underscore or annoying characters on your node name cause problem. What is the name of node? Please change it will solve the problem.

    Current version 12101 is to have this constraint. See MOS: 1957895.1

    -Pavan Kumar N

  • Adobe Application Manager, necessary for the verification of your driver's license, is missing or damaged.

    Adobe Application Manager, necessary for the verification of your driver's license, is missing or damaged. It appears each time I open a program from adobe. I downloaded the Manager, but he did that update hasdobe asks Manager.Please if you have an answer answer to me.

    N ° 1)

    Launch the Task Manager, click on the more details and end Adobe all related tasks.

    Step 2)

    Go to C: > Program (x 86) > " common files" > Adobe.

    Open the Adobe folder and delete files named Adobe Application Manager and OOBE.                  [Important]

    Impossible to remove? try to rename. as old OOBE. and Adobe Application Manager old.

    Step 3)

    Click on the link below and download Adobe Application manager and install the same:

    http://download.adobe.com/pub/Adobe/creativesuite/CC/Win/ApplicationManager9.0_all.exe

    Once the installation is complete, look for the icon of Adobe Application Manager launch on desktop and double-click it.

    It will start the update process.

    Once the update is complete, launch applications CC and check.

  • How to 'Allow smoothing' for the loaded XML .jpg?

    I have a thumb wheel image that loads a bunch of jpg. They are be enlarged rollover in 1,05.

    I've seen pixelated at scale 1 x 1 as well as expanded.

    I'm happy prettey how Flash renders the images with "Allow smoothing" on.

    How would I do it for the loaded xml jpg? Would it be as a script in the main folder or in the xml file?

    Here's how to load images in AS3:

    function completeHandler_AppPopUps(e:Event):void{
              //trace("thumbnail complete "+e.target.loader.parent.parent.name)//tells us when the loading is complete
    
              //size image into scroller (need only if I will have images at different sizes)
              resizeMe(e.target.loader.parent, 60, 90, true, true, false);
    
              TweenMax.to(e.target.loader.parent.parent, .5, {alpha:.7});//makes all thumb images at alpha=.7 after they are fully loaded
              //Tweener.addTween(e.target.loader.parent.parent, { alpha:1, time: .5 } );//caurina version
    
              TweenMax.to(e.target.loader.parent.parent, .5, {colorMatrixFilter:{contrast:1.1, brightness: .7, saturation: .5}});//makes all thumb images at brightness:0.5 after they are fully loaded
    
    
    }
    
    

    I don't want to complicate things more than necessary, but just in case it's needed here is the complete code for the edification of the wheel section:

    /////Parse XML
    //build scroller from xml
    function buildScroller(imageList:XMLList):void{
              trace("build Scroller");
    
              for (var item:uint = 0; item<imageList.length();item++) {
                        var thisOne:MovieClip = new MovieClip();
    
                        //outline
                         var blackBox:Sprite = new Sprite();
                        blackBox.graphics.beginFill(0xFFFFFF);
                        blackBox.graphics.drawRect(-1, -1, 62, 92);//-1,-1 places rectangle 1px left and up.62, 92 draws rectangle 1px wider on all sides of placed image dimenstions of 60x90
                        blackBox.alpha = thumbFadeOut;//setting Border Tweens
                        thisOne.addChild(blackBox);
                        thisOne.blackBox = blackBox;//setting Border Tweens
    
                          thisOne.x = thisOne.myx = (60 + padding) *item;//replaces the line above for scale tweenw roll over calculation. "myx" is a made up term which defines the position. 61 is the width of the thumb
                        thisOne.itemNum = item;
                        thisOne.title = imageList[item].attribute("title");
                        thisOne.link = imageList[item].attribute("url");
                        thisOne.src = imageList[item].attribute("src");
                        thisOne.alpha = 0;//makes all thumb images at alpha=0 before they are fully loaded
    
                        //Loading and Adding the Images
                        //image container
                        var thisThumb:MovieClip = new MovieClip();
                        //add image
                        var ldr:Loader = new Loader();
                        //var url:String = imageList[item].attribute("src");
                        var urlReq:URLRequest = new URLRequest(thisOne.src);
                        trace("loading thumbnail "+item+" into Scroller: " + thisOne.src);//url
                        ldr.load(urlReq);
                        //assign event listeners for Loader
                        ldr.contentLoaderInfo.addEventListener(Event.COMPLETE,completeHandler_AppPopUps);//tells us when the loading is complete
                        ldr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler_AppPopUps);//tells us if there are any typo errors when the loading is complete
                        thisThumb.addChild(ldr);
                        thisOne.addChild(thisThumb);
    
                        //create listeners for this thumb
                        thisOne.buttonMode = true;//makes boxes act as buttons
                        thisOne.addEventListener(MouseEvent.CLICK, clickScrollerItem_AppPopUps);//makes boxes act as buttons
                        thisOne.addEventListener(MouseEvent.MOUSE_OVER, overScrollerItem_AppPopUps);//traces the title when the mouse is over the bounding box in the Output Panel
                        thisOne.addEventListener(MouseEvent.MOUSE_OUT, outScrollerItem_AppPopUps);//traces the title when the mouse is out the bounding box in the Output Panel
    
    
    
                        //add item
                        scroller.addChild(thisOne);
              }
              scroller.addEventListener(Event.ENTER_FRAME, moveScrollerThumbs);//adding movement on mouse position
              trace("termination of build scroller");
    
    }
    
    
    

    in your listener to full charge, enable the property smoothing to the content of your charger (expressed as a bitmap).

    function completeHandler_AppPopUps(e:Event):void{

    Bitmap(e.currentTarget.loader.content).smoothing=true;
              //trace("thumbnail complete "+e.target.loader.parent.parent.name)//tells us when the loading is complete

    //size image into scroller (need only if I will have images at different sizes)
              resizeMe(e.target.loader.parent, 60, 90, true, true, false);

    TweenMax.to(e.target.loader.parent.parent, .5, {alpha:.7});//makes all thumb images at alpha=.7 after they are fully loaded
              //Tweener.addTween(e.target.loader.parent.parent, { alpha:1, time: .5 } );//caurina version

    TweenMax.to(e.target.loader.parent.parent, .5, {colorMatrixFilter:{contrast:1.1, brightness: .7, saturation: .5}});//makes all thumb images at brightness:0.5 after they are fully loaded

    }

  • Can I use my iPhone for the load

    Can I use my iPhone for the load?

    Yes

  • going on a computer: how to cancel the password which is necessary for the opening of the computer

    How to cancel the password which is necessary for the opening of the computer

    Do you mean that a password is required immediately after you turn on the computer or when you arrive at the Welcome to Windows screen? If the first case, it is a BIOS password and how you disable it depends on what type of computer you have. If the latter:

    Set up Windows to automatically connect (MVP Ramesh) -http://windowsxp.mvps.org/Autologon.htm

    If you would like more information or is not what you mean, please explain your post.

    MS - MVP - Elephant Boy computers - don't panic!

  • Warning__program error__one or more files necessary for the operation of the memorex expressit label design studio are missing or corrupt. Please use the Setup program to reinstall the software.

    Tried to update to Safari that does not work after the update. Then my printer stop working. Get the following message: 'WARNING '.
    program error
    necessary for the operation of the studio of design of memorex expressit label one or several files are missing or corrupt. Please use the Setup program to reinstall the software. »
    Already uninstalled and re-installed the software manufacturer labels several times. No luck.

    It seems it all started to go wrong after your update of Safari went wong:

    http://www.Apple.com/support/Safari/

    Link above is for Support of Safari.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    We do not know your Label program Vista compatibility.

    Check if your program is Vista Compatible:

    http://www.Microsoft.com/Windows/compatibility/Windows-Vista/default.aspx

    Windows Vista Compatibility Center

    First thing to do is to check its Vista compatibility at the link above, and if not to see what patches/solutions are available from its manufacturer...

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-compatibility-mode/

    If this is not Vista compatible, read the info on the link above.
    It works for some programs, but not all.

    This applies to software programs, NOT hardware drivers.

    If it's Vista compatible > uninstall it > Re-download/save to your desktop > right click on the setup.exe > run as admin.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    It comes with Vista, upgrade install and activate Forum.

    Try the Vista programs Forum:

    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/threads

    See you soon.

    Mick Murphy - Microsoft partner

  • I would like to have the best possible experience for the games on my laptop and I want to download everything that is necessary for the performance of the games.

    I bought a new laptop which has Windows 8. I heard that Windows 8 is new, it only is not automatically provided some 'things' - forgive me for my lack of knowledge in technology. I intend to play games on my new laptop, but according to my knowledge, Windows 8 does not support things like Visual C++ and Directx 9. I am very uncertain about this subject, however. If anyone understands this as am I mean, can you please correct and/or explain more on this topic? I would like to have the best possible experience for the games on my laptop and I want to download everything that is necessary for the performance of the games.

    Original title: what's missing in Windows 8?

    Jack

    We were all new at one point, so don't worry what you know.  Win 8 is compatible with all previous OS.  It supports C++, and depends on your video card supports DIrectX 9, 10 and 11.

    The only thing that doesn't come with win 8 (and since you bought it, it may already be installed) is windows media player.

    What exactly are you trying to do, or can you give us more information for we can help you better?

  • FDMEE error data import: No. periods have been identified for the loading of the data in the table "AIF_EBS_GL_BALANCES_STG".

    Hi experts,

    I tried to load the data of EBS in HFM via FDMEE.

    Importing data in the rule of loading, I have encountered an error in loading.

    2014-11-21 06:09:18, 601 INFO [AIF]: beginning of the process FDMEE, process ID: 268

    2014-11-21 06:09:18, 601 [AIF] INFO: recording of the FDMEE level: 4

    2014-11-21 06:09:18, 601 [AIF] INFO: FDMEE log file: D:\fdmee\outbox\logs\TESTING_268.log

    2014-11-21 06:09:18, 601 [AIF] INFO: user: admin

    2014-11-21 06:09:18, 601 INFO [AIF]: place: Testing_loc (Partitionkey:3)

    2014-11-21 06:09:18, 601 [AIF] INFO: name: OCT period (period key: 31/10/14 12:00 AM)

    2014-11-21 06:09:18, 601 INFO [AIF]: name of the category: real (category key: 1).

    2014-11-21 06:09:18, 601 INFO [AIF]: name rule: Testing_dlr (rule ID:8)

    2014-11-21 06:09:19, 877 [AIF] INFO: Jython Version: 2.5.1 (Release_2_5_1:6813, September 26 2009, 13:47:54)

    [JRockit (R) Oracle (Oracle Corporation)]

    2014-11-21 06:09:19, 877 INFO [AIF]: Java platform: java1.6.0_37

    2014-11-21 06:09:19, 877 INFO [AIF]: connect the file encoding: UTF-8

    2014-11-21 06:09:21, 368 [AIF] INFO: - START IMPORT STEP -

    2014-11-21 06:09:24, 544 FATAL [AIF]: error in CommData.insertImportProcessDetailsTraceback (most recent call last): File '< string >", line 2672, in insertImportProcessDetail

    RuntimeError: No periods have been identified for the loading of the data in the table 'AIF_EBS_GL_BALANCES_STG'.

    2014-11-21 06:09:24, 748 FATAL [AIF]: load balances data launch GL error

    2014-11-21 06:09:24, 752 [AIF] INFO: end process FDMEE, process ID: 268

    I found a post related to this error, but did not respond.

    I know I'm missing something, gurus please help me to overcome this error.

    ~ Thank you

    I managed to overcome this problem,

    This was caused due to an error in the map of the time.

    In the mapping of source, the name of period should be defined exactly as displayed in the EBS.

    for example: {EBS--> OCT - 14} FDMEE {mapping source--> OCT - 14}

    The names of the time must be identical.

  • What is the name of file Loader (FBL) for the loading of languages to the employee?

    What is the name of file Loader (FBL) for the loading of languages to employees?

    Hi, the best place to search for questions like these is OTN, Oracle Technology Network. If you have any questions about the CLOUDS and in partnership with Oracle, we will be more than happy to help! Thank you!

  • Collapsed bridge camera of conclusion for the loading of pictures.

    Collapsed bridge camera of conclusion for the loading of pictures. Good connection.  Low pictures load in 'Photos' in my iMac, but not on the bridge on the same computer.

    Have been loading photos in my Mark III Bridge. It worked automatically in the past.  Now "no device is found" works very well for pictures in the PC and iMac

    If you use Bridge CC please updated for the latest version of the CC bridge, see Adobe Bridge does not some devices on Mac OS 10.11

    Kind regards

    Assani

  • Cascades: How to set the background image for the menu drop down and etc...

    Hello

    Is there an easy way to set the background image for the menu drop down and etc, current support only black as a background?

    Thank you

    Tom.

    Welcome to the forums!

    This is currently not supported unfortunately.

    I encourage you to save a feature for this request:

    https://www.BlackBerry.com/JIRA/secure/dashboard.jspa

    See you soon!

    Martin

  • Paid for the subscription and is written in LK - trial version

    Paid for the subscription and is written in LK - trial version
    Number: 14.03.2016

    [personal information... [Mod - https://forums.adobe.com/docs/DOC-3731]

    [This is an open forum, not the Adobe support, please do not post personal information]

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    .

    If Yes

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    .

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • PRC: Generate Invocie project for the range of projects is generated not invoice

    Hello

    PRC: Generate invoice project for the range of projects is generated no bills for a project, but if I do the same thing to turn
    PRC: Generate invoice for a project, it generates the invoice for this project. No idea why the two processes behave differently? Please let me know.



    Thank you
    Hanuman

    Hi Harsha,

    Generate the invoice project to various projects will not pick up the project, if there are new bills. Check if the project has received all new bills.

    Build the project invoice for single project does not check this. She removes the original invoice and regenerates.

    Please see the guide to the billing of projects, page n °: 95 for more information on this kind of differences.

    I hope this helps!

    Thank you
    Raju sirot
    www.projectsaccounting.com

  • Tried to install Trend Internet Security program, error message, necessary for the installation of Visual C ++ 2005

    When installing Visual C received then Error 1935' Microsoft. VC80. Open MP type = "win32policy", processor version 8.0.50727.762 Architecture = "x 86".

    Running Windows Vista 32-bit - I'm no guru IT but can generally follow clear instructions - can anyone help?

    Hello JenMox,

    Sorry for the delay in publication.

    Look at the following information about the Error 1935.

    Step 1

    This error can occur when the Microsoft .NET Framework installation on the computer is damaged or is missing.

    Try it out below step to reinstall and repair installation of Microsoft .NET Framework on the computer, then check if you can install the software.

    (a) click the Start button, select Control Panel, click programs and then click on 'Turn Windows has or not.' If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) search for Microsoft .NET framework 3.5.1 uncheck, click OK and restart the computer.

    (c) after the reboot, open again "Turn Windows features on or off" and place a check next to Microsoft .NET framework 3.5.1 and restart the computer.

    Step 2

    If the previous step fails, then I suggest that you manually download and install Microsoft Visual C++ 2005 Redistributable Package, and check if you can install the software. Be sure to download the correct version, if your computer is 32-bit or 64-bit.

    Microsoft Visual C++ 2005 SP1 Redistributable Package (x 86)

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=200b2fd9-AE1A-4a14-984d-389c36f85647

    Microsoft Visual C++ 2005 SP1 Redistributable Package (x 64)
    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=eb4ebe2d-33c0-4A47-9dd4-b9a6d7bd44da

    I hope this helps.

    Sincerely,

    Marilyn

Maybe you are looking for

  • arrow keys not working is not for a single line on laptop

    line arrow keys do not work. How can I fix it? arrow down is equal to end of page and arrow up equal top of page. use win 7 computer acer laptop. version of firefox is unknown

  • Omni touchscreen 10 questions

    I bought a nice enough pen at Amazon, the other day and started trying to use it with the Omni 10. I was hoping that it would help the problems with the screen doesn't react don't not to touch... especially in the upper corners (closing a window in d

  • Need adapter for my Satellite Pro 6100

    My charger broke the bit that connects to the laptop itself and I need a replacement. Any standard charger will work on this subject? Found one on amazon.co.uk, but I don't know if it will be compatibleAnd nobody knows what kind of hard drive? Thanks

  • DeskJet 4480: Wireless printing

    Hello If I connect the USB cable from my deskjet 4480 to my router I will be able to print from devices on the networrk? Thank you

  • Can't access BIOS laptop Windows XP Pro system, because it is secured by an unknown administrator password.

    I bought a laptop Compaq Presario X 1000 Goodwill Industries. It has Windows XP Pro installed and is secured by an unknown administrator password. When I try to access the system BIOS at startup, it calls the administrator password and denies access.