ADCS 2013: There is nothing to register

graveczgravecz Member Posts: 35
edited 2013-09-25 in NAV Three Tier
Hi, i have a problem with ADCS in NAV 2013. I successfully installed everything. Some couple of days i used to register PICKS and Put-away, but till some moment a can't post anything.

When i try register pick/put away hypertrm says:
Fault in the communication: There is nothing to register.

I mean it looks like technical problem.. i haven't changed any settings or made something extraordinary, which could cause this problem.

Do you have some experiences with ADCS 2013? Can you help me? Maybe it's my fault, but i have no idea about cause of problem.

Martin

Comments

  • sclmttsclmtt Member Posts: 3
    Hi, did you find any solution ? I have the same problem.
    I',m using a laptop running Windows 8, everything works fine with adcs demo data but I cannot register !

    Help me please !
  • graveczgravecz Member Posts: 35
    yes, its user mistake.
    Nothing to register means that document can't register (Register pick), because you haven't filled Qty. to Handle on document line..
  • sclmttsclmtt Member Posts: 3
    I'm sorry. My real problem is:
    I use hyperterminal VT100 emulation on a windows 8 laptop. Everything goes well if I modfy fields; but when I try to register, no special Key (but ESC), function key or key combination works . Nothing happens.
    Which function key or special key have I to use ?
    Can you paste your key mapping .xsl file, if it works ?

    Thanks for any reply.
  • sclmttsclmtt Member Posts: 3
    Hi I found the solution by myself: I explain for other user:
    I use Windows 8 for testing and dev purpose: in this case the correct hyperterminal settings are different from the released VT100_WinXP.xsd. In other words with my installation VT100_WinXP.xsd doesn't work and the system can parse only ESC command:

    <xsl:template match="Function[.='ESC']">
    <Function Key1="27"><xsl:value-of select="."/></Function>
    </xsl:template>

    but REGISTER command (F3) doesn't work:
    <Function Key1="27" Key3="82" Key2="79" key4="0" key5="0" key6="0"><xsl:value-of select="."/>

    I omitted Keys with 0 value and it worked! Only Functions with key values different from zero work are parsed.

    <xsl:template match="Function[.='REGISTER']">
    <Function Key1="27" Key2="79" Key3="82"><xsl:value-of select="."/></Function>
    </xsl:template>

    This is my VT100_W8Hyperterminal.xsd content: try this on your windows 8 adcs stand alone installation:

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform&quot; version="1.0">
    <xsl:output method="xml"/>

    <xsl:template match="*">
    <xsl:copy>
    <xsl:copy-of select="@*&quot;/>
    <xsl:apply-templates/>
    </xsl:copy>
    </xsl:template>

    <xsl:template match="Function[.='ESC']">
    <Function Key1="27"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='FIRST']">
    <Function Key1="27" Key2="79" Key3="80"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='LAST']">
    <Function Key1="27" Key2="79" Key3="81"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='REGISTER']">
    <Function Key1="27" Key2="79" Key3="82"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='RESET']">
    <Function Key1="27" Key2="79" Key3="83"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='PGUP']">
    <Function Key1="27" Key2="91" Key3="65"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='PGDN']">
    <Function Key1="27" Key2="91" Key3="66"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='LNDN']">
    <Function Key1="27" Key2="91" Key3="67"><xsl:value-of select="."/></Function>
    </xsl:template>

    <xsl:template match="Function[.='LNUP']">
    <Function Key1="27" Key2="91" Key3="68"><xsl:value-of select="."/></Function>
    </xsl:template>

    </xsl:stylesheet>
Sign In or Register to comment.