Feature 'nested external environment calls' not implemented

Hi.
I've created a .Net 3.5 DLL which is called by a stored procedure using CLR in a trigger.
Inside one of the functions I've got an update-statement against the same table as the trigger which calls the CLR code.
That update results in a SAExeption:
30.04.2014 14:19:55 (ConnID. 89) - W747lnr=4000996, Error: Feature 'nested external environment calls' not implemented
iAnywhere.Data.SQLAnywhere.SAException: Feature 'nested external environment calls' not implemented
   at iAnywhere.Data.SQLAnywhere.SACommand.ExecuteReader()
   at CLRKalkyle.Exts.Execute(SAConnection conn, String sql, Object[] args)
   at CLRKalkyle.CalculusFunctions.DivInnfrakt(SAConnection conn, Pallet palle, Decimal totkvant)
   at CLRKalkyle.CalculusFunctions.GetInnfrakt(SAConnection conn, Int32 klientnr, String uttakstype, Int32 uttaksnr, Int32 w722lnr)
   at CLRKalkyle.Exts.DivKalkyle(SAConnection conn, Int32 klientnr, String uttakstype, Int32 uttaksnr, Int32 w722lnr, Int32 w747lnr)
   at CLRKalkyle.CLRKalkyle.GenKalkyle(Int32 klientnr, Int32 w747lnr)
I'm using SAServerSideConnection without transaction (the CLR is called per row in the database).
Is it possible to run the update in a new thread, or perhaps a new connection?
Or do I have to run the update after all the other code is finished?
Hope you understand my problem.
Regards,
Bjarne Anker

This is the trigger:
ALTER TRIGGER "wau_w747_maaoppdat_on" after update of MaaOppdateres
order 2 on MTS.W747KalkyleData
referencing old as old_name new as new_name
for each row when(old_name.MaaOppdateres = 0 and new_name.MaaOppdateres = 1)
begin
    call spw_GenKalkyle_w747lnr(new_name.klientnr,new_name.w747lnr)
end
Stored procedure:
ALTER PROCEDURE "MTS"."spw_GenKalkyle_w747lnr"( in p1 integer,in p2 integer )
external name 'D:\\SVN\\Trading\\CLRKalkyle\\CLRKalkyle\\bin\\Release\\CLRKalkyle.dll::CLRKalkyle.CLRKalkyle.GenKalkyle(int,int)' language clr
This is where the exception occurs in the program:
sql = @"update w747kalkyledata w747
set w747.maaoppdateres = 1
from w722fakturalinje w722
where w722.KlientNr = ?
and w722.TilgangsType = ?
and w722.TilgangsNr = ?
and w722.tilgangsnr > 0
and w722.klientnr = w747.klientnr
and w722.uttakstype = w747.uttakstype
and w722.uttaksnr = w747.uttaksnr
and w722.w722lnr = w747.w722lnr
and w722.uttakstype = 'DF'
and w747.maaoppdateres = 0";
SAServerSideConnection.Connection.Execute(sql, palle.klientnr, palle.tilgangstype, palle.tilgangsnr);
In short, the trigger is at the table W747 and the code fails when running the update against the same table.
I guess it would be best to send the sourcecode via email if you need to look at the whole picture.
Regards,
Bjarne Anker

