ERROR - PR CANNOT BE RELEASED

Hi,
user creates a PR(a/c assgnmt K),saves it.then finds she has to change cost center,does ME53N..does required changes & saves again.
Now while releasing the PR(both thru w/f or ME54N) it gives error - the PR cannot be released.
Pl resolve/advice.
thanks

Hi,
First check the release strategy triggered or not before the release.
If not check all the charactersticks u have mentioned in the PR.
Regards,
Cherry

Similar Messages

  • CU65 Variant Function cannot be released - check function module interface

    Hi ,
    Getting this error while Releasing the variant Function in CU66. Function Module trigerred by this function is of the same name as well as correctly acitvated and released , but while releasing the Function I get this error :  'Function cannot be released - check function module interface' . Following are two characeteristics that are maintained in the variant function :
    1. Customer_Type
    2. Maintenance_Contract
    While executing the Function Module alone I get Raise Inernal Exception i.e it is not identifying the argument name 'Maintenance_Contract' in the FM 'CUOV_GET_FUNCTION_ARGUMENT' exception
    Below is the code for reference . Pls point out if any mistakes :
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(GLOBALS) TYPE  CUOV_00
    *"  CHANGING
    *"     REFERENCE(ZQUERY) TYPE  ZQUERY
    *"     REFERENCE(ZMATCH) TYPE  ZMATCH
    *"  EXCEPTIONS
    *"      FAIL
    *"      INTERNAL_ERROR
    " Data Declaration
    DATA : l_main LIKE CUOV_01-atwrt,
             l_cust LIKE CUOV_01-atwrt.
    " Get value of Input Characteristic Maintenance Contract
      call function 'CUOV_GET_FUNCTION_ARGUMENT'
        exporting
          argument            = 'MAINTENANCE_CONTRACT'
       IMPORTING
          SYM_VAL             = l_main
        tables
          query               = ZQUERY
        EXCEPTIONS
          ARG_NOT_FOUND       = 1
      if sy-subrc <> 0.
      RAISE INTERNAL_ERROR.
      endif.
      " Get value of Input Characteristic Customer Type
      call function 'CUOV_GET_FUNCTION_ARGUMENT'
        exporting
          argument            = 'CUSTOMER_TYPE'
       IMPORTING
          SYM_VAL             = l_cust
       tables
          query               = ZQUERY
        EXCEPTIONS
          ARG_NOT_FOUND       = 1
      if sy-subrc <> 0.
      RAISE INTERNAL_ERROR.
      endif.
       IF l_main EQ 'NO'.
        IF l_cust EQ 'CURRENT'.
          l_cust = 'NEW'.
        ELSEIF l_cust EQ 'VAR CURRENT'.
          l_cust = 'VAR NEW'.
         ENDIF.
         ENDIF.
    " Set value for the output characteristic
         call function 'CUOV_SET_FUNCTION_ARGUMENT'
           exporting
             argument                      = 'CUSTOMER_TYPE'
             vtype                         = 'CHAR'
             SYM_VAL                       = l_cust
           NUM_VAL                       =
           tables
             match                         = ZMATCH
           EXCEPTIONS
             EXISTING_VALUE_REPLACED       = 1

    ZMATCH and ZQUERY are two table types created in SE11 , both of type CUOV_01.

  • While releasing a PO an error showing PO cannot be released

    While checking the PO release an error showing PO cannot be released is showing.The release button is not appearing from the first code itself

    Hi,
    The following are the various reasons for the errormessgae.
    1. PO would have already released.
    2. PO would not have come under the perview of release u defined
    3.You would not have authorization for release M_EINK_FRG object.
    4.The charetarestcs defined will not come for this PO properties.
    ETc.
    Mostly , if all the config is setand done and working fine for other  POs tooo then this PO iswith the problem.
    Do you have this problem for other POs too with the same kind of PO?
    Regards,

  • Error while billing document releasing to accounting.

    Hi Experts,
    Please give me possible reasons for below error while billing document releasing to accounting.
    "Valuation with material cost estimate: error with product "500258045"
    Message no. KE350
    Diagnosis
    In Profitability Analysis (CO-PA), the system tried to valuate a line item using the current standard cost estimate.
    In order to determine the current plan period, the system needs to read the valuation segment of the material master.
    The system has found that the current plan period is not filled forproduct "BDE98561002" in plant "9856".
    Display material (View: Costing)
    The system looked for the material cost estimate using costing key "ZK1", as defined in the Customizing settings for CO-PA.
    System Response
    The document cannot be processed.
    Procedure
    Contact your system administrator".
    I have checked CKR1 transaction there were no cost estimates with KF costing status.
    NOTE: Material Ledger Activated.
    Please suggest the possible reasons and what to check?
    Regards
    Chandra.

    Check the cost estimate that is mentioned against the Costing key ZK1 whether it exists in the system and as you are saying there seems to be no cost estimate for the said material.
    Hence release the std cost estimate for the said materia using CK11n or CK40n

  • Getting error message Cannot Resolve Symbol when trying to compile a class

    Hello All -
    I am getting an error message cannot resolve symbol while trying to compile a java class that calls another java class in the same package. The called class compiles fine, but the calling class generates
    the following error message:
    D:\Apache Tomcat 4.0\webapps\examples\WEB-INF\classes\cal>javac
    ConnectionPool.java
    ConnectionPool.java:158: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    private void addConnection(PooledConnection value) {
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    The code is listed as follows for PooledConnection.java (it compiles fine)
    package cal;
    import java.sql.*;
    public class PooledConnection {
    // Real JDBC Connection
    private Connection connection = null;
    // boolean flag used to determine if connection is in use
    private boolean inuse = false;
    // Constructor that takes the passed in JDBC Connection
    // and stores it in the connection attribute.
    public PooledConnection(Connection value) {
    if ( value != null ) {
    connection = value;
    // Returns a reference to the JDBC Connection
    public Connection getConnection() {
    // get the JDBC Connection
    return connection;
    // Set the status of the PooledConnection.
    public void setInUse(boolean value) {
    inuse = value;
    // Returns the current status of the PooledConnection.
    public boolean inUse() {
    return inuse;
    // Close the real JDBC Connection
    public void close() {
    try {
    connection.close();
    catch (SQLException sqle) {
    System.err.println(sqle.getMessage());
    Now the code for ConnectionPool.java class that gives the cannot
    resolve symbol error
    package cal;
    import java.sql.*;
    import java.util.*;
    public class ConnectionPool {
    // JDBC Driver Name
    private String driver = null;
    // URL of database
    private String url = null;
    // Initial number of connections.
    private int size = 0;
    // Username
    private String username = new String("");
    // Password
    private String password = new String("");
    // Vector of JDBC Connections
    private Vector pool = null;
    public ConnectionPool() {
    // Set the value of the JDBC Driver
    public void setDriver(String value) {
    if ( value != null ) {
    driver = value;
    // Get the value of the JDBC Driver
    public String getDriver() {
    return driver;
    // Set the URL Pointing to the Datasource
    public void setURL(String value ) {
    if ( value != null ) {
    url = value;
    // Get the URL Pointing to the Datasource
    public String getURL() {
    return url;
    // Set the initial number of connections
    public void setSize(int value) {
    if ( value > 1 ) {
    size = value;
    // Get the initial number of connections
    public int getSize() {
    return size;
    // Set the username
    public void setUsername(String value) {
    if ( value != null ) {
    username = value;
    // Get the username
    public String getUserName() {
    return username;
    // Set the password
    public void setPassword(String value) {
    if ( value != null ) {
    password = value;
    // Get the password
    public String getPassword() {
    return password;
    // Creates and returns a connection
    private Connection createConnection() throws Exception {
    Connection con = null;
    // Create a Connection
    con = DriverManager.getConnection(url,
    username, password);
    return con;
    // Initialize the pool
    public synchronized void initializePool() throws Exception {
    // Check our initial values
    if ( driver == null ) {
    throw new Exception("No Driver Name Specified!");
    if ( url == null ) {
    throw new Exception("No URL Specified!");
    if ( size < 1 ) {
    throw new Exception("Pool size is less than 1!");
    // Create the Connections
    try {
    // Load the Driver class file
    Class.forName(driver);
    // Create Connections based on the size member
    for ( int x = 0; x < size; x++ ) {
    Connection con = createConnection();
    if ( con != null ) {
    // Create a PooledConnection to encapsulate the
    // real JDBC Connection
    PooledConnection pcon = new PooledConnection(con);
    // Add the Connection to the pool.
    addConnection(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // Adds the PooledConnection to the pool
    private void addConnection(PooledConnection value) {
    // If the pool is null, create a new vector
    // with the initial size of "size"
    if ( pool == null ) {
    pool = new Vector(size);
    // Add the PooledConnection Object to the vector
    pool.addElement(value);
    public synchronized void releaseConnection(Connection con) {
    // find the PooledConnection Object
    for ( int x = 0; x < pool.size(); x++ ) {
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // Check for correct Connection
    if ( pcon.getConnection() == con ) {
    System.err.println("Releasing Connection " + x);
    // Set its inuse attribute to false, which
    // releases it for use
    pcon.setInUse(false);
    break;
    // Find an available connection
    public synchronized Connection getConnection()
    throws Exception {
    PooledConnection pcon = null;
    // find a connection not in use
    for ( int x = 0; x < pool.size(); x++ ) {
    pcon = (PooledConnection)pool.elementAt(x);
    // Check to see if the Connection is in use
    if ( pcon.inUse() == false ) {
    // Mark it as in use
    pcon.setInUse(true);
    // return the JDBC Connection stored in the
    // PooledConnection object
    return pcon.getConnection();
    // Could not find a free connection,
    // create and add a new one
    try {
    // Create a new JDBC Connection
    Connection con = createConnection();
    // Create a new PooledConnection, passing it the JDBC
    // Connection
    pcon = new PooledConnection(con);
    // Mark the connection as in use
    pcon.setInUse(true);
    // Add the new PooledConnection object to the pool
    pool.addElement(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // return the new Connection
    return pcon.getConnection();
    // When shutting down the pool, you need to first empty it.
    public synchronized void emptyPool() {
    // Iterate over the entire pool closing the
    // JDBC Connections.
    for ( int x = 0; x < pool.size(); x++ ) {
    System.err.println("Closing JDBC Connection " + x);
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // If the PooledConnection is not in use, close it
    if ( pcon.inUse() == false ) {
    pcon.close();
    else {
    // If it is still in use, sleep for 30 seconds and
    // force close.
    try {
    java.lang.Thread.sleep(30000);
    pcon.close();
    catch (InterruptedException ie) {
    System.err.println(ie.getMessage());
    I am using Sun JDK Version 1.3.0_02" and Apache/Tomcat 4.0. Both the calling and the called class are in the same directory.
    Any help would be greatly appreciated.
    tnx..
    addi

    Is ConnectionPool in this "cal" package as well as PooledConnection? From the directory you are compiling from it appears that it is. If it is, then you are compiling it incorrectly. To compile ConnectionPool (and PooledConnection similarly), you must change the current directory to the one that contains cal and type
    javac cal/ConnectionPool.

  • Alternative sequences cannot be released

    Operations in alternative sequences cannot be released
    Message no. CO224
    im getting error msg while realease alternate sequence operation .
    for my alternate sequence operation Branch operation 0020 and return operation 0030.
    as of now my first operation confirmed .
    im trying to release my aternate sequence operation (as a second operation)
    Not all operations were released (see log)
    Message no. C2038
    once i see the log it showing the first above msg
    wat will be the problem.???

    Prakash,
    You must be talking about parallel sequences. Alternative sequences are the part of routing only. While order creation, one of the alternate sequence gets copied.
    By the way if not all the parallel seuences are released, you can release them separately also at sequence level or at operation level.
    1. Go to sequence overview, select the desired sequence & click on the green flag.
    2. Go to operation overview of the desired sequence, select all the operation & click on the green flag in the bottom. Your problem will be solved.
    Hope this helps you
    SmanS

  • Purchase Requisition Cannot be released

    Dear SAP Gurus,
    While doing ME54N to release PR. System showing the Error 'Purchase requisition cannot be released'.
    PR created on 23.04.2009 then PO Created against it , again PR was dereleased now again when going for release of PR system is providing the error as mentioned above.
    Message no. MEPO822
    << Moderator message - Everyone's problem is important >>
    Thanks and Regards.
    Anil Thakur
    Edited by: Rob Burbank on Nov 10, 2010 3:52 PM

    Hello Anil
    During this period any release stratergies changed for pr ?  after de release the pr just modified small value and make it same again this is nothing but refresh.
    then check the pr release
    Laxman

  • Auto patch error usdsop cannot create a new process

    Hi i am applying hrms family pack k in one vision db in testnode but i am getting following error.Any idea
    appsversion 11.5.10 and windows 2003 advanced server
    Generating product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java with command:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjmx @j:\oracle\visappl\admin\VIS\out\genjars.cmd
    Error:
    usdsop cannot create a new process
    Cause: usdsop encountered an error creating a new process. [Reason].
    Action: Check that your system had enough resources to start a new process. Contact your system administrator to obtain more resou (RE
    Failed to generate product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java.
    adogjf() Unable to generate jar files under JAVA_TOP
    AutoPatch error:
    Failed to generate the product JAR files
    rgds
    rajesh

    This is the primary reason I dislike doing Oracle Apps on Windows.
    If something bad happens while patching, and you find yourself without critical ad executables because relink failed, you need to run relinkenv.cmd to (re)create the APPS.SH unix-style environment (forward slashes) for relink.sh.
    Source or double click on envshell.cmd
    sh adrelink.sh force=y "ad adjava.exe"
    Backup Mode is "file"
    Removing Application products' bin directories from PATH ...
    Done removing Application products' bin directories from PATH
    Removing $FND_TOP/$APPLBIN from PATH ...
    sed: number in \[0-9] invalid
    Done removing $FND_TOP/$APPLBIN from PATH
    awk: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    echo: adrelink.sh 4107: writing: The pipe is being closed.
    awk: adrelink.sh 4107: not found
    ORACLE RDBMS Version 8.0.6.0.0
    Oracle Reports Version 6.0
    Oracle Applications Release
    Unable to determine the release number.
    To resolve:
    type relinkenv.cmd
    This creates APPS.SH.
    Source or double click on envshell.cmd to create a new session.
    Now type sh
    At the command prompt, type . ./APPS.Sh
    now adrelink.sh force=y "ad adjava.exe"
    You are running adrelink, version 115.85
    Start of adrelink session
    Date/time is Fri Jul 20 20:22:35 PDT 2007
    Log file is d:/oracle/visappl/admin/log/adrelink.log
    Command line arguments are
    "force=y" "ad adjava.exe"
    Done with link of ad executable 'adjava.exe' on Fri Jul 20 20:27:07 PDT 2007
    Done relinking module adjava.exe in product ad
    Done with link of product 'ad' on Fri Jul 20 20:27:07 PDT 2007
    adrelink is exiting with status 0
    End of adrelink session

  • TypeError: Error #1009: Cannot access a property or method of a null object reference.

    Hi all,
    I am new to ActionScript and Flash, and I am getting this error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at jessicaclucas_fla::MainTimeline/stopResumescroll()
    I have several different clips in one movie that have scrolling content. When I click a button to move to a different clip that doesn’t have a certain scroll, it gives me this error. I cannot figure out how to fix this. You can see the site I am working on: http://www.jessicaclucas.com. I would really appreciate some help! Thank you in advance. Here is the code:
    //Import TweenMax and the plugin for the blur filter
    import gs.TweenMax;
    import gs.plugins.BlurFilterPlugin;
    //Save the content’s and mask’s height.
    //Assign your own content height here!!
    var RESUMECONTENT_HEIGHT:Number = 1500;
    var RESUME_HEIGHT:Number = 450;
    //We want to know what was the previous y coordinate of the content (for the animation)
    var oldResumeY:Number = myResumecontent.y;
    //Position the content on the top left corner of the mask
    myResumecontent.x = myResume.x;
    myResumecontent.y = myResume.y;
    //Set the mask to our content
    myResumecontent.mask = myResume;
    //Create a rectangle that will act as the Resumebounds to the scrollMC.
    //This way the scrollMC can only be dragged along the line.
    var Resumebounds:Rectangle = new Rectangle(resumescrollMC.x,resumescrollMC.y,0,450);
    //We want to know when the user is Resumescrolling
    var Resumescrolling:Boolean = false;
    //Listen when the user is holding the mouse down on the scrollMC
    resumescrollMC.addEventListener(MouseEvent.MOUSE_DOWN, startResumescroll);
    //Listen when the user releases the mouse button
    stage.addEventListener(MouseEvent.MOUSE_UP, stopResumescroll);
    //This function is called when the user is dragging the scrollMC
    function startResumescroll(e:Event):void {
    //Set Resumescrolling to true
    Resumescrolling = true;
    //Start dragging the scrollMC
    resumescrollMC.startDrag(false,Resumebounds);
    //This function is called when the user stops dragging the scrollMC
    function stopResumescroll(e:Event):void {
    //Set Resumescrolling to false
    Resumescrolling = false;
    //Stop the drag
    resumescrollMC.stopDrag();
    //Add ENTER_FRAME to animate the scroll
    addEventListener(Event.ENTER_FRAME, enterResumeHandler);
    //This function is called in each frame
    function enterResumeHandler(e:Event):void {
    //Check if we are Resumescrolling
    if (Resumescrolling == true) {
    //Calculate the distance how far the scrollMC is from the top
    var distance:Number = Math.round(resumescrollMC.y - Resumebounds.y);
    //Calculate the percentage of the distance from the line height.
    //So when the scrollMC is on top, percentage is 0 and when its
    //at the bottom the percentage is 1.
    var percentage:Number = distance / RESUME_HEIGHT;
    //Save the old y coordinate
    oldResumeY = myResumecontent.y;
    //Calculate a new y target coordinate for the content.
    //We subtract the mask’s height from the contentHeight.
    //Otherwise the content would move too far up when we scroll down.
    //Remove the subraction to see for yourself!
    var targetY:Number = -((RESUMECONTENT_HEIGHT - RESUME_HEIGHT) * percentage) + myResume.y;
    //We only want to animate the scroll if the old y is different from the new y.
    //In our movie we animate the scroll if the difference is bigger than 5 pixels.
    if (Math.abs(oldResumeY - targetY) > 5) {
    //Tween the content to the new location.
    //Call the function ResumetweenFinished() when the tween is complete.
    TweenMax.to(myResumecontent, 0.3, {y: targetY, blurFilter:{blurX:22, blurY:22}, onComplete: ResumetweenFinished});
    //This function is called when the tween is finished
    function ResumetweenFinished():void {
    //Tween the content back to “normal” (= remove blur)
    TweenMax.to(myResumecontent, 0.3, {blurFilter:{blurX:0, blurY:0}});

    Hi again,
    Thank you for helping. I really appreciate it! Would it be easier to say, if resumescrollMC exists, then execute these functions? I was not able to figure out the null statement from your post. Here is what I am trying (though I am not sure it is possible). I declared the var resumescrollMC, and then I tried to put pretty much the entire code into an if (resumescrollMC == true) since this code only needs to be completed when resumescrollMC is on the stage. It is not working the way I have tried, but I am assuming I am setting up the code incorrectly. Or, an if statement is not supposed to be issued to an object:
    //Import TweenMax and the plugin for the blur filter
    import gs.TweenMax2;
    import gs.plugins.BlurFilterPlugin2;
    //Save the content's and mask's height.
    //Assign your own content height here!!
    var RESUMECONTENT_HEIGHT:Number = 1500;
    var RESUME_HEIGHT:Number = 450;
    var resumescrollMC:MovieClip;
    if (resumescrollMC == true) {
    //We want to know what was the previous y coordinate of the content (for the animation)
    var oldResumeY:Number = myResumecontent.y;
    //Position the content on the top left corner of the mask
    myResumecontent.x = myResume.x;
    myResumecontent.y = myResume.y;
    //Set the mask to our content
    myResumecontent.mask = myResume;
    //Create a rectangle that will act as the Resumebounds to the scrollMC.
    //This way the scrollMC can only be dragged along the line.
    var Resumebounds:Rectangle = new Rectangle(resumescrollMC.x,resumescrollMC.y,0,450);
    //We want to know when the user is Resumescrolling
    var Resumescrolling:Boolean = false;
    //Listen when the user is holding the mouse down on the scrollMC
    resumescrollMC.addEventListener(MouseEvent.MOUSE_DOWN, startResumescroll);
    //Listen when the user releases the mouse button
    stage.addEventListener(MouseEvent.MOUSE_UP, stopResumescroll);
    //This function is called when the user is dragging the scrollMC
    function startResumescroll(e:Event):void {
    //Set Resumescrolling to true
    Resumescrolling = true;
    //Start dragging the scrollMC
    resumescrollMC.startDrag(false,Resumebounds);
    //This function is called when the user stops dragging the scrollMC
    function stopResumescroll(e:Event):void {
    //Set Resumescrolling to false
    Resumescrolling = false;
    //Stop the drag
    resumescrollMC.stopDrag();
    //Add ENTER_FRAME to animate the scroll
    addEventListener(Event.ENTER_FRAME, enterResumeHandler);
    //This function is called in each frame
    function enterResumeHandler(e:Event):void {
    //Check if we are Resumescrolling
    if (Resumescrolling == true) {
    //Calculate the distance how far the scrollMC is from the top
    var distance:Number = Math.round(resumescrollMC.y - Resumebounds.y);
    //Calculate the percentage of the distance from the line height.
    //So when the scrollMC is on top, percentage is 0 and when its
    //at the bottom the percentage is 1.
    var percentage:Number = distance / RESUME_HEIGHT;
    //Save the old y coordinate
    oldResumeY = myResumecontent.y;
    //Calculate a new y target coordinate for the content.
    //We subtract the mask's height from the contentHeight.
    //Otherwise the content would move too far up when we scroll down.
    //Remove the subraction to see for yourself!
    var targetY:Number = -((RESUMECONTENT_HEIGHT - RESUME_HEIGHT) * percentage) + myResume.y;
    //We only want to animate the scroll if the old y is different from the new y.
    //In our movie we animate the scroll if the difference is bigger than 5 pixels.
    if (Math.abs(oldResumeY - targetY) > 5) {
    //Tween the content to the new location.
    //Call the function ResumetweenFinished() when the tween is complete.
    TweenMax.to(myResumecontent, 0.3, {y: targetY, blurFilter:{blurX:22, blurY:22}, onComplete: ResumetweenFinished});
    //This function is called when the tween is finished
    function ResumetweenFinished():void {
    //Tween the content back to "normal" (= remove blur)
    TweenMax.to(myResumecontent, 0.3, {blurFilter:{blurX:0, blurY:0}});

  • HT5957 Ios7.0.2 keep getting error message cannot install on my IPAD 2.  Please help.

    Cannot install IOS 7.0.2 on my ipad 2.  Keep getting error message cannot install.  Please help

    Perform a "hard reset" on the device by pressing down and holding the home button and the sleep/wake button for up to 30secs. until you see a black screen with the Apple logo, then release.
    Then test to see if it solved the problem. Then try again.

  • Error 413 Cannot Authenticate

    I have about 10 VPN clients connecting to a Cisco ASA 5510. I am getting calls that sometimes people are getting 413 errors here and there. When they out it username and password, the dialog box pops up again and then they get a error 413 cannot authenticate. Any ideas, they are IPsec tunnels which I hae 250 available.

    The easiest way to troubleshoot this would be to retrieve the debug information when the users fail to connect:
    debug cry isa 200
    debug cry ipsec 200
    Though you gotta be careful when you enable the debug, if you have many IPSEC tunnels running, the ASA may resent showing all the debug information.
    On release 8.0 there's a "debug crypto condition" command for you to choose only the debugs from the peer (you'll need to know the client's public address)
    I would also suggest to try to get more information on the error: is it happening for ALL the users? it's happening always from the same location: home, office, etc?
    Sometimes this "random" connection issues are related to delay/problems with the client's internet connection.
    Regards,

  • GeoFLow encountered an error and cannot be launched

    i'm Running MSO Professional Plus 2013, when i hit Inset - Map i got the error "GeoFLow encountered an error and cannot be launched" i looked into the forum and find a solution but this is not working for me. we don't have a proxy, i have internet
    connection. the map work fine if i do it from power view or if i try to insert a map from the Apps, but not Geo Flow. any ideas?
    thank you

    I assume you're up with the May release? Here's info on that:
    http://blogs.msdn.com/b/powerbi/archive/2014/05/21/may-updates-for-power-map-now-available-to-all-office-365-customers-and-preview-extension-available-for-office-2013.aspx
    If it's a bug, could you submit this bug to the team via the Smile/Frown Feedback button in the UI?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Getting the error "Windows cannot find '-Xmx128m' "

    Hi all,
    When I try to I execute workbench.cmd, downloaded with OracleR TopLink 10g Release 3 (10.1.3), I am getting the error "Windows cannot find '-Xmx128m' .Make sure that you typed the name correctly...." .Further, my application is based on Java Swing and not a web application.
    I made the following changes in the <TOPLINK_HOME>/bin/workbench.cmd file :
    a) Set the 'JAVA_HOME' to the JDK path, same as that given in the
    Environment Variables setting.
    b) Set 'DRIVER_CLASSPATH' to point to
    <TOPLINK_HOME>/jlib/classes12.jar.
    My System configuration is as follows :-
    Operating System : WindowsXP
    JDK Version : JDK1.4.1
    Data Base Client : Oracle9i
    Data Base Server: Oracle8i
    Can anyone please suggest any solution for this problem.I 'll be very thankful.
    Regards,
    Manju

    Have you run across this thread while trying to resolve this problem - How to start Workbench (Toplink 10g) Not sure if it applies to your situation, but thought it might be helpful.
    If this doesn't help, perhaps you can paste the contents of your workbench.cmd file into this thread and we can try to debug the issue further.
    Neil

  • GEF4 Setup Error - FXCanvas cannot be resolved to a type

    Hallo,
    I tried to setup the development environment for GEF4, as specified in the GEF Contributor guide, and I found the following error:
    FXCanvas cannot be resolved to a type.
    (se attached file)
    This error is persistent, and it seems i am not able to find a solution despite I tried multiple times to setup the environment, as specified in the GEF/GEF4 contributor guide .
    This is the list of steps I followed for the setup
    Check Java 8 (oracle) is installed, that is required by the e(fx)clipse plugin.
    Download Eclipse IDE for Eclipse Committers. In my case: eclipse-committers-mars-R-win32.zip
    Install plugins needed by GEF4, in my case:
    e(fx)clipse - IDE, from http://download.eclipse.org/efxclipse/simrel-contrib/mars/m7/tools/site
    e(fx)clipse - IDE - PDE, from http://download.eclipse.org/efxclipse/simrel-contrib/mars/m7/tools/site
    API Tools Execution Environment Descriptions, from: http://download.eclipse.org/eclipse/updates/4.5-I-builds
    Oomph Version Management, from: http://download.eclipse.org/releases/mars'
    Maven Integration for Eclipse (includes Incubating components), from: http://download.eclipse.org/releases/mars
    Clone the GEF4 Git repository and import the projects in the workspace
    Set MARS.target: from org.eclipse.gef4.target project, double click the target definition, wait for the target is fully resolved, and click on "set as target platform".
    Adjust preferences. select Menu > Window > Preferences:
    Java > Compiler > Errors/Warnings: ignore the "Deprecated and restricted API"
    Plug-in Development > Compilers: Ignore the "References to discouraged classes"
    At the end of the setup, I can not compile the GEF4 project, because "FXCanvas cannot be resolved to a type. "
    See image.
    Does anyone has an idea on how to fix this ?
    Kind Regards.
    Patrik

    I updated the respective section of the contributor guide to make it even more explicit, why the "Specify Execution Environment for J2SE-1.7 (and optionally J2SE-1.8)" is important. I also saw that the guide still listed the e(fx)clipse 2.0.0 Mars M7 contribution. I updated it to refer to the e(fx)clipse 2.0.0 Mars release. You might want to update your IDE accordingly.

  • Error! cannot enable extended adj rogue

    I need a little help.
    When enabling Adjacent Channel Rogue (Management>Trap Controls>Security), I get the following error:
    Error! cannot enable extended adj rogue.
    Why do I get this error?
    Reading the WLC help pages, I did not see any documentation on this error nor enabling Adjacent Channel Rogue.
    Searching the Cisco Wireless LAN Controller Configuration Guide, Release 7.4, I did read any documentation on this error nor enabling Adjacent Channel Rogue.

    I never use it, but it probably give you an error because you are not either using monitor mode APs or RLDP enabled. You don't want to enable RLDP either just to let you know. Here is more info on rogue detection and does explain the caveats to using RLDP.
    http://www.cisco.com/en/US/products/ps6366/products_tech_note09186a0080b40901.shtml
    Sent from Cisco Technical Support iPhone App

Maybe you are looking for

  • How can I delete an old index ?

    I'm revising a book and I need to completely remove the old index a create a new one. Have not found an answer on the internet or my InDesign book. Any suggestions  would be most welcome!

  • Palm Desktop 6.2 hangs on "media" button

    Recently I purchased a Palm Centro and last night installed the Desktop software 6.2 on top of the previous 4.1.4, which I had for my Tungsten E (as the instructions indicate).  Things seemed to go okay, but every time I hit the "media" button on the

  • Error  while running the PurgeCache.bat All

    Hi, I am trying to run PurgeCache.bat,however, getting below error. D:\Oracle\Middleware\Oracle_IDM1\server\bin>PurgeCache.bat All The system cannot find the path specified. The WL_HOME and OIM_HOME path are set in the environment varibale. Can you p

  • Cascading Style Sheets are NOT written to the file system

    Hallo, On the "Cascading Style Sheets" page is written that: "The Cascading Style Sheets are written to the file system, so you can reference them in your HTML source code." I am true that if this works I can reference the css with something like thi

  • Could not find any import/export licenses

    Hi, I have configured License determination for Export in my GTS system. I have created license type ENC and a license of this license type. But, When i send a docuement to GTS,it fails to find license for this license type. Below are the screenshots