PeopleSoft Installation: unable to login to data mover using access id.

Hi All,
I am trying to install PeopleSoft HRMS 9.0/ Oracle 10g
I have succesfully installed Oracle 10g. I have also carried out all the steps given in installation guide for running the database scripts prsent at PS_HOME\scripts\nt.
I am also able to loging to database using access id as SYSADM, but when i try to login to Data Mover in bootstrap mode using ID: SYSADM, the data mover doesn not opens, it just disappears from the window. Where as im successfullly able to login to data mover in bootstrap mode using connect id PEOPLE, and further on i was able to choose between DEMO and SYS type, and generate the DMS script. The script is still executing, and it is importing tables under the PEOPLE schema, as already mentioned in the post that PEOPLE schema should not hold any tables.
Also i have downloaded the PeopleSoft HRMS 9.0 from oracle edelivery for windows 64 bit, but my server is 32 bit. can this be the cause of the problem
Please share the the solution if aware.
Thanks in advance
Alok

in bootstrap mode using ID: SYSADM, the data mover doesn not opens, it just disappears from the window. Please, set a trace level on your client, retry and report the log over here.
Nicolas.

Similar Messages

  • Cannot login to App designer using PS id while able to login in data mover.

    Hi,
    I am installing peopletool 8.50 (HRMS). I ran all the sql scripts successfully. Ran the DMS script as well for demo database.
    When I am trying to login in App designer using PS/PS i'm getting the following error..
    File: SQL Access ManagerSQL error. Stmt #: 2 Error Position: 0 Return: 404 - ORA-01017: invalid username/password; logon denied
    while I am able to login in data mover in boot strap. Can anybody pls help me out?

    yes I am using Oracle 11g.
    and man.. thanks a lot for your help. that was really awesome post :-)
    People do say true.. here only I can find the GODs of Oracle.
    Thanks Again
    Gaurav
    Edited by: Gaurav_laconic on Mar 12, 2013 6:13 PM

  • CRM_MKTPL_CAMPTYPE data element use access error in z-table

    Hi Friends,
    I am using CRM_MKTPL_CAMPTYPE data element in my z-table for one z-field. While activating the z-table I am getting the folowing error.
    The Object Table Zxxx uses Data element CRM_MKTPL_CAMPTYPE, Package Zxxx does not have sufficient use access.
    Can anyone help me to resolve this issue.
    Thanks in advance.

    Hi Vishal,
    Thanks for your quick response.
    I added "SAI_TOOLS" in Package Interface Tab but I am getting the following error "Package interface SAI_TOOLS available already".
    I was tried with other option adding SAI_TOOLS in Use access Tab from the previous posts. But it didn't wok for my case. I think we need to add similar kind of Package Interface which is related to CRM Campaign.
    If any one face this kind of issue please respond to this post.
    Thanks.

  • Is it possible to set up Time Capsule on one network and then access its stored data (movies) using Back to My Mac from another network that also has Apple TV to play them?

    I recently purchased a Time Capsule to store data at my office.  I have an Apple TV at my home that I would like to start using to play my movies.  With the storage of the new Time Capsule, I am curious if I can somehow store my iTunes movies on the Time Capsule at my office and then use Back to My Mac to access the TC from my home and then play them via Apple TV.  Does this sound possible?  We have an iMac at the office that remains on 24/7 connected to the TC.

    ATV cannot play movies from the TC, even if it is on your home network.. ATV is a streamer.. it is not a media player.. and the TC is a dumb as a board hard disk in a router.. so it has nothing in it either.
    You cannot play movies from ATV without itunes, which streams to the ATV.
    If the iMac is running 24/7 then you should be able to connect to the iMac remotely and run from iTunes on that, which could then play movies stored on the TC.. with the following issues.. if you use wireless on the iMac forget it. The iMac has to be ethernet connected as it has to pick up the movie on the library and play it back to the TC to network to your home.
    The next issues is speed of slowest connection.
    Your download to your home maybe great.. what is the upload speed from your office like??
    If you pay for uploads and downloads you will pay for the movie 3x.. first to download it.. second to upload it.. office to net..  and third to download it again.. net to home..  Sorry but it is better to play the movie directly from online itunes store.
    If you plan to try and play non-itunes movies over the connection, it won't work.. ATV as stated is linked to itunes and cannot play movie files.
    Overall this sounds like you need to think it out a bit more.

  • Creative Cloud User - Unable to login to Story Plus and access my stuff.

    I was in story plus all day yesterday. My account is up to date. Now I am redirected to upon login to Story Free, even when I go to the adobe story plus page and click the login button. Help!

    Hi,
    please clear your browser cache and try to login again.
    If this does not work, please send a mail to AdobeStory-Support at adobe dot com mentioning the id you are using to login in to Story. We will check the details from the backend and try to solve the issue.
    Thanks
    Aurobinda

  • Unable to Decrypt the data properly using javax.crypto class and SunJCE

    Hello all,
    I am not new to Java but new to this forums
    but and JCE and i wanted to write a program that Encrypts a file and also another program that decrypts it. As far Encryption is concerned i have been successful but When it comes to Decryption things aren't looking bright i have some or the other Problem with it. plz help me out .
    Here is the Code for my Programs
    Encryption
    Code:
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.SecretKeySpec;
    import java.security.*;
    import javax.swing.*;
    class MyJCE
    public static void main(String args[])throws Exception
    Provider sunjce = new com.sun.crypto.provider.SunJCE();
    Security.addProvider(sunjce);
    JFileChooser jfc = new JFileChooser();
    int selection= jfc.showOpenDialog(null);
    if(selection==JFileChooser.APPROVE_OPTION)
    FileInputStream fis = new FileInputStream(jfc.getSelectedFile());
    System.out.println("Selected file " + jfc.getSelectedFile());
    try{
    KeyGenerator kg = KeyGenerator.getInstance("DESede");
    SecretKey key= kg.generateKey();
    byte[] mkey=key.getEncoded();
    System.out.println(key);
    SecretKeySpec skey = new SecretKeySpec(mkey, "DESede");
    Cipher cipher=Cipher.getInstance("DESede/ECB/NoPadding");
    cipher.init(Cipher.ENCRYPT_MODE,skey);
    byte[] data= new byte[fis.available()];
    //reading the file into data byte array
    byte[] result= cipher.update(data);
    byte[] enc= new byte [fis.read(result)];
    System.out.println("Encrypted =" + result);
    File fi= new File("/home/srikar/Encrypted");
    FileOutputStream fos= new FileOutputStream(fi);
    fos.write(enc);
    fos.close();
    byte[] encodedSpeckey = skey.getEncoded();
    FileOutputStream ks= new FileOutputStream("./key.txt");
    ks.write(encodedSpeckey);
    System.out.println("Key written to a file");
    }//try
    catch(Exception ex)
    ex.printStackTrace();
    }//catch
    }This Creates a Encrypted File. and a Encrypted key.txt
    Code:
    import java.io.*;
    import javax.crypto.*;
    import javax.crypto.spec.SecretKeySpec;
    import java.security.*;
    import javax.swing.*;
    class Decrypt
    public static void main(String[] args)
    try
    JFileChooser jfc = new JFileChooser();
    int selection= jfc.showOpenDialog(null);
    if(selection==JFileChooser.APPROVE_OPTION)
    FileInputStream fis = new FileInputStream(jfc.getSelectedFile());
    System.out.println("Selected file " + jfc.getSelectedFile());
    //Read from the Encrypted Data
    int ll= (int)jfc.getSelectedFile().length();
    byte[] buffer = new byte[ll];
    int bytesRead=fis.read(buffer);
    byte[] data= new byte[bytesRead];
    System.arraycopy(buffer,0,data,0,bytesRead);
    //Read the Cipher Settings
    FileInputStream rkey= new FileInputStream("./key.txt");
    bytesRead = rkey.read(buffer);
    byte[] encodedKeySpec=new byte[bytesRead];
    System.arraycopy(buffer,0,encodedKeySpec,0,bytesRead);
    //Recreate the Secret Symmetric Key
    SecretKeySpec skeySpec= new SecretKeySpec(encodedKeySpec,"DESede");
    //create the cipher for Decrypting
    Cipher cipher = Cipher.getInstance("DESede/ECB/NoPadding");
    cipher.init(Cipher.DECRYPT_MODE,skeySpec);
    byte[] decrypted= cipher.update(data);
    FileOutputStream fos= new FileOutputStream("/home/srikar/Decrypted");
    fos.write(decrypted);
    }//if
    }//try
    catch(Exception e)
    e.printStackTrace();
    }//catch
    }//main
    }//classthis Decrypt.java is expected to decrypt the above encrypted file but this simply creates a plaintext file of the same size as the Encrypted file but its contents are unreadable.
    Or I endup with Exceptions like BadPadding or IllegalBlockSize Exception if i use any other Algorithm .
    Please help out
    thanx in advance

    Srikar2871 wrote:
    Well thanx for ur reply but
    As i said there are No issues with ENCRYPTION and am getting an Encrypted file exactly of the same size as that of the original file and NOT as null bytes and Even am able to get a Decrypted file of again the same size of the Encrypted File but this time that data inside is in unreadable format.I ran your code EXACTLY* as posted and the contents of the file when viewed in a Hex editor was
    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00So unless you are running different code to what you have posted, your file will look the same.
    Cheers,
    Shane

  • Unable to login to Server 2003 using adminitrator domain account

    We were not able to login to a domain server with server 2003 using a Domain Admin account. We were able to log in using a Local Admin account. We tried dropping and re-adding the server to the domain, but still had the same issue. After logging in using
    the Local Admin account we created a new SID using sysinternals. This seemed to work, but the next day after a server reboot, we encountered that issue again. Any ideas why this is happening and why creating a new SID seems to fix the issue until a reboot?

    Try adding Domain Admins to local administrators group.
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Unable To Login To Forums/Wiki Using BlackBerry (Browser)

    Native, Firefox, or Internet Explorer emulation modes. Anyone else experience the same?

    Yes: I assumed (and still wouldn't rule out) that it is the restrictive security policies that my work implements on the BB server.

  • Unable to create Temp table in Data mover

    Hi dudes,
    i tried to create a Temp table in Datamover but could not. i have tried to run it in user mode as well as bootstrap mode, even though not get success. i have added my sample datamover script, please go through the scripts and notice my error.
    SET LOG D:\PT851\log\test1537.log;
    SET NO DATA;
    SET NO TRACE;
    CREATE_TEMP_TABLE test1537DB;
    SET OUTPUT D:\PT851\test1537.out;
    EXPORT test1537DB;
    and my error is,
    Error Message:- PeopleTools 8.51 - Data Mover Copyright (c) 2012 PeopleSoft, Inc. All Rights Reserved Started: Sun Dec 23 02:57:24 2012 **** PeopleSoft trace has been turned off Data Mover Release: 8.51 Database: C91TST (ENG) Ended: Sun Dec 23 02:57:24 2012 **** PeopleSoft trace has been turned back on Unsuccessful completion

    Is the record definition test1537DB existing?

  • Peoplesoft setup - unable to launch Data Mover

    Hello,
    Background info:
    Peopletools 8.53
    FSCM 9.1
    Oracle Database 11.2.0.3
    Windows 7 64-bit
    Oracle Linux 6.3 64-bit (on a virtual machine)
    Demo database
    I am doing a PeopleSoft installation for the first time. I have installed all the necessary components on my Windows machine and the Linux VM on it. I've created the demo database and when I try to launch Data Mover, I get the following error:
    File: SQL Access ManagerSQL error. Stmt #: 2 Error Position: 0 Return: 12154 - ORA-12154: TNS:could not resolve the connect identifier specified
    I do have an entry for the database in tnsnames.ora. The listener is running and I can tnsping the database. Any ideas?
    Thanks,
    Maya

    SERVICE_NAME = PST didn't work either
    lsnrctl status results:
    [oracle@localhost ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 21-FEB-2013 09:46:02
    Copyright (c) 1991, 2011, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost.localdomain)(PORT=1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                21-FEB-2013 08:29:22
    Uptime                    0 days 1 hr. 16 min. 39 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)))
    Services Summary...
    Service "ORCL.localdomain" has 1 instance(s).
      Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
    Service "ORCLXDB" has 1 instance(s).
      Instance "PST", status READY, has 1 handler(s) for this service...
    Service "PST" has 1 instance(s).
      Instance "PST", status READY, has 1 handler(s) for this service...
    Service "PST.localdomain" has 1 instance(s).
      Instance "PST", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully-Maya

  • PI 7.3 - AEX "unable to read configuration data" and login problems

    Hello Friends,
    after installation of AEX, i'm facing some problems.
    1.I'm not able to login with any user, i created during installation wizard. So i cannot check any user in NWA -> User Administration.
    2.Once more, while opening http://<host>:<port>/rep or http://<host>:<port>/dir, i get the following error message.
    Can somebody help me?
    I think, there is a problem with the users, which have been created during installation. How can i check this? Is there any chance?
    Second, if i'm able to login, i have to import the exchange profile again. This should solve the problem. Or is this wrong?
    PI (http://<host>:<port>/dir/start/index.jsp). Below is the part of the error message that is showing up. Appreciate your suggestions:
    Exception class: com.sap.aii.utilxi.prop.api.PropertiesException$InitFailed
    Message
    Unable to read configuration data (ExchangeProfile/aii.properties)
    Stacktrace
    Thrown:
    com.sap.aii.utilxi.prop.api.PropertiesException$InitFailed: Unable to read configuration data (ExchangeProfile/aii.properties)
    at com.sap.aii.utilxi.prop.api.PropertySourceFactory.initServerMode(PropertySourceFactory.java:220)
    at com.sap.aii.utilxi.prop.api.AIIProperties.initServerMode(AIIProperties.java:518)
    at com.sap.aii.ib.server.applcomp.StartupServerProperties.initPropertiesForServer(StartupServerProperties.java:97)
    at com.sap.aii.ibdir.server.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:151)
    at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:43)
    at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
    at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:438)
    at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:203)
    Please let me know if I am not clear.
    Edited by: Clarence on Feb 6, 2012 3:28 PM
    Edited by: Clarence on Feb 6, 2012 3:28 PM

    hi,
    >>>>Second, if i'm able to login, i have to import the exchange profile again. This should solve the problem. Or is this wrong?
    if you have java stack only there is no exchange profile anymore...
    https://weblogs.sdn.sap.com/pub/wlg/28334
    Regards,
    Michal Krawczyk

  • Data Mover login error (SQL 2008R2 as backend DB)

    Hi,
    This question was asked in this thread -> Continued Discussion - Steps to Upgrade PT8.49 to 8.50 Manually
    The difference between problem in that thread and mine is that I have WIN08R2 SQL08R2 Peopletools9.52 and Peoplesoft HRMS 9.0 installed. I was on the steps of creating the databases manually with the sql scripts and that was also preformed.
    I also have different ConnectID: people and AccessID: peoplesa with respective passwords. I try login in with the AccessID and I get the below error.
    File: SQL Access ManagerSQL error. Stmt #: 2 Error Position: 0 Return: 8077 - Invalid SNAC client version (minimum is 10.00.1763) (SQLSTATE PS077)
    Any suggestions?
    -Vishal

    Hi there,
    I upgraded the SNAC client to 1033\x64\sqlncli.msi from the Microsoft and still I get the same Login error in the DataMover.
    I checked the registry location --> HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server Native Client 10.0\Current Version = 10.51.2500.0
    The Data Mover login error says that it requires minimum is 10.00.1763 so i guess the one I have should work fine?
    Any suggestions?
    -Vishal

  • After installed DMO of Campus, installing SYS , data mover don't show PeopleSoft HRCS Database

    Hello  every one, I've made the installation of PeopleSoft Campus (DMO) instance and it's running right now. After that I began the installation of the SYS instance, using the same servers: Oracle Linux (database), Oracle Linux (Application Server), Windows Server (1 machine) for Installation & Crystal Reports.
    I created a new database named HRMS9SYS without errors.
    Now its time to work with Data Mover. The first task is to use de database Wizard.
    Select target database ORACLE
    database type    UNICODE
    character set AL32UTF8
    And in the next step Peoplesoft Applications to Add
    I can only see People Tools System Database US-English
    ¿Can someone explain why there is not PeopleSoft HRCS Database - English and PeopleSoft HRCS Database - Spanish?
    Theese are the same files with wich I installed the DMO instance...

    Yagu,
    1) Be sure the PS_APP_HOME variable is pointing to the right directory where HCM has been installed (check within ConfManager/Profile (Default)/Edit/ProcessScheduler tab).
    2) Be sure you checked the "Peoplesoft HCM Database" checkbox during the application installation. Open the log file HCM_InstallLog.log in the directory where you installed the application.
    You may have something like this:
    CHOSEN_FEATURE_LIST=PeopleSoft HCM Demo Database
    CHOSEN_INSTALL_FEATURE_LIST=PeopleSoft HCM Demo Database
    CHOSEN_INSTALL_SET=
    => this means only Demo is installed and you cannot go for something else (except for Peopletools system database which you don't want).
    If you have a long list of features, be sure there is something like this :
    CHOSEN_FEATURE_LIST=PeopleSoft Absence Management,<...snipped for reading, this is the list of the features you checked when installing HCM...>,PeopleSoft HCM Demo Database,PeopleSoft HCM Database
    CHOSEN_INSTALL_FEATURE_LIST=PeopleSoft Absence Management,<...snipped for reading, this is the list of the features you checked when installing HCM...>,PeopleSoft HCM Demo Database,PeopleSoft HCM Database
    CHOSEN_INSTALL_SET=PT
    I tested it, if PeopleSoft HCM Database is unchecked during installation (and consequenty not in the feature list in the logfile), there's no option to install a SYS database later on.
    If this is the case, you may want to reinstall the appl in the same directory. I do not think it will hurt.
    HTH,
    Nicolas.

  • Unable to login to apex as admin after apparent successful installation

    I am unable to login to apex as admin after an apparent successful installation.
    I have an existing Oracle database 11.2.0.1.0 with Oracle Text running on Windows 7 Professional with hundreds of gigabytes of free disk space available. I did everything as an operating system user with administrator privileges. I downloaded the latest version of apex 4.0.2 for all languages, unzipped the downloaded zip file, extracting all files to an apex directory. I changed the working directory to apex and started sql*plus, connected sys as sysdba, ran apexins.sql installation, apex_epg_config.sql and apexconf.sql configuration, apexchpwd.sql to change the admin password, and apxldimg.sql to copy the images, and exec dbms_xdb.sethttpport(8080), unlocked accounts, and granted connect privileges.
    The installation log did not show any errors and included:
    "Thank you for installing Oracle Application Express.
    Oracle Application Express is installed in the APEX_040000 schema.
    The structure of the link to the Application Express administration services is as follows:
    http://host:port/pls/apex/apex_admin (Oracle HTTP Server with mod_plsql)
    http://host:port/apex/apex_admin (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    The structure of the link to the Application Express development interface is as follows:
    http://host:port/pls/apex (Oracle HTTP Server with mod_plsql)
    http://host:port/apex (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    JOB_QUEUE_PROCESSES: 1000"
    When I use either browser, Firefox 3.6.12 or Internet Explorer 8.0, and go to http://localhost:8080/apex/apex_admin I get a screen that says:
    "Enter Application Express internal administration credentials"
    and has boxes for a username and password. When I enter admin and the admin_password that I selected, then click on login nothing happens. I don't get logged in. I don't get an error message. It does not show any signs of anything running. It just sits there. I also don't get any messages from Windows or Norton 360 indicating that a pop-up window was blocked or any such thing. I checked that the services are running and also tried shutting down the computer and re-starting (cold boot), but was still unable to login.
    I am a retired developer, not a DBA, so if there is anything else that I should do or check or provide, then please let me know. I have provided a copy and paste of everything that I could think of below. Oddly I don't see an admin user.
    SQL> select * from v$version
      2  /
    BANNER                                                                         
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production   
    PL/SQL Release 11.2.0.1.0 - Production                                         
    CORE     11.2.0.1.0     Production                                                     
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production                        
    NLSRTL Version 11.2.0.1.0 - Production                                         
    SQL> select status from dba_registry where comp_id = 'APEX'
      2  /
    STATUS                                                                         
    VALID                                                                          
    SQL> select username, account_status
      2  from   dba_users
      3  where  username = 'ANONYMOUS'
      4  or     username like 'APEX%'
      5  or     upper (username) = 'ADMIN'
      6  order  by username
      7  /
    USERNAME                       ACCOUNT_STATUS                                  
    ANONYMOUS                      EXPIRED                                         
    APEX_030200                    EXPIRED                                         
    APEX_040000                    OPEN                                            
    APEX_PUBLIC_USER               OPEN                                            
    SQL> select dbms_xdb.gethttpport from dual
      2  /
    GETHTTPPORT                                                                    
           8080                                                                    
    SQL> select owa_util.get_version from dual
      2  /
    GET_VERSION                                                                    
    10.1.2.0.8                                                                     
    SQL> show parameter memory_target
    NAME                                 TYPE        VALUE                         
    memory_target                        big integer 1536M                         
    SQL>

    Are you sure you did give right path to script ? Yes.
    >
    If you extract files to folder c:\temp, you have after that folder c:\temp\apex and bunch of sub folders.
    For script to update images, you give path to folder where you did extract apex install files.
    In above case that is then c:\temp .
    >I created a directory c:\apex on my laptop. I downloaded the zip file to that directory. When I extracted the files to folder c:\apex, the result was c:\apex\apex with a bunch of sub folders and files. When I ran the script, I gave the path c:\apex as indicated in my copy and paste. So, I did everything the same as in the quote above, except that I used apex instead of temp.
    Try extract Apex install zip to c:\temp and give c:\temp as path for scriptAre you suggesting that I redo the entire installation using c:\temp instead of c:\apex? What difference would that make? Would I need to do some sort of uninstall first?

  • 11g Client installation errror - Unable to construct admin data&Invalid UTF

    I am trying to install Oracle 11g Client on Windows 7 (version is Oracle Database 11g Release 2 Client (11.2.0.1.0) for Microsoft Windows (32-bit)). I already have installed Oracle 10g Client and it is working without problem. I read few articles that say it can be used simultaneously on single machine.
    I get following error:
    "ERROR!! Unable to construct admin data segment. java.io.UTFDataFormatException:Invalid UTF8 encoding."
    I have full admin rights on machine, Windows is updated and latest Java is installed. Searched all over the net but can't find what could be the problem.
    Thank you in advance.

    This may be helpfull:
    http://download.oracle.com/javase/1.4.2/docs/api/java/lang/class-use/Exception.html
    its look like you have a problem with java
    Edited by: Fran on 12-jul-2011 5:02

Maybe you are looking for