Connection handle of this Interaction has already been closed

Dear All,
We are facing problem in Portal application and the portal screen shows
"WARNING : DOMG:0001 : EN: Applicatie Foutcould not create JCOClientconnection for logical system: WD_MODELDATA_DEST - Model..." When i checked the JCO and it seems to be working fine.
This error message occurs not all the time but it happens very often nowdays in our production system.
The trace file has the below info ....
#1.5 #005056917DFC0065000001700000148000048ACD4C7672EF#1278514262577
#com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel#sap.com/tcwddispwda#
com.sap.tc.webdynpro.modelimpl.dynamicrfc.AiiModel.JcoClientManagementWDP#m.
vanginhoven#10799##n/a##0fee4bb889d711dfa9cc005056917dfc#SAPEngine_Application
Thread[impl:3]74ID\#(J2EE3880500)ID0960469550DB02703921047067447299End.
WID1278484862289##0#0#Error##Plain###Could not create JCOClientConnection for
logical System: *'WD_MODELDATA_DEST' *- Model: 'class com.nl.cv.pr.productlijst.
Zorg_Arrangementproduct_Lijst_Model'. #
#1.5 #005056917DFC002A000009B40000148000048ACD4F560780#1278514310781
#System.err#phobos/phobos~dcrlcear#System.err#Guest#0##as-careview1_EPP_3880550##2a53432b89d711dfbb8a005056917dfc#SAPEngine_
Application_Thread[impl:3]_38##0#0#Error##Plain###Connection handle of this
Interaction has already been closed#
#1.5 #005056917DFC002A000009B50000148000048ACD4F560987#1278514310781
#System.err#phobos/phobos~dcrlcear#System.err#Guest#0##as-careview1_EPP_3880550##2a53432b89d711dfbb8a005056917dfc#SAPEngine_
Application_Thread[impl:3]_38##0#0#Error##Plain###Connection is already closed
and no longer associated with a managed connection#
Do anyone have any idea on this issue? Please help me out to fix this problem
Regards
Raj

Hi,
The error message "Could not create JCOClientConnection for logical System" is only triggered when the WebDynpro application is requesting more JCO connections than the number of JCOs allocated for this application.                                                                               
I suggest to carefully go through the documents below in order to properly configure your JCOs. If necessary, remove them and recreate in the correct way:                                                                               
JCo Quick Summary                                                         
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/85a483cb-0d01-0010-2990-c5168f01ce8a                                                                               
How to Configure the JCo Destination Settings                             
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3103eb90-0201-0010-71af-be6f4a6f61d1                                                                               
You will have to calculate the maximum number of JCo connections to each application based on Models and users.
Br,
Javier

