Vibe Connector - Problem 78

Hi,
Running GW-check on a Vibe connector enabled GW-account gives a lot of "Problem 78"
Tried two accounts and both show the same error.
The accounts are in two separate environments and share only the GroupWise system.
The sync is working, but the problems i GW-database don't sound healthy.
Anyone else with this problem and found a solution?
"Problem 78- Item record has invalid field NGW_NOT_READ"
Running on Linux.
Vibe 3.2
GW 8.0.2 SP2HP3
NDS, 1.2.1 Build 730.
Best regards
Joakim

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

Similar Messages

  • Vibe connector:

    Hi everyone,
    i'm having an error configuring the GroupWise <--datasync--> vibe. The following problem is in the vibe app interface log.
    Code:
    ERROR [Thread-9] [calsync:95] [userID:user-x] [eventID:] [objectID:] [Outbound Sync] Outbound Team Calendar and Task Folder synchronization error processing user [user-x]
    And when i look in the the "webmin -> vibe connector -> profiles -> add new profile -> folder selection" (translated from dutch -> english, might be a bit different), i see no folders, but the message:
    Code:
    "No JSON object could be decoded".
    Which i think might be related.
    edit: addtional info:
    Server OS vibe: SLES11sp1 x86_64
    Vibe version: 3.2
    Server OS datasync: SLES11sp2 x86_64
    data sync version: 1.2
    vibe connector version: v1.0.0.6210
    GW connector version: v.1.2.0.2836
    anyone got a clue?
    Regards,
    Justin

    On 19/11/2012 13:56, JZandbergen wrote:
    > The problem is fixed in:
    > datasync-syncengine-connector-vibe-1.0.1.6338-1.1.noarch.rpm which you
    > can find 'here'
    > (http://download.novell.com/sendredir...t&nohost=false)
    The correct link is http://download.novell.com/Download?...d=QArp8E76Ujw~
    HTH.
    Simon
    Novell/SUSE/NetIQ Knowledge Partner
    Do you work with Novell technologies at a university, college or school?
    If so, your campus could benefit from joining the Novell Technology
    Transfer Partner (TTP) program. See novell.com/ttp for more details.

  • Vibe Connector URL Error

    Vibe connector .6210.
    The following error is recorded in the default.pipeline.vibe-Application
    log.
    URLError: <urlopen error [Errno 1] _ssl.c:482: error:140770FC:SSL
    routines:SSL23_GET_SERVER_HELLO:unknown protocol>
    Obviously this is a protocol error, but what is it actually telling me?
    Besides the fact that the connector never completes startup.
    JoeK

    Originally Posted by JKress
    Vibe connector .6210.
    The following error is recorded in the default.pipeline.vibe-Application
    log.
    URLError: <urlopen error [Errno 1] _ssl.c:482: error:140770FC:SSL
    routines:SSL23_GET_SERVER_HELLO:unknown protocol>
    Obviously this is a protocol error, but what is it actually telling me?
    Besides the fact that the connector never completes startup.
    JoeK
    Have not setup the Vibe connector before... so not sure. But it could be that there is an issue with the supplied SSL certificates, or the site is not listening on 443 (hinting to Vibe defaulting to 8080 and 8444).
    Have you set the 8443 port and if not, if port 443 listening for Vibe services?
    Cheers,
    Willem

  • JSTL - MySQL Connector problem

    Hello! I need your help. I don't actually know the reason, but *<sql:query>* doesn't work properly.
    So I have such a code:
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql_rt" %>
    <sql:setDataSource var="datasource"
    driver="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/publish"
    user="root" password="root"/>
    <sql:query var="books" dataSource="${datasource}">
    SELECT id, title, price FROM book
    </sql:query>
    <html>
    <head>
    <title>A First JSP Database</title
    </head>
    <body>
    <table border="1">
    <tr>
    <td>id</td><td>title</td><td>price</td>
    </tr>
    <c:forEach items="${books.rows}" var="row">
    <tr>
    <td><c:out value="${row.id}" /></td>
    <td><c:out value="${row.title}" /></td>
    <td><c:out value="${row.price}" /></td>
    </tr>
    </c:forEach>
    </table>
    </body>
    </html>The error I get when calling http://localhost:8080/DataAccess/bookList.jsp
    org.apache.jasper.JasperException: Exception in JSP: /bookList.jsp:7
    4:                  driver="com.mysql.jdbc.Driver"
    5:                     url="jdbc:mysql://localhost:3306/publish"
    6:                    user="root" password="root"/>
    7: <sql:query var="books" dataSource="${datasource}">
    8:   SELECT id, title, price FROM book
    9: </sql:query>
    10: <html>May be the reason is that the subfolder WEB-INF is badly configured.
    I have such subfolders in WEB-INF:
    */lib*
    jaxen-full.jar
    jdbc2_0-stdext.jar
    jstl.jar
    mysql-connector-java-3.0.9-stable-bin.jar
    saxpath.jar
    standard.jar
    xalan.jar
    xercesImpl.jar
    xml-apis.jar
    */tld*
    c-rt.tld
    c.tld
    fmt-rt.tld
    fmt.tld
    sql-rt.tld
    sql.tld
    x-rt.tld
    x.tldThe question is what is configured or done incorrectly? I am not quite familiar with JSP and JSTL. Thank you for any help.
    P.S I have already used MySQL. So it is set and configured as it is needed to be.

    ThomYork
    It didn't help.
    Just in case, I run tomcat 5.5.27-2 on Arch Linux; MySQL 5.0.77; Apache 2.2.11
    I tried to put mysql-connector-java-3.0.9-stable-bin.jar into
    /opt/tomcat/server/lib
    /opt/tomcat/shared/lib
    It didn't help.
    bandarurm
    After some manipulation i get such an error in my script:
    *exception*
    {noformat}org.apache.jasper.JasperException: Unable to get connection, DataSource invalid: "Unable to connect to any hosts due to exception: java.net.ConnectException: Connection refused"
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:460)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:355)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}
    *root cause*
    {noformat}javax.servlet.ServletException: Unable to get connection, DataSource invalid: "Unable to connect to any hosts due to exception: java.net.ConnectException: Connection refused"
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:841)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774)
         org.apache.jsp.bookList_jsp._jspService(bookList_jsp.java:89)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}
    *root cause*
    {noformat}javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "Unable to connect to any hosts due to exception: java.net.ConnectException: Connection refused"
         org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:276)
         org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:159)
         org.apache.jsp.bookList_jsp._jspx_meth_sql_005fquery_005f0(bookList_jsp.java:130)
         org.apache.jsp.bookList_jsp._jspService(bookList_jsp.java:66)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}
    dsdsf
    I tried this. I downloaded the example with the source and WEB-INF directory. It doesn't work.
    Here is an error:
    *exception*
    {noformat}org.apache.jasper.JasperException: javax.servlet.jsp.JspTagException: In <driver>, invalid driver class name: "java.lang.ClassNotFoundException: com.mysql.jdbc.Driver"
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:460)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:355)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}
    *root cause*
    {noformat}javax.servlet.ServletException: javax.servlet.jsp.JspTagException: In <driver>, invalid driver class name: "java.lang.ClassNotFoundException: com.mysql.jdbc.Driver"
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:837)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774)
         org.apache.jsp.executeQuery_005fJstlSqlTag_jsp._jspService(executeQuery_005fJstlSqlTag_jsp.java:116)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}
    *root cause*
    {noformat}java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1386)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1232)
         java.lang.ClassLoader.loadClassInternal(ClassLoader.java:336)
         java.lang.Class.forName0(Native Method)
         java.lang.Class.forName(Class.java:264)
         org.apache.taglibs.standard.tag.common.sql.DataSourceWrapper.setDriverClassName(DataSourceWrapper.java:46)
         org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport.doStartTag(SetDataSourceTagSupport.java:102)
         org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag.doStartTag(SetDataSourceTag.java:67)
         org.apache.jsp.executeQuery_005fJstlSqlTag_jsp._jspx_meth_sql_005fsetDataSource_005f0(executeQuery_005fJstlSqlTag_jsp.java:137)
         org.apache.jsp.executeQuery_005fJstlSqlTag_jsp._jspService(executeQuery_005fJstlSqlTag_jsp.java:88)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    {noformat}Nothing with sql query works. So it seems that the problem is in tomcat's configuration.

  • CANON 350D with Apple camera connector problem !

    Dear all,
    Can somebody help me out with the following problem:
    When I connect my 350d to my new Apple video 60GB via the original Apple camera connector I get the message device unknown and it simple will not import any images stored on the 350 D
    Hope you can help since i'm now on holiday with a lot of phot

    I just got one of the camera connectors today and got it to work with the A620. My iPod froze the first time; I think because I plugged in the camera before turning it on. I've only transferred a few pictures so far. I'll probably fill up my 512MB card this week and see what happens. I'll repost if I have any problems.

  • Camera connector problem

    I have a Fujifilm F10 digital camera, iPod 4G with click wheel and camera connector. I have once successfully managed to transfer 6 photos from the camera to iPod with the connector. I just plugged them together and it did it automatically. I have now taken a lot more pictures and a few short videos. I tried the same again and it keeps saying "Card not inserted". I have checked the card is working in the camera and that all of the leads are tightly together. Any idea what the problem might be? Could it be due to the video clips?

    Make sure the 30 pin dock connector on the USB adaptor isn't damaged or dirty, if that isn't the case, plug the camera in, and then the adaptor. If that doesn't seem to work the adaptor may be defective.

  • Lightning connector problem

    I picked up my iPhone 5 yesterday and after getting it home and starting the long task of tranfering my thousands of songs onto the device, I noticed that there seems to a problem witht the Lightning connector. Most times when inserting the connector into the phone, there is no connection ie. no pluged in tone and unable to sync. I have found that by placing a slight downward pressure to the plug I can get it to start syncing, then after releasing the pressure it disconnects itself. I repeat, that this happens most, but not all of the time. Is anyone else noticing this or maybe I just need to try a new cable (which are not available in the HK apple store)
    Cheers
    Rhys

    I have gone through about 3 lightning connector cables over the last year.  They initially work, but later they go bad. 
    They start having the same symptoms described above where the cable will sometimes charge if you reverse it or press down on the cable.  Over time, they just stop working.  When connected via USB to my computer, I started getting an error message indicating that the device was not working properly and the computer stopped recognizing the device as an iPhone.
    Replacing the cable fixed the problem, but I'm wondering if there is a way to get the non-functional cables to work again or maintain them so they last longer.
    One thing I noticed is that over time the center gold connection wire turns black in color, as if it was burnt as the phone was charging.  I tried using an eraser to get the black stuff off to no avail.  I will try a Q-tip with alcohol next.  Wish there was a documented quick fix or maintenance plan for keeping the cables functional.

  • Connector problem with access enforcer

    Hi Guys,
    I am facing a really strange problem with my connectors.
    We have a test installation of GRC which was down for about 3 months.
    During this time we migrated our central SLD to another system so I needed to change the connection after getting the system up again.
    Anyhow I still can't modify, test or even create a new connector for access enforcer.
    The only error I get is "Action failed".
    I tried to analyze the logs but found no help there too.
    2007-06-18 20:41:56,833 [SAPEngine_Application_Thread[impl:3]_4] ERROR java.lang.NullPointerException
    java.lang.NullPointerException
         at com.virsa.ae.dao.sqlj.SAPConnectorDAO.iterToDTO(SAPConnectorDAO.sqlj:75)
         at com.virsa.ae.dao.sqlj.SAPConnectorDAO.findByConnectorName(SAPConnectorDAO.sqlj:15)
         at com.virsa.ae.configuration.bo.ConnectorsBO.findSAPConnectorDetails(ConnectorsBO.java:76)
         at com.virsa.ae.configuration.actions.ManageConnectorsAction.testConnection(ManageConnectorsAction.java:163)
         at com.virsa.ae.configuration.actions.ManageConnectorsAction.execute(ManageConnectorsAction.java:66)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:229)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:412)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Did anybody here face a problem like that?
    Kind regards,
    Bastian
    Message was edited by:
            Bastian Schneider
    Message was edited by:
            Bastian Schneider

    I had a simular problem with CC and I had to contact SAP. They gave me a script to run against the database that remove the connector. The problem seemed somewhat common for CC 5.1. Not sure if this applies to AE.

  • Connector problem : root not accessible

    I'm running a midlet and i try to get a file text from the computer i'm using with the wireless toolkit.
    But these lines don't work :
    String uri = "file:///c:/testinput.txt";
    InputConnection conn = (InputConnection) Connector.open( uri, Connector.READ );
    When I run it i get the message "is it OK to read your files?", i select yes and then i get an IOException : "Root is not accessible". Do I have to set permissions or something else?
    I am also suspecting MIDlets only being able to get data via http... I hope it's not that.
    I would be sooo happy if you helped me, I have no idea what's going on with this unaccessible root.

    My first guess would be that your mix of Support Package levels is giving you problems.

  • IPad 2 hdmi connector problem

    Just bought a hdmi connector tonight with the intention of watching Netflix.  Video works great.  However,  the audio is not working.  Static is so bad I can't hear anything.  Is there a problem with my setting or is my iPad defective???

    Thanks for the reply. I keep looking for the "Preference Tab" but there is none.
    Just ion case
    I am building the slide show on the Ipad 2
    I am running the latest updates in Keynote and my IPad 2
    I do see the "setting" with in the keynote app but nothing in there.
    Thanks

  • JDBC connector problem

    Hi All,
    I installed SAP BW 3.5 by following Installation Seqence in the mySAP ERP 2004 SR1 master guide,
    there are two servers under Visual Administator -> Cluster -> sapsid: one is "Server 0 10_37758"(I think this is Central Instance), another is "Server 0 12_93726" (it maybe dialog instance). The first server is empty, and I can see JDBC Conncetor, Connector Container and etc.
    In the runtime tab of JDBC Connector, the Drivers only inculdes System_Driver, is it correct?
    and the status of the connector jdbc, odbo, smla and sapq in the Connector Container, Connector 1.0 display as sap.com/com.sap.ip.bi.sdk.dac.connector.sapq/null
    sap.com/com.sap.ip.bi.sdk.dac.connector.xmla/null
    sap.com/com.sap.ip.bi.sdk.dac.connector.odbo/null
    sap.com/com.sap.ip.bi.sdk.dac.connector.jdbc/null
    and they are not activity. what problem are these?
    I tried to add JDBC Driver in JDBC Connector, the problem can't be fixed, please help me.
    I install all ECC IDES 5.0 and java components and database on same host which is windows 2003 with Oracle9i

    Hi there,
    Do i have to to put mysql.connecto.jar to the
    j2dk\lib\ext? I have not copy the files maybe this is
    a problem with the connector. What do you think?Good God, no. Your code does not belong there.
    You have to add the MySQL Connector JAR to your CLASSPATH when you run. If you're running on the command line, that means using the -classpath option on java.exe. If you're using an IDE, that means adding the JAR to your CLASSPATH using the mechanism provided by the IDE. If you're using an app server, that means packaging the JAR with your app.
    %

  • Business connector ,problem

    Guy's
    i have one unique problem,in flow step of business
    connector ,i have used loop ,for example loop over
    "/Final/recordWithNoID",where recordWithNoID contain
    multiple records,this loop work's fine if there are
    more than one record,but fail when there is single
    record,i don't know ,what's the problem
    sanju

    Hi Sanju,
    How you are looping , are you giving any where condition.
    can you show your code. and are you sure there is a record when the loop fails.
    did you check it in debug mode.
    Regards
    vijay

  • DC connector problem

    Hi, I'm having a problem with the DC connector on my powerbook. For some time now I've had to have the DC connector from the power adaptor plugged in with certain orientations for the LED to light up, the computer to recognise it as plugged in and for it to actually power the computer. Yesterday it finally gave up the ghost and wouldn't work no matter how I twisted or turned it. After inspecting the connector it seems to be in reasonable condition. The outer shield on the connector had split apart a little at the section where it is not joined and the insulation between the 2nd(ground) and 3rd(dc in) sections of the pin was a bit dirty, but nothing else to speak of. I've squeezed the outer shield back together while keeping it in a circular shape fairly easily. The connector now works in one single position so I've left it to recharge the battery, fearful of touching it again lest it stop working again.
    Does any one have any suggestions of where the main problem might lie here? Is it possible that the DC plug on the laptop is just worn out? Is there anything about the DC connector that would be causing this? I know that the cabling is fine as I've taken the sheath off the connector and checked it with a multimeter. I've also checked all the pins on the connector and they are fine voltage wise.

    by any chance would using a 45W power charger instead of the one for powerbook g4 15" (http://docs.info.apple.com/article.html?artnum=75448#661-3048) be ABSOLUTELY DAMAGING to my laptop?
    i'm a student, short on cash. what's new
    also, is the logic board connecting to the power unit inside? any chance or way it can be changed to a MAGsafe type?

  • HT4101 Camera Connector problem

    When I plug in the Camera Connector on my IPad 3,  I get an error message "This accessory not supported by IPad".  It is a genuine Apple Camera attachment purchased from Apple Store.  The SD card reader works great, so no problem with it.

    Make sure the 30 pin dock connector on the USB adaptor isn't damaged or dirty, if that isn't the case, plug the camera in, and then the adaptor. If that doesn't seem to work the adaptor may be defective.

  • Lenovo Vibe Z2 Pro - Hissing noise and Skype/Viber call problems

    Hi,
    Does anyone have the hissing noise (similar to that of the below Youtube url 12- 22 secs) with recorded videos.
    http://www.youtube.com/watch?feature=player_detailpage&v=F0rKuaTgZgQ#t=12
    Sample shot : http://youtu.be/8F5M3GZkfdk
    And are you able to use apps like Viber, Skype without issues... ?
    On Skype...
    a) There is a background noise (like audio fed to others mic) while chatting in normal mode and this amplifies much when on speaker mode and after few secs it becomes unusable.
    b) Also there is a issue with the voice while chatting in speaker mode... it resounds, gets repetitive and amplifies, and makes it usable.
    On Viber...
    a) When I answer the call it shows connected... but the callers phone shows still ringing, as a result can't hear anything.
    b) When I make a call, and the other person answers it... So again I cant hear anything.
    TRIED
    Resetting phone from settings and also through power/volume keys.
    Is my unit defective?
    Is it problem with hardware or software?

    with the last update i have the same issues with voip calls on several apps (viber, facebook, hangouts) like echo, hissing and all loud noises around me seem to be amplified . I don't understand why lenovo does not fix these problems nor reply to any of the posts about this problem. i am beggining to feel like all flagships from lenovo are designed this way, i had k910 and now i have k920 with absolutely the same issue.....what is wrong with lenovo ?

Maybe you are looking for