Similar Messages

  • External interface.call is not working

    hi, i am trying to call one java script function in
    actionscript by using External interface.call method. but its not
    working .can u pls tell me why this happend

    "angadala" <[email protected]> wrote in
    message
    news:gmpc58$g9p$[email protected]..
    > skill status.mxml
    >
    >
    > <mx:Script>
    > <![CDATA[
    > if (ExternalInterface.available) {
    > ExternalInterface.call(getDataFromXml);
    > }
    >
    > it is javascript
    > <script type="javascript">
    > var data = new Array();
    > data[0]=[1,2,3];
    > function getData()
    > {
    > return data;
    > }
    > </script>
    > </head>
    > <body>
    > <div id="SkillStatus">
    > <p>Alternative content</p>
    > </div>
    >
    > </body>
    > </HTML>
    >
    1) Your JavaScript function name and the function name you
    are calling
    don't match.
    2) On the Flex side, you are calling a JS function that I
    think you are
    expecting to return a value, but not assigning the result of
    the value to a
    function.

  • Error [Microsoft][ODBC Excel Driver]Optional feature not implemented...

    Hi All,
    when i add setAutoCommit(false),
    i got run error [Microsoft][ODBC Excel Driver]Optional feature not implemented.
    i just want to insert data into excel using db.
    can anyone give suggestion??
    here my code:
    public void insertDatabase( ){
                String rule = "fty";
                double weight = 0.245;
               try{
                    String sql = "INSERT INTO [Sheet2$] ( Rule, Weight ) " +
                      "VALUES ( '"+ rule +"', '" + weight + "' )";
                     int row = myStatement.executeUpdate(sql);
                   myConnect.setAutoCommit(false);
                     myResultSetPapar = myStatement.executeQuery("Select * from [Sheet2$]");
                catch(SQLException e){
                            System.out.println(e.getMessage());
               }//catch
           }

    is it true that my driver does not supported??
    my MS Excel version 2002
    and driver vers. 4.0

  • Getting [Microsoft][ODBC SQL Server Driver] Optional feature not implemented

    I am using below mentioned code to insert values in MSAccess 2000 which having table structure as mentioned below:-
    Field Name Data Type
    TodaysDate Date/Time
    Cart ID Number
    Client Name Text
    Campaign Text
    Team & Segment Text
    Duration Number
    Tape ID Text
    Start Date Date/Time
    End Date Date/Time
    Station Text
    Code:-
    private boolean enterDataIntoMSAccessDatabaseusingPreparedStatement()
       try {
      ps = connection.prepareStatement("INSERT INTO Cart ID Details VALUES (?,?,?,?,?,?,?,?,?)");
      System.out.println("After Query");
       catch (SQLException se) {
      generateErrorMessage("Error in Prepared Statement \n " + se.getMessage() );
       return false;
       catch (Exception e)
      generateErrorMessage("Unexpected Error Occured \n " + e.getMessage());
       String todaysDate = cartIDApplicationAddCartIDDatejTextField.getText().trim();
       String cartID = cartIDApplicationAddCartIDCartIDjTextField.getText().trim();
       String clientName = cartIDApplicationAddCartIDClientNamejTextField.getText().trim();
       String campaign = cartIDApplicationAddCartIDCampaignjTextField.getText().trim();
       String teamSegment = cartIDApplicationAddCartIDTeamAndSegmentjTextField.getText().trim();
       String duration = cartIDApplicationAddCartIDDurationjTextField.getText().trim();
       String tapeID = cartIDApplicationAddCartIDTapeIDjTextField.getText().trim();
       String startDate = cartIDApplicationAddCartIDStartDatejTextField.getText().trim();
       String endDate = cartIDApplicationAddCartIDEndDatejTextField.getText().trim();
       String station = cartIDApplicationAddCartIDDELjCheckBox.getText().substring(0, 3);
      System.out.println(station);
       try {
      System.out.println("Before ps.setString()");
      SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-mm-dd", Locale.ENGLISH);
      System.out.println("Simple Date Format");
       /*ps.setString(1, todaysDate);
      ps.setString(2, cartID );
      ps.setString(3, clientName);
      ps.setString(4, teamSegment);
      ps.setString(5, duration);
      ps.setString(6, tapeID);
      ps.setString(7, startDate);
      ps.setString(8, endDate);*/
      System.out.println("1");
      ps.setDate(1, new java.sql.Date(simpleDateFormat.parse(todaysDate).getTime()));
      ps.setString(2, cartID);
      ps.setString(3, clientName);
      ps.setString(4, campaign);
      ps.setString(5, teamSegment);
      ps.setString(6, duration);
      ps.setString(7, tapeID);
      ps.setDate(8, new java.sql.Date(simpleDateFormat.parse(startDate).getTime()));
      ps.setDate(9, new java.sql.Date(simpleDateFormat.parse(endDate).getTime()));
      ps.setString(10, station);
      System.out.println("After ps.setString()");
      ps.executeUpdate();
       catch (SQLException se) {
      generateErrorMessage("Error while inserting data in database \n " + se.getMessage());
       return false;
       catch (Exception e)
      generateErrorMessage("Unexpected Error Occured \n" + e.getMessage() );
       return true;
    I got below error after implementing the above code:-
    [Microsoft][ODBC SQL Server Driver]Optional feature not implemented.
    Kindly help me for the same.

    >>  [Microsoft][ODBC SQL Server Driver]  
    I don't see anything Oracle in your question.   It looks like you're getting an error using Microsoft's SQL Server driver, did you mean to post this to a forum on  Microsoft's site perhaps?

  • Microsoft][ODBC SQL Server Driver]Optional feature not implemented

    this is my program code for java jdbc:odbc SQL connectivity
    but iam getting the error as
    *java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented*
    package desktopapplication2;
    import java.sql.*;
    * @author Bharat Raj Verma
    public class db {
        void get(String gr,String fn,String ln,String job ,Integer rate,Integer ot,String att,long amt,String cmt)
          try
             Connection con=null,con1=null;
            Statement stmt2;
            String query = "Update dbo.attend SET Gr = ? , fn = ? ,ln = ?, job = ? , rate = ? , ot = ? , att = ? ,amt = ? , comment = ?";
           // String query1 = "Select accnum rom dbo.newacc where accnum= ?";
            String url = "jdbc:odbc:bharat";
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            con = DriverManager.getConnection(url,"","");
            con1 = DriverManager.getConnection(url,"","");
            System.out.println("connection Established");
            stmt2 = con.createStatement();
            Statement stmt = con1.createStatement();
            ResultSet rs;
            rs=stmt.executeQuery("select * from dbo.attend");
            while(rs.next())
                String cmp1= rs.getString("gr");
                if(cmp1.equalsIgnoreCase(gr))
                        PreparedStatement ps1 = con.prepareStatement(query);
                        System.out.println("Insisde RS");
                        ps1.setString(1,gr);
                        ps1.setString(2,fn);
                        ps1.setString(3,ln);
                        ps1.setString(4,job);
                        ps1.setInt(5,rate);
                        ps1.setInt(6,ot);
                        ps1.setString(7,att);
                        ps1.setLong(8,amt);
                        ps1.setString(9,cmt);
                        System.out.println("SSS");
                      //  ps1.setString(1,gr);
                        ps1.executeUpdate();
                       System.out.println("Success");
          catch(Exception e1)
              System.err.println(e1);
    }This is the SQL table in which iam trying to insert the value
    SET ANSI_PADDING OFF
    create table attend
    Gr VARCHAR(20) primary key,
    fn VARCHAR (25),
    ln VARCHAR(25),
    job VARCHAR(25),
    rate integer,
    ot integer,
    att varchar(10),
    amt varchar (10),
    comment varchar(70)
    )the complete output is
    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\Bharat Raj Verma\My Documents\NetBeansProjects\DesktopApplication2\build\classes
    compile:
    run:
    connection Established
    Insisde RS
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
    BUILD SUCCESSFUL (total time: 29 seconds)
    here is the stack trace
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6958)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
    at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterBigint(JdbcOdbc.java:1225)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setLong(JdbcOdbcPreparedStatement.java:592)
    at desktopapplication2.db.get(db.java:47)
    at desktopapplication2.DesktopApplication2View.jButton1ActionPerformed(DesktopApplication2View.java:394)
    at desktopapplication2.DesktopApplication2View.access$800(DesktopApplication2View.java:22)
    at desktopapplication2.DesktopApplication2View$4.actionPerformed(DesktopApplication2View.java:183)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.Component.processMouseEvent(Component.java:5517)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
    at java.awt.Component.processEvent(Component.java:5282)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3984)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1791)
    at java.awt.Component.dispatchEvent(Component.java:3819)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Plz can anyone help ???

    and what was the solution?
    thanks in advance
    brindy

  • [ODBC SQL Server Driver]Optional feature not implemented

    Hi,
    Has anyone faced such error @ analysis,
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 16001] ODBC error state: S1C00 code: 0 message: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented. [nQSError: 16012] ODBC error occurred while binding the parameters of a SQL statement. (HY000)
    we are having some issue on DBfeature check box issue.
    Thanks
    Deva

    Hi,
    Yes. after that only i am getting error. if i enabled Query DBMS then report is working with out error (we don't want to use query dbms option that's i just query dbms off option by Reset to default) then its thoewing error.
    Thanks
    Deva

  • Mysql show result-- com.mysql.jdbc.NotImplemented: Feature not implemented

    Hello,
    I have set a database and I am trying to show a simple select.I have this code for example:
    String SQL = "SELECT * FROM DatabaseName.tableName";
                         stmt = (Statement) conn.createStatement();
                         rs = (ResultSet) stmt.executeQuery(SQL);
                         while (rs.next()) {
                            System.out.println(rs.getArray(3));
                         }And all I get is an exception:
    com.mysql.jdbc.NotImplemented: Feature not implemented
    at com.mysql.jdbc.ResultSet.getArray(ResultSet.java:1043)
    Is this right?I have tried other methods but I get the above.How to show the result.
    It is in 3rd column double value.

    Are you guys always this cranky? Who's cranky? It's important for the integrity of these forums that misinformation isn't left lying around uncorrected. If that makes you cranky, try elsewhere where the standards may not be so high.
    I posted something that works, now is it exactly as whatever getArray does?No.
    Probably not.Just a minute. You said here that 'the work around code' is something like this, and here that 'it actually is the same result'. You were mistaken. Twice. You are now in the process of changing your mind. Let me help you. It is definitely not exactly what getArray() does. Not even close. Completely different. getArray() gets an array directly from the database from a single column in the current row in the result set. Your code constructs an array from a single column across all rows in the result set. There is no comparison.
    What's wrong with helping outWhat's wrong with getting it right? What's wrong with pointing out an error? What's wrong with admitting when you're mistaken? What's wrong with alerting the OP not to mention all future readers of this thread that it contains misinformation? What's wrong with you finding out that you were wrong?
    and posting what you think it should say
    rather than just being negative?As a matter of fact nobody was 'just negative'. I pointed out exactly what the difference between your code and getArray() is. But by 'negative' do you mean pointing out that you were wrong? Nothing wrong with that.

  • TS3367 I bought this ipad 3 wifi+cellular from Saudi Arabia but I live in Pakistan and so want to use call n FaceTime feature in it but can not find these features in my ipad so I really need help in this regard? Help would really be appriciated Thankyou

    I bought ipad 3 wifi+cellular from Saudi Arabia a month back and can not find a call feature or even FaceTime feature on it. I really have struggle online to find a way out but could not find any way out to use these features of ipad. I no not live in Saudi Arabia. My purpose of purchasing "cellular ipad" was to use cellular features whereas sadly I am not able to do so. Please I need a solution to this problem and would really appreciate the HELP. :)

    Aqdas Hayat wrote:
    .... Please I need a solution to this problem and would really appreciate the HELP.
    The Device you have, because of where it was Purchased will never be able to have FaceTime.
    All you can do is sell it and buy a Device from a non restrictive country.
    FaceTime in the Middle East

  • External PSTN calls are not making it to CUE voicemail?

    External PSTN calls are not being forwarded to my Unity Express Voicemail. Internall calling and forwarding to Voicemail is working like a charm. However, calls from the outside just busyout after so many rings and never make it to voicemail.
    Can some one help point me in the right direction. I think it might be as simple as dial-peer problem.
    Thanks in advance,
    Curt

    I'm assuming this is CME-integrated. Basically, if you have a PRI connection, the easiest thing to do is to do a 'debug isdn q931' and check out the called number. Or if you have an FXO connection to the PSTN, then you've got some kind of 'connection plar' under the voice port to give you the called number. Basically the called number must match a destination pattern under a voip dial-peer pointing to CUE (you can use 'debug ccsip message' and look for an INVITE message to see where it's going to). Next, it has to match a trigger ('show ccn trigger' in the CUE CLI) to envoke a particular application, such as voicemail. If you have trouble, what we'll need to see is the exact called number (either via the isdn q931 debug or connection plar configuration statement) and the configuration (show run) from the CME and the CUE.
    Lastly, take a look at the following notice:
    http://www.cisco.com/en/US/partner/products/sw/voicesw/ps5520/products_field_notice09186a008023cfe2.shtml
    which might apply to your situation.

  • Help on "optional feature not implement" exception

    I am trying to use JDBC to update the MS Access table. the SQL is :
    " insert int table1 ([file name],[file description]) values ('DXXCP','RPF PRINT FILE FOR UPDATES');
    By runing this statement, I keep getting "optional feature not implemented" exeption. can any one tell me how to insert this record into Access using JDBC? thanks

    This successfully inserted your strings into an Access database:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.sql.SQLException;
    public class InsertTest
        public static void main(String [] args)
            try
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                Connection connection = DriverManager.getConnection("jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=InsertTest.mdb");
                String query = "INSERT INTO table1([file name],[file description]) VALUES(?, ?)";
                PreparedStatement statement = connection.prepareStatement(query);
                statement.setString(1, "DXXCP");
                statement.setString(2, "RPF PRINT FILE FOR UPDATES");
                int rowCount = statement.executeUpdate();
                System.out.println(rowCount + " rows affected");
                statement.close();
                connection.close();
            catch (SQLException sqle)
                System.err.println("SQL State: " + sqle.getSQLState());
                System.err.println("SQL Error: " + sqle.getErrorCode());
                sqle.printStackTrace(System.err);
            catch (Exception e)
                e.printStackTrace(System.err);
    }Use PreparedStatement.

  • Have anyone seen this exception before??? setNull() feature not implemented

    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
    Have anyone seen this exception before????? I see this exception when I use the "setNull()" function in the preparedstatement class.

    statement.setNull(index, Types.NUMERIC); //works
    statement.setNull(index, Types.DECIMAL); //does not work

  • SetDate Error - Optional feature not implemented

    Hi I am trying to execute a PreparedStatement to do an insert, I to the best of my knowledge am using it correctly but I still get this ERROR:
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implementedHere is a code sample:
    //SQL Create Table
    create table[test]
         [id] int not null identity primary key,
         [name] varchar(30) not null,
    --     [date] datetime not null     --Same result with this
         [date] smalldatetime not null
    GO
    //Java Code
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    public class DataExporter {
        private Connection conn = null;
        private PreparedStatement prep = null;
        public DataExporter() throws Exception{
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                conn = DriverManager.getConnection("jdbc:odbc:MyDatabaseDNSName");
                prep = conn.prepareStatement("INSERT INTO [TEST] ([NAME],[DATE]) VALUES(?,?)");
        public boolean run(String name, java.sql.Date date) throws Exception{
                prep.setString(1, name);
                prep.setDate(2, date);
                return prep.execute();
        public static void main(String[] args) throws Exception{
            DataExporter dExp = new DataExporter();
            java.sql.Date date = new java.sql.Date(System.currentTimeMillis());
            System.out.println("Check Value:\t" + date.toString());
            System.out.println("Result:\t" + dExp.run("Neil", date));
    }This is my results:
    Check Value:     2008-09-10
    Exception in thread "main" java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
            at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
            at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
            at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterDate(JdbcOdbc.java:808)
            at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setDate(JdbcOdbcPreparedStatement.java:826)
            at DataExporter.run(DataExporter.java:14)
            at DataExporter.main(DataExporter.java:21)
    Java Result: 1Can someone please tell me why and how to fix the above to get it to work.(I am using Java 6 and MSSQL 2000)
    Thanx in advance

    gtRpr wrote:
    Thanx yawmark, I will try it.
    Just tell me: although I am using Java 6 at home,
    I use Java 1.4 at work were I will actually need this,
    What is the minimum version of Java that JTDS will work with(1.1, 1.2, 1.3, 1.4, 1.5, 1.6)? [JTDS feature matrix|http://jtds.sourceforge.net/features.html] (from the link I already posted).
    ~

  • Error when update: Optional feature not implemented

    Hi, all,
    I got the exception: "[Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented" when I use MS Access to update my record.
    I searched the forum, but i couldn't get my answer. I can do select and insert into this table. but i couldn't update it. I am using jdbc-odbc driver. Thanks.
    The code I am using:
    int date = 186;
    String id = "BUF";
    String max = id + "_MX";
    //String min = id + "_MN";
    //String prec = id + "_P";
    query = "update " + tableName + " set " + max + "=? where date=?";
    try {
    ps = con.prepareStatement(query);
    ps.clearParameters();
    ps.setFloat(1, getMax());
    // ps.setFloat(2, getMin());
    // ps.setFloat(3, getPrecip());
    ps.setInt(2, date);
    result = ps.executeUpdate();
    ps.close();
    } catch (SQLException e) {
    System.out.println("Database error, " + e.getMessage());

    Thanks everybody! The problem was solved. I should use setDouble() other than setFloat() method.

  • CUE AA redirect to external call not disconnecting

    Hello,
    I have a problem with cue AA redirect to external number not disconnecting only when the external number does not answer; if the external number redirected to does answer, the lines disconnects normally.
    My FXO config is as below for all the lines:
    voice-port 0/0/0
     trunk-group AllFXO
     supervisory disconnect dualtone mid-call
     input gain 3
     output attenuation -1
     echo-cancel coverage 32
     cptone KW
     timeouts initial 5
     timeouts interdigit 3
     timeouts call-disconnect 3
     timeouts ringing 5
     timeouts wait-release 1
     connection plar 665
     impedance complex2
     caller-id enable

    Hi There,
    I noticed that you are getting ISDN cause code 21, not sure why though but the cause code information is interesting...
    Cause No. 21 - call rejected.
    This cause indicates that the equipment sending this cause does not  wish to    accept this call. although it could have accepted the call because the  equipment sending this cause is neither busy nor incompatible. This  cause may also be generated by the network, indicating that the call was  cleared due to a supplementary service constraint. The diagnostic field  may contain additional information about the supplementary service and  reason for rejection.
    What it means:
    This is usually a telco issue. The call never reaches the final  destination, which can be caused by a bad switch translation, or a  misconfiguration on the equipment being called.
    Now I don't know if it is actually a Telco issue to be honest, because sometimes bad number presentation can cause this issue as well and the carriers switch rejects the call with Cause Code 21 if no other cause code is suitable.
    Check your call-forwarded number, make sure you have the outside line number being presented, although it would seem it is anyway otherwise the carrier wouldn't see a call.
    Can you please do a "debug isdn q931" and provide us two maybe three examples please
    Cheers,
    David.

  • When opening certain websites or clicking links from google results, I get this popup message "Error: 'setTimeout' called on an object that does not implement i

    The message says: "Error: 'setTimeout' called on an object that does not implement interface Windows" Multiple message windows for this get open. And there is an OK button under it. I have to click on OK button on all the windows to be able to continue with working on the browser again.

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, maybe an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

Maybe you are looking for

  • "Print" to pdf function missing in Word and other strange print behaviour

    I'm trying to narrow down an issue I'm having with printing. I just noticed that the ability to creat a pdf in Word (print -> save as pdf) has disappeared. The button is now gone for some strange reason. I also noticed when trying to print a Keynote

  • "Forgot Password" link doesn't generate an e-mail ...

    Hi, I've been trying for five days to get access to a Skype account I set up but have not used for a few months. I apparently have the password wrong. I've used the "Forgot Password" link on the login page. That link should automatically generate an

  • Move two R/3 4.7 istance from a box V5R2 to a new box V6R1

    Hi, we need to move two existing istance based on R/3 Enterprise 4.7 (with kernel 6.20) to a new host V6R1. In the past I remember a SAP note about move a istance to new host without r3install/sapinst but with save/restore command and other SAP-cmd s

  • OAS 4.0.8.1 - JServlet Cartridge - error OWS-04769

    Hi, I'm trying to run servlets under the JServlet Cartridge of OAS. My servlet uses the HttpSession class to track sessions. After receiving requests from 3 clients the servlet stops running with the following messages in wrb.log: 08-15-2000 14:22:56

  • Cannot open previous projects

    I have been trying to open a previously created project and I get this error message saying, "The project appears to be damageed, it cannot be opened."  I get this with almost, if not, ALL the project I have worked on, created a file and saved.  What