Similar Messages

  • 'Connection has already been closed'. Random error connecting with a pool

    Hi all,
    I've got a problem I cannot solve, and really hope in someone's help...
    The fact is: I'm working on a webapp which doesn't made use of frameworks or patterns or similars. I introduced the DAO pattern in order to organize and speed up the work. At the core of the new classes there is the DBDAO, and this is the way it obtains the connection:
          protected Connection conn = null;           ...             protected Connection getConnection()       {           try           {             if (conn == null || conn.isClosed())             {                     Context ctx = new InitialContext();                 javax.sql.DataSource ds=null;                     ds =(javax.sql.DataSource) ctx.lookup( "agespPool" );                     conn = ds.getConnection();                 conn.setAutoCommit(false);             }           }           catch (Exception ne)     ...
    Every new class that needs to access the db extends DBDAO and retrieves the conn with this method. In order to make things work without changing all the code, I modified the old class named 'Connessione' and made it extend DBDAO. Here is its method:
        public class Connessione extends DBDAO{     ...             public static synchronized Connection getConnessione() throws Exception {             return new Connessione().getConnection();         }
    That's all. Finished with the code.
    Now, if someone uses the new classes extending DBDAO, all goes well. But for some old function that still work with Connessione.getConnessione(), connection closes suddenly with no reason.
    For example, calling a page with some combo box populated with a db connection, you catch a:
        java.sql.SQLException: Connection has already been closed.             at weblogic.jdbc.wrapper.PoolConnection.checkConnection(PoolConnection.java:63)             at weblogic.jdbc.wrapper.ResultSetMetaData.preInvocationHandler(ResultSetMetaData.java:37)             at weblogic.jdbc.wrapper.ResultSetMetaData_oracle_jdbc_driver_OracleResultSetMetaData.getColumnType(Unknown Source)             at it.praxis.tim.agesp.pub.sql.PagingList.populate(PagingList.java:98)             at it.praxis.tim.agesp.pub.sql.PagingList.executeSQL(PagingList.java:53)             at jsp_servlet._jsp._todolist_new._richiesta.__listarichieste._jspService(__listarichieste.java:353)             at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    or sometimes:
        - 20080417141147: <E> HtmlSelect.createHtmlSelect(4) - Errore!     java.sql.SQLException: Result set already closed     - 20080417141147: <E> HtmlSelect.createHtmlSelect(7) - Errore!     java.sql.SQLException: Connection has already been closed.     - 20080417141147: <E> ERRORE:  ricercaRichieste :     java.sql.SQLException: Statement has already been closed
    That is, the conn is closed while used to populate the combo box. I don't understand who closes it.
    Moreover, that happens randomly: 1 or 2 times over 4 hits on the page. The other times, all goes well. Most of the other pages, all goes well. So I don't think I have to search for a bug in the code.
    Now, I'm working with BEA WL 8.1 sp 5 and Oracle 9.2.0.1.0 .
    The error turns out even if I work locally (with Tomcat 5.5.23).
    The webapp made use of a custom driver beforehand, and I replaced it with oracle's driver.
    I tried to set the Connection Pool with oracle.jdbc.driver.OracleDriver and oracle.jdbc.OracleDriver .
    I left the default for the connection pool, and then tried to set (BEA):
    Connection Reserve Timeout: -1
    Test Created Connections: On
    with no changes.
    The connection suddenly and randomly closes.
    Any help would be appreciated...
    Many thanks

    the thing that you are instantiating isn't a Connection object, it's a Connessione object. That's returning one that's either been stashed from a previous call, or
    acquires one from the data sourcea new Connessione object means a call to getConnection that means a new Connection object. That code is synchronized, it has to be a new object.
    It is entirely possible that conn is not null if other actions have taken place in your constructor. Even assuming it is null, we don't know anything about the
    connection pool you're trying to use, though it looks like it's probably weblogic's one.The contructor doesn't know of the connection. As for the pool, it is weblogic's one.
    And even assuming both of these cases, we have no particular reason to believe that you're calling the getConnessione() method instead of accidentally calling
    getConnection() and thus no reason to believe that you're definitely carrying out the actions that you believe you're carrying out.I wrote that the problem comes out in the old code that once worked fine. That code only uses Connessione.getConnessione() .
    Conversely we have an error message that says you're closing connections elsewhere. Clearly there's a bug. It's presumably in your assumptions. You're
    arguing instead of checking them.If I have a wrapper logging the close() calls, I have to see every call logged. Even if there's a bug (but remember that the code worked fine with a previous custom datasource), why do you think I shouldn't see that close() logged?
    I may be wrong, but I already searched in that code. I'm arguing after all the checks.
    There is no other thread that can see that connHow do you know? I have that Connessione.getConnessione() in a jsp. It's synchronized. That gives a new connection. I see it passed only to an utility class that queries the db and reads the resultset.
    Who do you think can access that connection?

  • WLS 9.2:  Interpreting the error - This RJVM has already been shutdown

    Hi,
    I have encountered the error message (stacktrace below) in one of the managed servers of my Weblogic 9.2 cluster (containing 4 managed servers). There are ALSB proxies consuming and producing to JMS distributed queues on the cluster.
    The server reporting this error (server01_01) is complaining about the Remote JVM of the other servers (server01_02, 02_01, 02_02) being shutdown, but what I have observed is that server01_01 was killed by the Nodemanager(may be due to failure or being unavailable).
    I would like to know:
    1) When does this error occur usually?
    2) How is it different from "weblogic.jms.common.LostServerException: [JMSClientExceptions:055169]Network connection to server was lost."?
    3) Why did I get an error complaining about the other healthy servers when actually the problem is with the server reporting the error?
    Any hints are appreciated.
    +####<Mar 26, 2009 11:44:08 AM EST> <Warning> <RMI> <ifappd111d-v04t> <+server01_01+> <[ACTIVE] ExecuteThread: '37' for queue:+
    +'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238028248453> <BEA-080006> <Failed to associate the transaction context with the response while marshalling an exception to the client:+
    java.rmi.ConnectException: This RJVM has already been shutdown -3786093667493708317S:ifappd112d-v04t:[8003,8003,-1,-1,-1,-1,-1]:ifappd111d-v04t:8003,ifappd112d-v04t:8003,ifappd111d-v04t:8005,ifappd112d-v04t:8005:domServiceBus:server02_01.
    java.rmi.ConnectException: This RJVM has already been shutdown -3786093667493708317S:ifappd112d-v04t:[8003,8003,-1,-1,-1,-1,-1]:ifappd111d-v04t:8003,ifappd112d-v04t:8003,ifappd111d-v04t:8005,ifappd112d-v04t:8005:domServiceBus:*server02_01*+
         at weblogic.rjvm.RJVMImpl.getOutputStream(RJVMImpl.java:336)
         at weblogic.rjvm.RJVMImpl.getResponseStream(RJVMImpl.java:679)
         at weblogic.rjvm.MsgAbbrevInputStream.getMsgAbbrevOutputStream(MsgAbbrevInputStream.java:275)
         at weblogic.rjvm.MsgAbbrevInputStream.getOutboundResponse(MsgAbbrevInputStream.java:534)
         at weblogic.rmi.internal.BasicServerRef.postInvoke(BasicServerRef.java:599)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:453)
         at weblogic.rmi.internal.BasicServerRef.access$300(BasicServerRef.java:57)
         at weblogic.rmi.internal.BasicServerRef$BasicExecuteRequest.run(BasicServerRef.java:965)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)

    EJB keep traks of Bea CLUSTER using JVMID as an identifier of each manged server's JVM. When this JVMID is no longer valid, you can see "JVM is already been shutdowm" as client exception. This issue happen when, on client side, EJB can't recognize server side JVM shutdown. In WLS 8.1 there was a PATCH to solve this problem. Ask to Bea support if you need a patch also for WLS 9.2.
    Regards

  • Connection has already been closed

    We are on Weblogic 7.0 SP1 on HP UX 11i. Database is Oracle ver 9.0.1.3. Using
    thin driver for database access.
    Intermittently we get the error: "Connection has already been closed" from DAO
    programs. The stack trace shows that this error is preceded by java.sql.SQLException:
    java.lang.NullPointerException. The error is appearing in the finally block when
    we attempt to close the connection if it is not null. Here's the code piece:
    finally {
    try {
    if(connection != null)
    connection.close();
    connection = null;
    } catch (SQLException sqlException) {
    log4j.error(sqlException.toString());
    What we are not able to understand is, this piece of code can be executed only
    if connection object is not null and if so, why this error - 'Connection has already
    been closed'?
    We noticed a bug reported in SP1:
    Bug No: CR062827
    Description : Fixed a problem with prepared statement code that was provoking
    a null pointer exception; the prepared statement object was being set to null.
    Our error message is preceded by Nullpointer Exception and there is a possibility
    that it could be from PreparedStatement due to this bug. But, BEA has not given
    information on what happens to Connection when Prepared Statement throw this exception.
    Whether any of you facing the same kind of problem?
    Thanks in advance,

    chitra wrote:
    Here's the stack trace:
    2003-01-24 10:24:32,510 ERROR [ExecuteThread: '5' for queue: 'default'] (TestDao.java:203)
    - java.sql.SQLException: java.lang.NullPointerException
    2003-01-24 10:24:32,511 ERROR [ExecuteThread: '5' for queue: 'default'] (TestDao.java:228)
    - java.sql.SQLException: Connection has already been closed.
    Sometimes, we also get a different stack trace:
    2003-01-24 10:24:21,171 ERROR [ExecuteThread: '5' for queue: 'default'] (TestDao.java:203)
    - java.sql.SQLException: Closed Statement: next
    2003-01-24 10:24:21,180 ERROR [ExecuteThread: '5' for queue: 'default'] (TestDao.java:228)
    - java.sql.SQLException: Connection has alredy been closed
    ThanksHi, that's not a stacktrace. That's just the error message. Please turn on jdbc logging and show me
    the jdbc log
    file. A full stacktrace will pe printed for every SQLException, showing all the method calls.
    thanks,
    Joe
    >
    >
    Joseph Weinstein <[email protected]> wrote:
    chitra wrote:
    We are on Weblogic 7.0 SP1 on HP UX 11i. Database is Oracle ver 9.0.1.3.Using
    thin driver for database access.
    Intermittently we get the error: "Connection has already been closed"from DAO
    programs. The stack trace shows that this error is preceded by java.sql.SQLException:
    java.lang.NullPointerException. The error is appearing in the finallyblock when
    we attempt to close the connection if it is not null. Here's the codepiece:
    finally {
    try {
    if(connection != null)
    connection.close();
    connection = null;
    } catch (SQLException sqlException) {
    log4j.error(sqlException.toString());
    What we are not able to understand is, this piece of code can be executedonly
    if connection object is not null and if so, why this error - 'Connectionhas already
    been closed'?Let me see the full stacktrace of the NullPointerException and the
    'Connection is already closed' exception.
    As to the code above, I'm not saying you're doing this, but if any code
    above that finally block closed the connection, then you can get the
    'already closed' exception. In other words, connection.close() doesn't
    automatically make the reference null.
    Joe
    We noticed a bug reported in SP1:
    Bug No: CR062827
    Description : Fixed a problem with prepared statement code that wasprovoking
    a null pointer exception; the prepared statement object was being setto null.
    Our error message is preceded by Nullpointer Exception and there isa possibility
    that it could be from PreparedStatement due to this bug. But, BEAhas not given
    information on what happens to Connection when Prepared Statement throwthis exception.
    Whether any of you facing the same kind of problem?
    Thanks in advance,

  • APP-FND-01929: This responsibility has already been assigned to this user

    Dear All,
    While adding a new responsibility in the User Screen, I am getting the following Error:
    APP-FND-01929: This responsibility has already been assigned to this user. Please eneter a different responsibility.
    But in the list of responsibilities this particular responsibility is not added before..
    What will be the cause of this problem..
    How can I overcome this situation.. Please update...
    Many Thanks in advance.....

    Hi,
    As per your other thread, I believe you have restored couple of tables from your backup and this is not supported. In order to have everything running properly, then a full database restore should be done.
    Unable to login to application..
    Unable to login to application..
    Regards,
    Hussein

  • Error: "This license has already been fulfilled....."

    This past week I updated my iPad to the new IOS7 software. Immediately after doing so, I tried to download a book through Overdrive...software used by most libraries.  Unfortunately, two problems occurred.  The Overdrive sofware was not compatible with IOS7 update (but it is NOW).  Second, a pop up indicated I needed Adobe Digital to read and/or download the book.  This included books I was in the process of reading and had worked fine previously, as well as a new book I tried to download.  I sign up dor Adobe Digital (though I already had Adobe Reader on the iPad).  Following that, each time I tried to download or read a book (even after Overdrive was made compatible) I get the message: "This license has already been fulfilled by another user." Fulfill:2004.....
    I have no idea what I have done or how to correct the problem.  Any suggestions would be appreciated.
    Thanks,
    jackbmack

    I'm sorry I gave the impression I thought Overdrive was an Adobe product.  I know it is not.  The problem I am having IS with the Adobe product and the message I receive concerning "This license has already been fulfilled....." appears to be the result of the Adobe product. I had Googled Adobe Digital and discovered what I felt were conflicting or at least ambiquus statement including: http://http://forums.adobe.com/thread/1232101.
    Anyone else have any thoughts?  I DID send a help request to Overdrive but have not yet heard back from them.

  • ITunes Producer error - "This playlist has already been submitted"

    Hi,
    I'm quite clueless here, and would be glad for any help or reference with this error.
    I'm an iTunes content publisher, and wanted to start working with Producer to upload new stuff.
    I created a new entry, will all details - but when i'm trying to upload, *i'm getting the following error*
    ITMS-6001: Validation Result:
    (MZPackageValidationResultType#3)Error
    (MZPackageValidationErrorType#4)Unsupported Feature:
    "Album "5060105331046">> Track "GBJLH0511053":Error Unsupported Feature:
    This playlist has already been submitted to iTunes.
    *You can see a screenshot* here -> http://i377.photobucket.com/albums/oo211/camilla_es/itunesproducererror.jpg
    Anyone knows what could be the reason? really desperate to get this solved, as I just can't submit new stuff.
    Didn't find any iTunes Producer support forum, so thought to post here. Feel free to refer to any relevant place or people to check with.
    Thanks in advance
    Message was edited by: camilla_bcn

    Hello,
    I had the same problem, But just change the Name of the feed and The Link for example:
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
        <channel>
            <title>Timoteos Miami</title>
            <link>http://www.casarocamiami.org/relacionate/jovenes.html</link>
           <language>es</language>
            <copyright>Casa Roca Miami 2012</copyright>
    Change it to whatever you want. Submit it, and when it has been approve just change it back.

  • Error message:  Fulfill:2004 This license has already been fulfilled by another user.  I need to read on 3 devices.  I could until I upgraded from 4S to 6 plus.  Can you help

    I just upgraded my iPhone 4S to a 6Plus.  I also have an iPad2 and an iPad Mini.  I read on all 3 devices depending on where I'm going at the time.  In my OverDrive settings on my iPad/Mini it says it is authorized by Adobe ID <and my email address>.  On the 6Plus settings it says it is authorized by OverDrive account <and my email address>.  How do I get the Adobe ID authorized on my 6Plus.  Please??? and Thank you.
    Ellen

    I'm sorry I gave the impression I thought Overdrive was an Adobe product.  I know it is not.  The problem I am having IS with the Adobe product and the message I receive concerning "This license has already been fulfilled....." appears to be the result of the Adobe product. I had Googled Adobe Digital and discovered what I felt were conflicting or at least ambiquus statement including: http://http://forums.adobe.com/thread/1232101.
    Anyone else have any thoughts?  I DID send a help request to Overdrive but have not yet heard back from them.

  • 'Appears this feed has already been submitted.'

    Hello,
    I'm trying to get a podcast up and running but have run into a snag. I had set up and submitted my show a couple of weeks ago. Since then I figured out it would probably be a good idea to have a way to track downloads so (due to where I originally hosted the files) I had the show removed from iTunes completely. I have a new host, and run my site's RSS through Feedburner and have submitted the Feedburner feed to iTunes. I get the error message 'It appears this feed has already been submitted.' I've changed the title and the Feedburner link to a couple of different names and tried resubmitting again to no avail.
    Is there something I'm missing? I contacted Apple support but got the same canned response that most everyone else gets.
    Thanks for your help,
    James

    Thanks for the tip Roger. I found a different area of the Feedburner Optimization tab to change the name and description and that worked fine. I just submitted my show and will change stuff back once it's approved.
    You got me looking a little more closely and I appreciate the help!
    James

  • I was gifted an app and it says this code has already been used How do i find the code.

    I was giften an app and when i got to itunes it said this code has already been used. I don't even know how you find the code when you are gifted an app from someone. My question is how do you find the code to enter when you are gifted an app?

    See here:  iTunes 10 for Windows: Redeem an iTunes allowance, gift certificate, or Gift Card
    B-rock

  • 9006Connection has already been closed

    I am using WL server 6.1 SP2 with Apache plugin. I am continuously getting the
    following message in my app server log
    9006Connection has already been closed.
    Any ideas what is causing this message?
    Thanks

    Hi,
    Problem might be that your statement times out or your connection is getting closed when the statement executes.
    --Sushant                                                                                                                                                                                                                                                                       

  • Stream has already been closed - in SQL Developer v4.0.0.12

    Within SQL Developer v4.0.0.12 (Build 12.84) I have "Stream has already been closed" error message in the "Query result" pane.
    Used SQL:
         select * from all_mviews;
    Oracle11g Database v11.2.0.3 but this query works fine within SQL*Plus.
    When I select all the columns, I have the same error:
         select OWNER, MVIEW_NAME, CONTAINER_NAME, QUERY, QUERY_LEN, UPDATABLE, UPDATE_LOG, MASTER_ROLLBACK_SEG,
                MASTER_LINK, REWRITE_ENABLED, REWRITE_CAPABILITY, REFRESH_MODE, REFRESH_METHOD, BUILD_MODE,
                FAST_REFRESHABLE, LAST_REFRESH_TYPE, LAST_REFRESH_DATE, STALENESS, AFTER_FAST_REFRESH, UNKNOWN_PREBUILT,
                UNKNOWN_PLSQL_FUNC, UNKNOWN_EXTERNAL_TABLE, UNKNOWN_CONSIDER_FRESH, UNKNOWN_IMPORT, UNKNOWN_TRUSTED_FD,
                COMPILE_STATE, USE_NO_INDEX, STALE_SINCE, NUM_PCT_TABLES, NUM_FRESH_PCT_REGIONS, NUM_STALE_PCT_REGIONS
           from all_mviews;
    I though it was the QUERY column (datatype is LONG), but the following SQL works fine:
         select OWNER, MVIEW_NAME, CONTAINER_NAME, QUERY, query_len, updatable, update_log, master_rollback_seg,
                master_link, rewrite_enabled, REWRITE_CAPABILITY, REFRESH_MODE, REFRESH_METHOD, BUILD_MODE,
                FAST_REFRESHABLE, LAST_REFRESH_TYPE, LAST_REFRESH_DATE, STALENESS, AFTER_FAST_REFRESH, UNKNOWN_PREBUILT,
                UNKNOWN_PLSQL_FUNC, UNKNOWN_EXTERNAL_TABLE, UNKNOWN_CONSIDER_FRESH, UNKNOWN_IMPORT, UNKNOWN_TRUSTED_FD,
                COMPILE_STATE, USE_NO_INDEX, STALE_SINCE, NUM_PCT_TABLES
           from all_mviews;
    just left out some columns (at the end).
    This works also, all columns but just leaving out the QUERY column:
         select OWNER, MVIEW_NAME, CONTAINER_NAME, QUERY_LEN, UPDATABLE, UPDATE_LOG, MASTER_ROLLBACK_SEG, MASTER_LINK,
                REWRITE_ENABLED, REWRITE_CAPABILITY, REFRESH_MODE, REFRESH_METHOD, BUILD_MODE, FAST_REFRESHABLE,
                LAST_REFRESH_TYPE, LAST_REFRESH_DATE, STALENESS, AFTER_FAST_REFRESH, UNKNOWN_PREBUILT, UNKNOWN_PLSQL_FUNC,
                UNKNOWN_EXTERNAL_TABLE, UNKNOWN_CONSIDER_FRESH, UNKNOWN_IMPORT, UNKNOWN_TRUSTED_FD, COMPILE_STATE,
                USE_NO_INDEX, STALE_SINCE, NUM_PCT_TABLES, NUM_FRESH_PCT_REGIONS, NUM_STALE_PCT_REGIONS
           from all_mviews;
    It seams that these queries are reaching the limit (of data transfer) within SQL Developer v4.0.0.12 (note this was also a problem in SQL Developer v3.x).

    Hi Guy,
    Did you happen to see this recent discussion?  SQL Developer v4 giving error 'Stream has been closed' while querying tables containing long data
    I recommend trying the workaround described there just in case your issue also relates to LONG column:
    Add the following line in sqldeveloper.conf file:
       AddVMOption -Doracle.jdbc.useFetchSizeWithLongColumn=true
    Regards,
    Gary
    SQL Developer Team

  • Error Message: "One of the base documents has already been closed".

    Hello everyone
    I would appreciate very much if someone can help me.  The following error message prompts up when trying to create a Credit Note BASED on a A/R Invoice: "One of the base documents has already been closed". it is necesssary to say that we are not changing anything in between the two documents.
    We are running SAP Business One 2007A PL49.
    Thanks very much
    Claudia

    Hi.
    Please read this SAP Note: [854781 Error message "Invoice is already closed or blocked".|https://websmp230.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=S&note_numm=0001290054|Click here to view].
    This issue could be related to decimal places in amounts.
    This could be caussed by changing the decimal places for amounts, prices, etc. in General Settings.
    Regards.

  • Error: One of the base documents has already been closed (-10)

    I have a web service to get and set pick lists and add delivery notes via DI Server. but I have one scenario that causes the error 'Error: One of the base documents has already been closed (-10)':
    i have a pick list with item A1 with a quantity of 10. I pick and delivery 3. now the pick list is closed and in the picklist creation dialog I can choose the remaining 7 of A1 for another picklist. but if I do so and then try to pick and delivery the remaining 7, I'm getting that error. The sales order, that is the base document of the pick list and the delivery, is still 'open'. so, what base document is meant here?

    I found the error. I tried to add the DocumentsAdditionalExpenses to the second delivery, too, and this is not possible.

  • Can't download to a new computer? Getting message this code has already been redeemed.

    I switched to a new laptop and when I tried to redownload creative cloud I was unable to get my full version back. When I try to redeem and download I get an error message. The most it let me do was run a 30 day trial for each program to get by. This worked fine on my old computer- I have a full subscription to Creative Cloud that was complementary of my design school and includes all features in their full versions.
    The code I was given that no longer works is:
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Please help!

    Hello! My redemption code was [removed]
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Hover your mouse over Rajshree's picture and select message to send a PM (Private Message)
    Thanks!
    Ellie Goodman

Maybe you are looking for