Key not available

I have a use case where I have a child table with a foreign key from the master table, and the key is being generated from a sequence.
And I have to insert data into the child table ,before I insert in the master table.So how do I insert the foreign key?

User,
If you are using ADF BC and your requirement is to insert records into master and detail at the same time, you can provide a groovy expression to generate and assign the sequence number to the primary key field of master VO
Eg.
(new oracle.jbo.server.SequenceImpl("<Sequence_Name>",viewObject.getDBTransaction())).sequenceNumberSireesha
Edited by: Sireesha Pinninti on Mar 1, 2010 2:11 AM

Similar Messages

  • Primary key not available

    Hi!
    When i run my appication client to connect to Oracle9i database i have a next exception:
    javax.ejb.CreateException: java.lang.IllegalStateException: Primary key not available.
    In Oracle i set a primary key field ID.
    Here is my code:
    /* Generated by Together */
    package ejb;
    import javax.ejb.EntityBean;
    import javax.ejb.EntityContext;
    import javax.ejb.EJBException;
    import javax.ejb.CreateException;
    import java.sql.SQLException;
    import java.sql.Connection;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import java.sql.PreparedStatement;
    import javax.ejb.NoSuchEntityException;
    import java.sql.ResultSet;
    import javax.ejb.DuplicateKeyException;
    import javax.ejb.RemoveException;
    import java.util.Collection;
    import java.util.ArrayList;
    import javax.ejb.FinderException;
    import javax.sql.DataSource;
    import java.lang.Integer;
    import java.lang.String;
    import java.rmi.RemoteException;
    import javax.sql.*;
    import java.sql.DriverManager;
    public class TestingBean implements EntityBean {
    private EntityContext ctx;
    public Integer userID;
    public String userLogin;
    public String userPassword;
    public String userPrivilege;
    static private final String users_res_ref = "jdbc/Oracle";
    public void setEntityContext(EntityContext context) throws EJBException {
    System.out.println("EntityContext before = " + ctx);
    ctx = context;
    System.out.println("EntityContext after = " + ctx);
    public void unsetEntityContext() throws EJBException {
    ctx = null;
    public void ejbActivate() throws EJBException {
    public void ejbPassivate() throws EJBException {
    public void ejbRemove() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    userID = (Integer)ctx.getPrimaryKey();
    ps = con.prepareStatement("DELETE FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    if (!(ps.executeUpdate() > 0)) {
    throw new RemoveException ("ejbLoad: Can't remove user - " + userID);
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbStore() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("UPDATE TLogon SET Login = ?, Password = ?, Privilege = ? WHERE Id = ?");
    ps.setString(1, userLogin);
    ps.setString(2, userPassword);
    ps.setString(3, userPrivilege);
    ps.setInt(4, userID.intValue());
    ps.executeUpdate();
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbLoad() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    userID = (Integer)ctx.getPrimaryKey();
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    userLogin = rs.getString("Login");
    userPassword = rs.getString("Password");
    userPrivilege = rs.getString("Privilege");
    catch (Exception e) {
    throw new EJBException("ejbLoad: Can't load user - " + userID);
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
    System.out.println("Inititialization parameters...");
    this.userID = aUserID;
    this.userLogin = aUserLogin;
    this.userPassword = aUserPassword;
    this.userPrivilege = aUserPrivilege;
    System.out.println("Setting connection to null...");
    Connection con = null;
    PreparedStatement ps = null;
    try {           
    System.out.println("Getting connection...");
    con = getConnection();
    System.out.println("EntityContext before getting primary key... = " + ctx);
    System.out.println("Getting primary key...");
    userID = (Integer)ctx.getPrimaryKey();
    System.out.println("Primary key is done...");
    ps = con.prepareStatement("INSERT INTO TLogon (Id, Login, Password, Privilege) VALUES (?,?,?)");
    System.out.println("Inserting data...");
    ps.setInt(1, userID.intValue());
    ps.setString(2, userLogin);
    ps.setString(3, userPassword);
    ps.setString(4, userPrivilege);
    ps.executeUpdate();
    return aUserID;
    catch (Exception e) {
    throw new CreateException(e.toString());
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbFindByPrimaryKey(java.lang.Integer pk) throws FinderException, EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, pk.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    return pk;
    catch(Exception e) {
    throw new FinderException (e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbPostCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
              /* Write your code here */
    public Collection ejbFindAllUsers() throws EJBException, FinderException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id FROM TLogon");
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    ArrayList v = new ArrayList();
    Integer pk;
    while(rs.next()) {
    pk = new Integer(rs.getInt(1));
    v.add(pk);
    return v;
    catch(Exception e) {
    throw new FinderException(e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public Integer getUserID() throws RemoteException, EJBException {return userID;}
    public void setUserID(Integer param) throws RemoteException, EJBException {this.userID = param;}
    public String getUserLogin() throws RemoteException, EJBException {return userLogin;}
    public void setUserLogin(String param) throws RemoteException, EJBException {this.userLogin = param;}
    public String getUserPassword() throws RemoteException, EJBException {return userPassword;}
    public void setUserPassword(String param) throws RemoteException, EJBException {this.userPassword = param;}
    public String getUserPrivilege() throws RemoteException, EJBException {return userPrivilege;}
    public void setUserPrivilege(String param) throws RemoteException, EJBException {this.userPrivilege = param;}
    private Connection getConnection() throws SQLException {
    InitialContext initCtx = null;
    try {
    initCtx = new InitialContext();
    DataSource ds = (javax.sql.DataSource)initCtx.lookup("java:comp/env/" + users_res_ref);
    return ds.getConnection();
    catch (Exception e) {
    throw new EJBException(e);
    private void closeStatement(PreparedStatement ps) {
    try {
    if (ps != null) {ps.close();}
    catch (Exception e) {
    throw new EJBException(e);
    private void closeConnection(Connection con) {
    try {
    if(con != null) {con.close();}
    catch(Exception e) {
    throw new EJBException(e);
    What i do wrong?
    Please help!!!!

    Very BIG thank you!!!!
    That's right, but i must delete this method only in ejbCreate?
    And i have a next exception: java.sql.SQLException: ORA-00947: not enough values. Why?
    Here is my code db:
    CREATE TABLE "SYSTEM"."TLOGON" ("ID" NUMBER(20) NOT NULL, "LOGIN"
    VARCHAR2(20 byte) NOT NULL, "PASSWORD" VARCHAR2(20 byte) NOT
    NULL, "PRIVILEGE" VARCHAR2(20 byte) NOT NULL,
    CONSTRAINT "ID" PRIMARY KEY("ID")
    USING INDEX
    TABLESPACE "SYSTEM"
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS
    2147483645 PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    PCTFREE 10 INITRANS 2 MAXTRANS 255)
    TABLESPACE "SYSTEM" PCTFREE 10 PCTUSED 40 INITRANS 1
    MAXTRANS 255
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS 249
    PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    LOGGING
    And my client:
    package ejb.client;
    import javax.naming.Context;
    import javax.rmi.PortableRemoteObject;
    import ejb.TestingHome;
    import ejb.Testing;
    import java.util.Collection;
    import java.rmi.RemoteException;
    import javax.ejb.FinderException;
    import javax.naming.InitialContext;
    public class TestingClient {
    public static void main(String []args) {
    try {
    System.out.println("Step #1");
    Context initial = new InitialContext();
    System.out.println("Step #2");
    Object objref = initial.lookup("java:comp/env/ejb/SimpleTesting");
    System.out.println("Step #3");
    ejb.TestingHome home = (ejb.TestingHome)PortableRemoteObject.narrow(objref, ejb.TestingHome.class);
    System.out.println("Step #4");
    ejb.Testing aTesting;
    for(int i = 0; i < 3; i++) {
    String login = users[0];
    String password = users[i][1];
    String privilege = users[i][2];
    System.out.println("Adding user..." + login + "\n" + password + "\n" + privilege);
    home.create(new Integer(i+1), login, password, privilege);
    Integer i = new Integer(2);
    home.create(i, "Zatoka", "password", "admin");
    catch(Exception e) {
    e.printStackTrace();
    //private static String JNDI = "ejb.TestingHome";
    private final static String[][] users = {{"Zatoka","*****","admin"}, {"Ivanov","234fds","user"},{"Petrov","dcd2","user"}};
    BIG thanks!!!

  • Security Question - Public Key not available

    Hello! I am trying to access some online class, but I'm having difficulty accessing them. I tried looking at the log and I found this:
    4/11/14 3:59:23.215 PM secd[235]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Can I have any help/clue in order for this to stop? If it helps, I tried doing this in AKO (military).
    Thanks!

    Thanks Mark M - That was the issue.
    Of all the documentation in books and online i saw, basically say:
    --Create a page, give it alias PUBLIC_PAGE
    --At the page level,  set it to "page is public"
    --Change the logout URL in authentication template to redirect to the new page
    The fourth step i guess is to make sure your app level authorization is set appropriately as well.
    Thanks again.

  • Plus & minus keys not available in address panel

    I just started using Mac mail and was able to add new addresses to the address panel, but lately the plus and minus signs are not available in the address panel window. How do I get them back? Thanks.

    Hello, and welcome to the Discussions.
    What address panel? In Mail you can add the address of a sender of and email via a command, but to otherwise add an address in the Addressbook, you must open the separate Addressbook application. The panel of AB reached from within Mail only support getting an address that is already in the AB.
    Ernie

  • Registration Key not available in Zenworks Adaptive Agent

    No "registration key" is visible in Zenworks Adaptive Agent - Agent - Registration Keys.
    The device is managed and imported in the correct folder on the server side and all assigned bundles and policies are applied and working. But i need a way to see which Registration Key a workstation is registered with, from within client. The keys is visible right after a new registration but if a new image is restored on the workstation everything is ok except the Registration Key. Any ideas ?
    Workstation:
    Windows 7 Enterprise 64-bit, without SP1
    Novell Client 2 SP1
    ZENworks Endpoint Securty Agent version: 11.0.0.427
    Agent Status:
    Bundle Management 11.0.0.40588 Running
    Image Management 11.0.0.38897 Running
    Inventory Management 11.0.0.40407 Running
    Policy Management 11.0.0.39203 Running
    Remote Management 11.0.0.37147 Running
    User Management 11.0.0.41084 Running
    Server:
    ZCM Version 11.0.0.0
    ZAM Version 11.0.0.41090
    ZPM Version 11.0.0.50
    ZESM Version 11.0.0.40872

    jimbjorklund,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Pagedown key not available in Windows98?

    We trying to run Dev 6.0 on a windows 98 client. The pagedown
    key no longer works either as scroll down or next block with
    Control+pagedown. I have tried to add it using oracle terminal,
    but get errors on the word 'PageDown'. I called in a TAR on
    this issue and was told a new bug had been created on this (Bug#
    880351). I was told that it was not a priority 1 issue and
    should not expect a fix anytime soon.
    I don't understand how this is possible. PageDown and
    Control+Pagedown have been the default scroll down and next
    block keystrokes for years on the Windows & Dos platforms.
    Someone must have run across this during testing and come up
    with a workaround. I assume I'm not the first person to try to
    use the PageDown key in Dev 6.0.
    I tried using the frmusw.res file from the beta CD. This did
    not work either.
    If anyone is using 6.0 in windows98 and has the pagedown key
    working can you let me know?
    Thanks
    null

    Bill Carrick (guest) wrote:
    : We trying to run Dev 6.0 on a windows 98 client. The pagedown
    : key no longer works either as scroll down or next block with
    : Control+pagedown. I have tried to add it using oracle
    terminal,
    : but get errors on the word 'PageDown'. I called in a TAR on
    : this issue and was told a new bug had been created on this
    (Bug#
    : 880351). I was told that it was not a priority 1 issue and
    : should not expect a fix anytime soon.
    : I don't understand how this is possible. PageDown and
    : Control+Pagedown have been the default scroll down and next
    : block keystrokes for years on the Windows & Dos platforms.
    : Someone must have run across this during testing and come up
    : with a workaround. I assume I'm not the first person to try
    to
    : use the PageDown key in Dev 6.0.
    : I tried using the frmusw.res file from the beta CD. This did
    : not work either.
    : If anyone is using 6.0 in windows98 and has the pagedown key
    : working can you let me know?
    : Thanks
    This is NOT a Win 98 problem it's general and in production also.
    They 'forgot' the keys !!! Support told me this is to be fixed
    in 6.0.6. They also forgot to deliver Oracle Terminal with which
    you could correct the problem. More than sad. BTW are they
    really doing tests ?
    Frank
    null

  • Menu key not available on app

    New owner of S5 after having S3. Notice that the menu key brings up loaded apps not the menu for the app what the s3 home key did when held down. Lot of apps don't have the new style menu.

    tangerine wrote:
    OK, so when you press the unlock icon that has flashed up, does the phone not select the homescreen?
    Yes, it does. I have an update though. I left the phone switched off all night and when I restarted it this morning the button is working again! Very confusing as I restarted it countless times yesterday after the problem first emerged.
    However, I now have another problem with the unit though where the battery is only lasting about 4 hours. There is an incredible amount of heat on the back of the phone.
    I will post it as a new thread....
    Ilove nokias but they do have a habit of behaving like this. Frustrating.

  • Product Key Not Available

    I was able to successfully download the Visio Premium 2010 60 day trial software. However, the Product Key information stated: "Please refresh your browser (F5) to receive your key". Nothing happened when
    I refreshed, and I continued to receive the same message. I cannot use the software without the Product Key. Any thoughts on how to resolve this issue?
    Thanks!

    Hi,
    We can try clearing the Temporary Internet Files and Cookies in IE to try again.
    Open Internet Explorer, Internet Options, under
    General tab, click Delete button, select the checkboxes of
    Temporary Internet files and website files and Cookies and website data, click
    Delete button.
    Another way, simply go back and re-register your account, see if this time the product key will come up on the download page.
    Hopefully it can be helpful.
    Regards,
    Melon Chen
    TechNet Community Support

  • Error while signing data-Private key or certificate of signer not available

    Hello All,
    I am new to PI.  I am currently stuck with an issue. The scenario is as explained below.
    We need to check for the service availability before processing the data. So, we test for the RFC connection first from the ECC system. During this process, we access the digital certificate stored in the PI system so that it can be validated and allowed to consume this intended service.
    Error :
    When we trigger the RFC test from the  ECC system, we get an error stating ' Error while signing data -  Private key or certificate of signer not available '. But when we test the same functionality within PI system(Locally), we does not encounter any such error. The certificate is maintained and it appears fine.
    The communication channels are stored with logon credentials.
    Can anyone please help me with this error or provide your valuable inputs. Thanks in advance.
    Regards,
    Shivkumar

    Hello,
    When we trigger the RFC test from the ECC system, we get an error stating ' Error while signing data - Private key or certificate of signer not available '.
    This should be normal behavior since the certificates are not installed in ECC SSL folders of Strust. Why not just install the certificates in the ECC system, perform an ICM restart and do a retest? After all, the certificates would both be the same in PI and ECC.
    Hope this helps,
    Mark

  • How to populate the Language Key description is not available

    Hi,
    Question: How to populate the Language Key description is not available in the Customer text table
    The problem is ;
    Customer no : 0012345
    For this Customer no description is maintained only in EN, JA ,FR from R3 side.
    EN : HP International Ltd
    JP:HP &#12398;&#22269;&#38555;&#30340;&#12394;&#26666;&#24335;&#20250;&#31038;
    FR: Ltd International de HP
    There is no value for Language ES.
    BW side:
    User is login into language Key ES and executing the report based on this Customer no. There is no Customer text value maintained in language Key ES. It should populate the text value empty. BW system - Language ES is installed.
    I have a Reporting requirement is - I need to populate the text value for this customer No: HP International Ltd when the user login to language Key ES and execute his reports.
    /BI0/TCUSTOMER – Customer text table – I am able to see the description for the EN, JP, FR text values.
    EN: HP International Ltd
    JP: HP &#12398;&#22269;&#38555;&#30340;&#12394;&#26666;&#24335;&#20250;&#31038;
    FR: Ltd International de HP
    If the Customer text is not available in the text table of customer for language key ES - I have to populate the any one of the existing customer text values into the language key ES - example
    0012345 ES  HP International Ltd
    Simplest solution if we maintained ES customer description in R/3 should be ok.
    Is their any other logic which I can implement in BW.

    Hi,
    If you are opting to load Customer Text, there are two options:
    1. R/3 maintained.
    2. Generic Extraction using Flat Files.
    Hope it helps..
    Regards,
    GPK.

  • Key figures are not available when i performing LBWE action

    Hi gurus,
      I am trying to load 2lis_02_hdr, 2lis_02_itm and 2lis_02_scl to infocube 0pur_c04.
    But whatever the key figures available in the cube its not appear in the R/3 side data Source.. but those keyfigures are available in LIS structure.. for that how can i bring those key figures to dataSource for using LO Cockpit..
    I heard we need to perform some prerequistes in SBIW.. let me know in breif with step by step..
    Full points will assign to all those reply my query early..
    Please let me know if not understand my query..
    Thanks in Advance

    Hello Sudheer
    2LIS_02_HDR, ITM and SCL do not take data from S011 but directly from transactionnal tables like EBEP, EBKO, EBPO (names quoted from memory).
    So you have to look for the key figures from those tables and not the one in S011.
    Historically, the three datasource were built to replace 2LIS_02_S011 but the calculations to rebuild the keyfigures were delivered in BW in an old BCT that made the conversions. The logic and modeling have changed completely.
    If you really need to transfer S011 to BW without remodelling the data, you may want to use a generic extractor based on S011 (provided you have a delta key available).
    Otherwise, in SBIW, Options for datasource specific to the application, Logistics, purchasing, you have two customizing transactions. you have to define branch and process key to load data into BW. But that will not have any effect to LBWE.
    Hope this helps.
    Regards
    Fabrice

  • PPTP "MPPE required, but keys are not available"

    Dear all
    Since last reboot of my server I got following errormessage in VPN Logfile when user tries to connect to the server trough PPTP:
    MPPE required, but keys are not available. Possible plugin problem?
    Anyone have an idea, what could be wrong ?
    May as another information: After restart of the server I had problem, that VPN Server was not started, because the L2TP definitions where not correct... Logfile told me. So I have redefined the PPTP and L2TP setting, but disabled the L2TP login, because I have definied this "only" for test purposes. All definitions where made with Server Administrator.
    Before restart of Server Login trough PPTP was working quite well...
    I forgott to say, that the Server (Leopard 10.5.1) is an OD Master, which is working quite well (until now). The authentication type for PPTP is set to MS-CHAP (Kerberos is grayed out, I don't know why)
    Cheers Daniel
    Message was edited by: Daniel Lang

    Here I have now some logfiles from vpnd... may this helps to see the problem I have overseen:
    Wed Dec 12 02:21:21 2007 : Directory Services Authentication plugin initialized
    Wed Dec 12 02:21:21 2007 : Directory Services Authorization plugin initialized
    Wed Dec 12 02:21:21 2007 : PPTP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Dec 12 02:21:21 2007 : PPTP connection established.
    Wed Dec 12 02:21:21 2007 : using link 0
    Wed Dec 12 02:21:21 2007 : Using interface ppp0
    Wed Dec 12 02:21:21 2007 : Connect: ppp0 <--> socket[34:17]
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:21 2007 : rcvd [LCP ConfReq id=0x0 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp> <callback CBCP>]
    Wed Dec 12 02:21:21 2007 : lcp_reqci: rcvd unknown option 13
    Wed Dec 12 02:21:21 2007 : lcp_reqci: returning CONFREJ.
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfRej id=0x0 <callback CBCP>]
    Wed Dec 12 02:21:21 2007 : rcvd [LCP ConfReq id=0x1 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp>]
    Wed Dec 12 02:21:21 2007 : lcp_reqci: returning CONFACK.
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfAck id=0x1 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : sent [LCP EchoReq id=0x0 magic=0x5045e9f1]
    Wed Dec 12 02:21:24 2007 : sent [CHAP Challenge id=0x82 <ea8c6372a227309685ab6c0a36d64aec>, name = "server.anywhere.com"]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP code=0xc id=0x2 0f b9 00 5f 4d 53 52 41 53 56 35 2e 31 30]
    Wed Dec 12 02:21:24 2007 : sent [LCP CodeRej id=0x2 0c 02 00 12 0f b9 00 5f 4d 53 52 41 53 56 35 2e 31 30]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP code=0xc id=0x3 0f b9 00 5f 4d 53 52 41 53 2d 30 2d 50 43 31 36 37]
    Wed Dec 12 02:21:24 2007 : sent [LCP CodeRej id=0x3 0c 03 00 15 0f b9 00 5f 4d 53 52 41 53 2d 30 2d 50 43 31 36 37]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP EchoRep id=0x0 magic=0xfb9005f]
    Wed Dec 12 02:21:24 2007 : rcvd [CHAP Response id=0x82 <41....0>, name = "testuser"]
    Wed Dec 12 02:21:24 2007 : DSAuth plugin: Could not retrieve key agent account information.
    Wed Dec 12 02:21:24 2007 : sent [CHAP Success id=0x82 "S=4020C83B....A M=Access granted"]
    Wed Dec 12 02:21:24 2007 : CHAP peer authentication succeeded for testuser
    Wed Dec 12 02:21:24 2007 : DSAccessControl plugin: User 'testuser' authorized for access
    Wed Dec 12 02:21:24 2007 : MPPE required, but keys are not available. Possible plugin problem?
    Wed Dec 12 02:21:24 2007 : sent [LCP TermReq id=0x4 "MPPE required but not available"]
    Wed Dec 12 02:21:24 2007 : rcvd [CCP ConfReq id=0x4 <mppe +H +M +S +L -D +C>]
    Wed Dec 12 02:21:24 2007 : rcvd [IPCP ConfReq id=0x5 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-wins1 0.0.0.0> <ms-dns3 0.0.0.0> <ms-wins3 0.0.0.0>]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP TermAck id=0x4 "MPPE required but not available"]
    Wed Dec 12 02:21:24 2007 : Connection terminated.
    Wed Dec 12 02:21:24 2007 : Connect time 0.1 minutes.
    Wed Dec 12 02:21:24 2007 : Sent 0 bytes, received 0 bytes.
    Wed Dec 12 02:21:25 2007 : PPTP disconnecting...
    Wed Dec 12 02:21:25 2007 : PPTP disconnected
    2007-12-12 02:21:25 CET --> Client with address = 192.168.yyy.yyy has hungup

  • MPPE required, but keys are not available.

    I am trying connect my home computer to my office(MAcOS x Server)
    error on MacOS X Server Log
    Tue Sep 26 20:16:59 2006 : sent [CHAP Success id=0x1e "S=A1ED1D0E3ABF7A4187D8F43458C7C0C5F487B9AE M=Access granted"]
    Tue Sep 26 20:16:59 2006 : DSAccessControl plugin: User 'ppina' authorized for access
    Tue Sep 26 20:16:59 2006 : MPPE required, but keys are not available. Possible plugin problem?
    Tue Sep 26 20:16:59 2006 : sent [LCP TermReq id=0x2 "MPPE required but not available"]
    Tue Sep 26 20:16:59 2006 : rcvd [CCP ConfReq id=0x1 <mppe +H -M +S +L -D -C>]
    Tue Sep 26 20:17:00 2006 : rcvd [LCP TermAck id=0x2]
    Tue Sep 26 20:17:00 2006 : Connection terminated.
    Tue Sep 26 20:17:00 2006 : Connect time 0.0 minutes.
    Tue Sep 26 20:17:00 2006 : Sent 0 bytes, received 0 bytes.
    Tue Sep 26 20:17:00 2006 : PPTP disconnecting...
    Tue Sep 26 20:17:00 2006 : PPTP disconnected
    2006-09-26 20:17:00 WEST --> Client with address = 172.16.12.119 has hungup

    run this
    code:
    sudo vpnaddkeyagentuser
    authenticate as your admin and then if it does not give an error you should be all set.
    See this http://docs.info.apple.com/article.html?artnum=107915 for more info (it talks about an LDAP server but when I tried to add that 'user' to my LDAP server it did not help, so I added it locally (which is what the above command does) and then viola!)
    Peter
    PowerMac G5 Dual 2.5Ghz   Mac OS X (10.4.6)   Server

  • HT2240 I purchase my QuickTime 7 Pro registration key via a friend in USA as it was not available to residents in South Africa. I now have a new iMac and the registration code doesn't want to activate PRO. It works fine on my MacBook Pro.

    I purchase my QuickTime 7 Pro registration key via a friend in USA as it was not available to residents in South Africa. I now have a new iMac and the registration code doesn't want to activate PRO. It works fine on my MacBook Pro. Do I have to buy a new registration code for my newiMac?

    i'm in SA and it say Apple Support not available at the moment or something like that.
    Just got the new iMac.
    Still using MacBook Pro.
    Files are on a external drive shared between these 2 mac platforms and I need to be able to
    edit in QT 7 Pro on both as well.
    The code was bought in August 2011.

  • BI COntent:     Key figure ***  is not available in version D

    Hello,
    I  am trying to activate 0PUR_C02 in BI content by Before and After Installation ,i got errors-infoobject is not available in Version 'D' 'or Version 'A', I checked  in RSD1 InfoObject is in Active version , and i unistalled by selecting "Do Not Install any Below"  still am facing same error...
    wat is the sol for it....

    Hi Vinay,
       The BI content objects are delivered in version D. They have to installed(Activated) before they can be used.
        In your case the BI content object "0ADDATEFROM" seems not be in inactive state. So search for this BI content object and then activate(install) it. Later you can use it in 0BP_ID .
    Reward points if you find it helpful.
    Regards,
    Harold.

Maybe you are looking for

  • I'm on a mac and my printer won't print

    I'm on a mac and it sends the document to my printer (Hp Photosmart 4680 all in one) but the printer won't print. My printer has been working just fine and now it won't print. Am I doing something wrong. This happened once before and I got frustrated

  • PL/SQL - column value is updated as 0 instead of numeric value

    Declare v_cnt varchar2(20); v_cnd varchar2(20); v_total varchar2(20); begin select count(emp_id) into v_cnt from emp1; select count(emp_id) into v_cnd from emp2; v_total:=v_cnt+v_cnd; dbms_output.put_line('before'); dbms_output.put_line(v_total); upd

  • I want to mount / partition Read-Only !

    I have Arch installed on my Acer Aspire One... and it works great on this little machine! The Acer One has no hard disk, but uses SSD, so to reduce writes to disk i use EXT2, I have my /home on a separate SD card, and I mounted log and temp directori

  • DYNPRO_SEND_IN_BACKGROUND short dump in BW while calling Process chain remotely from APO

    Hi, While trying to call a process chain remotely from SCM APO system to SAP BW system - we are getting below short dump - Short text     Screen output without connection to user. What happened?     Error in the ABAP Application Program     The curre

  • Quicktime movies with chapters

    Has anyone found a way to get Front Row to recognise chapter markers in movies? I've created movies where both Quicktime player and iTunes recognise the chapters, but Front Row can't skip ahead (although it will play the movie). I'm in the process of