Shortdump when using txn MIRO

Dear all,
I have a question regarding a shortdump I'm getting when using transaction MIRO.
I think I know what is causing the shortdump but I'm not sure how to get rid of this shortdump.
Purchase order:
Quantity 1000
price per unit 1 euro
Invoice verification amount
1) Debit invoice 200 euro
2) credit memo 200 euro
3) credit memo 200 euro
As you can see in the invoice verification the end user has booked twice a credit memo to reverse invoice nr 1 instead of booking only 1 credit memo. In the invoice history we have now negative amount of 200 euro.
I'm not sure how to get rid of this negative quantity because if the user tries to post a debit invoice of 200 euro to make the balance zero then the user gets a short dump. I think this is because of the negative amount of 2oo euro.
Do you have suggestions on how to correct this?
regards,
Camilla

Hi all,
I have analyzed the problem a bit further and I noticed something weird that might  be the cause of the shortdumps.
The 2 credit memo's that I gave in my example are reversals (MR8M) of the debit memo. So basically the user was able to reverse a debit memo twice. This should not be possible in SAP. I have tried to recreate the issue but I was not able to reverse a debit memo twice (this makes sense)
I'm not sure if it was because that the system was not stable at that time that the user managed to reverse a debit memo twice.
Has anyone experienced this issue before? Is there any solution to correct this?

Similar Messages

  • CDPOS for the moving avenge price when using MIRO, MIGO & VL31N etc.

    Hi
    Is there a way of tracking all changes with CDPOS for the moving avenge price when using MIRO, MIGO & VL31N etc.
    We can show changes for MR21 in CDPOS but we need to reflect all changes made to the moving avenge price for MIRO, MIGO & VL31N etc. We need to run a report that will show all these changes.
    We run a report to look at all the change records for Moving Avenge Price, We use tables CDPOS & CDHDR, then Change the document Object for both tables to material, so when the report is run you can identify the material by the object value field
    u201CIf you look at CDPOS the fields where reading the data from in the u201CNew Value fieldu201D is CDFLDVALN when I do an F1u201D
    u201CIf you now check MBEW on the u201CMoving Avenge Price fieldu201D, the data reads from VERPR which is the field we need to reflect the changes. If we can change this then the report will worku201D
    Can you help please?
    Edited by: Derrick smith on Nov 28, 2008 1:51 PM

    Hello Jürgen,
    Thank you for your quick reply. I read the note -- it describes the symptom perfectly, and gives example cases which match our situation. However, no solution or recommendation is given. Does it mean that this way of valuating cancellations is not seen as a malfunction, and cannot be changed?
    Thanks in advance.
    Regards,
    Sergei

  • Dump  coming in miro when we do miro after gr reversal

    Hi,
    When we do migo rversal and again do migo after that do miro we are facing dump when we press simulate button.
    dump message is mentioned below.we are going live next week so plez reply quickly.
    Short text
        Error in ABAP/4 statement when processing an internal table.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLGLT0" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        When changing or deleting one or more lines of the internal table
        "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO" or when inserting in the table
         "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO", 0 was used as
        the line index. An index less than or equal to zero is not
        allowed.
        The error can occur when using the following options:
        1. "INDEX idx" for specifying the line number in the table
         "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO"
           where you want to change, insert or delete.
        2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\FUNCTION-POOL=MR1M\DATA=YDRSEG[1]-CO".
        At the time of the termination, the table contained 0 lines.

    Hi we have facing the same trouble  and we applied a note for that . I do not rember the note number . I am try to search it .. if I got the number I will post the reply . Pls search sap notes.

  • Error while doing Txn MIRO

    when i post the Invoice thru txn MIRO for the previous financial year i
    got the below error
    Express Document "Update was Terminated"
    when i check it in my inbox i see the following details in SO01
    Error Info : M8 185: Invoice document XXXXXXXXX.

    Hi,
    Unfortunately the error message does not help much.
    M8 185 simply states "Invoice document X X could not be created.
    You might get  more information if you get an ABAP programmer to perform a trace.
    Terminated updates are not that easy to solve due to the fact that you get very little info on the problem. But a trace gets more.
    Steve B

  • QueryError "It is error for context item undefined when using[err:XPDY0002]

    Hi,
    I a beginner for DB XML with python, below is my script and i have error
    "def next(*args): return _dbxml.XmlResults_next(*args)
    RuntimeError: Error: It is an error for the context item to be undefined when using it [err:XPDY0002], <query>:1:12" when i executed my scripts. Pls advice. Thank you.
    import sys
    from dbxml import *
    from bsddb3.db import *
    class DbXml:
    def createEnvironment(self, home):
    """ Create DBEnv and initialize XmlManager"""
    try:
    environment = DBEnv()
    environment.open(home, DB_RECOVER|DB_CREATE|DB_INIT_LOCK|
    DB_INIT_LOG|DB_INIT_MPOOL|DB_INIT_TXN, 0)
    except DBError, exc:
    print exc
    sys.exit()
    try:
    mgr = XmlManager(environment, 0)
    except XmlException, se:
    print se
    sys.exit()
    return mgr
    def closeEnvironment(self):
    """ Close DBEnv environment"""
    environment = DBEnv()
    environment.close()
    def createContainer(self, mgr, containerName):
    """ Create/open a node container"""
    if mgr.existsContainer(containerName) != 0:
    mgr.removeContainer(containerName)
    try:
    return mgr.createContainer(containerName,
    DBXML_TRANSACTIONAL|DBXML_ALLOW_VALIDATION,
    XmlContainer.NodeContainer)
    except XmlException, ex:
    print ex
    sys.exit()
    def putDocument(self, mgr, cont, file, DocName):
    """ put xml document in database"""
    self.docName = DocName
    f = open(file)
    q = f.read()
    f.close()
    try:
    # all Container modification operations need XmlUpdateContext
    uc = mgr.createUpdateContext()
    txn = mgr.createTransaction()
    try:
    docName = cont.putDocument(txn, self.docName,
    q, uc) #, DBXML_GEN_NAME)
    txn.commit()
    except XmlException, ex:
    print ex
    txn.abort()
    txn = mgr.createTransaction()
    doc = cont.getDocument(txn, self.docName)
    name = doc.getName()
    docContent = doc.getContentAsString()
    txn.commit()
    print "Document name: ",name,"\nContent: ",docContent
    except XmlException, inst:
    print inst
    if txn:
    txn.abort()
    def query(self, mgr, cont, queries):
    """ Query"""
    myQuery = r"collection(" + cont + ")" + "/" + queries
    myContainer = mgr.openContainer(cont)
    qContext = mgr.createQueryContext()
    qContext.setEvaluationType(XmlQueryContext.Lazy)
    results = mgr.query(myQuery, qContext)
    for value in results:
    document = value.asDocument()
    name = document.getName()
    content = value.asString()
    print name, ":", content
    if __name__ == "__main__":
    dbxml = DbXml()
    mgr = dbxml.createEnvironment(".")
    cont = dbxml.createContainer(mgr, "test.dbxml")
    dbxml.putDocument(mgr, cont, "C:\Documents and Settings\uidc0998\Desktop\\books.xml", "books.xml")
    dbxml.query(mgr, "test.dbxml", "bookstore/book/title")
    dbxml.closeEnvironment()
    Edited by: user10951778 on Mar 31, 2009 5:47 PM

    Hi rucong.zhao,
    Below is my xml, may i know what type of namespace or what i should put for namespace? Thank you.
    <bookstore>
    <book category="COOKING">
    <title lang="en">Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    <year>2005</year>
    <price>30.00</price>
    </book>
    <book category="CHILDREN">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
    </book>
    <book category="WEB">
    <title lang="en">XQuery Kick Start</title>
    <author>James McGovern</author>
    <author>Per Bothner</author>
    <author>Kurt Cagle</author>
    <author>James Linn</author>
    <author>Vaidyanathan Nagarajan</author>
    <year>2003</year>
    <price>49.99</price>
    </book>
    <book category="WEB">
    <title lang="en">Learning XML</title>
    <author>Erik T. Ray</author>
    <year>2003</year>
    <price>39.95</price>
    </book>
    </bookstore>

  • Database Link Error to MySQL when using variables

    Hi Guys
    I currently hava a database link to MySQL. I can read, insert, delete and update with no problems when using literals. However when I attempt to carry out the same actions using pl/sql variables I recieve the following error:
    ORA-02055: distributed update operation failed; rollback required
    ORA-02068: following severe error from AAA1
    ORA-28511: lost RPC connection to heterogeneous remote agent using SID=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ProdDB.btl.net)(PORT=1527))(CONNECT_DATA=(SID=AAA1)))
    ORA-06512: at line 15
    Could you kindly give me some suggestions?
    PL/SQL Code
    Declare
    MSISDN2 char(8);
    IMSI2 number(28,0);
    ICC2 number(28,0);
    cnt number(28,0);
    Begin
    MSISDN2 :='610-0850';
    IMSI2:=8950167090300132451;
    ICC2:=702670161017765;
    delete from "SUBSCRIBERS"@AAA1 where "MSISDN" = MSISDN2;--"ICC" = ICC2 or "IMSI" = IMSI2;
    End;
    System Info:
    Oracle Database 10.2.0.5.0 on Redhat Linux 64 bit
    Oracle Database Gateways for ODBC 11.2.0.1.0 on same machine as above
    UnixODBC-3.2.1 compiled in 64bit mode on same machine as well
    MySQL ODBC Connector DriverVer:05.02.0002
    ODBC DSN
    ; odbc.ini configuration for Connector/ODBC and Connector/ODBC 3.51 drivers
    [ODBC Data Sources]
    AAA1 = MyODBC 5.2.2 Driver DSN
    [AAA1]
    Driver = /usr/lib64/libmyodbc5w.so
    Description = Connector/ODBC 5.52 Driver DSN
    SERVER = 10.50.18.89
    USER = tytancc2
    Password = xxxxxx
    Database = radiator
    OPTION = 3
    CHARSET = latin1
    Trace = yes
    TraceFile = /tmp/unixodbc.sql.log
    Debug = 1
    Debugfile = /tmp/unixodbc.debug.log
    HS File
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = AAA1
    #HS_FDS_TRACE_LEVEL = 255
    HS_FDS_TRACE_LEVEL = DEBUG
    #HS_FDS_SHAREABLE_NAME = /usr/lib64/libmyodbc5w.so
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so.2
    HS_FDS_SQLLEN_INTERPRETATION=32
    #HS_LANGUAGE = AMERICAN_AMERICA.AL32UTF8
    #HS_LANGUAGE = AMERICAN_AMERICA.WE8ISO8859P15
    #HS_LANGUAGE = AMERICAN_AMERICA.WE8ISO8859P1
    HS_LANGUAGE = AMERICAN_AMERICA.LATIN1
    HS_FDS_FETCH_ROWS=1
    #HS_NLS_NCHAR= UCS2
    #HS_OPEN_CURSORS=10
    # ODBC specific environment variables
    set ODBCINI=/u01/oracle/.odbc.ini
    set ODBCINSTINI=/etc/odbcinst.ini
    # Environment variables required for the non-Oracle system
    set LD_LIBRARY_PATH=/usr/lib64
    Trace File
    Oracle Corporation --- FRIDAY FEB 08 2013 22:01:40.555
    Heterogeneous Agent Release
    11.2.0.1.0
    Oracle Corporation --- FRIDAY FEB 08 2013 22:01:40.549
    Version 11.2.0.1.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "DEBUG"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    setting HS_IDLE_TIMEOUT to default of 0
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    HOSGIP returned value of "1" for HS_FDS_FETCH_ROWS
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_RSET_RETURN_ROWCOUNT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "FALSE"
    Parameter HS_FDS_QUOTE_IDENTIFIER is not set
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    HOSGIP returned value of "32" for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "AAA1"
    Product-Info:
    Port Rls/Upd:1/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.2.0.1.0_0008, Instance:AAA1
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=31
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=31
    HOCXU_SEM_VER=102000
    Entered hgolofn at 2013/02/08-22:01:40
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/usr/lib64/libodbc.so.2"
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a08f61
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a090e5
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a09c18
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a0b6dc
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a17bc4
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a182e8
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1bc40
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1dad8
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1e6dc
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a20bae
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a20bd0
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a22f44
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a276d4
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a27b90
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2a4a4
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2b574
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2b99c
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2e65c
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2ecd0
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a31db8
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a31ac0
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a0c47c
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a0e884
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a14943
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1714a
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a19327
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1d2ce
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a1f648
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a210c7
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a23990
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2414c
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a25d26
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a26cc0
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a288a8
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a28c67
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a29e88
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2c51e
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2ccfa
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2d5c0
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2de92
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a2f088
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a33fa4
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a315fe
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a36de2
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Entered hgolofns at 2013/02/08-22:01:40
    symbol_peflctx=0x31a380ec
    hoaerr:0
    Exiting hgolofns at 2013/02/08-22:01:40
    Exiting hgolofn, rc=0 at 2013/02/08-22:01:40
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "1"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    treat_SQLLEN_as_compiled = 0
    Exiting hgoinit, rc=0 at 2013/02/08-22:01:40
    Entered hgolgon at 2013/02/08-22:01:40
    reco:0, name:tytancc2, tflag:0
    Entered hgosuec at 2013/02/08-22:01:40
    Exiting hgosuec, rc=0 at 2013/02/08-22:01:40
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_CHARACTER_SEMANTICS" returned "FALSE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using tytancc2 as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2013/02/08-22:01:40
    HS_FDS_CONNECT_INFO = "AAA1"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2013/02/08-22:01:40
    dsn:AAA1, name:tytancc2
    optn:
    Entered hgocip at 2013/02/08-22:01:40
    dsn:AAA1
    Exiting hgocip, rc=0 at 2013/02/08-22:01:40
    Exiting hgogenconstr, rc=0 at 2013/02/08-22:01:40
    Entered hgolosf at 2013/02/08-22:01:45
    Exiting hgolosf, rc=0 at 2013/02/08-22:01:45
    DriverName:libmyodbc5w.so, DriverVer:05.02.0002
    DBMS Name:MySQL, DBMS Version:5.1.66-community-log
    Exiting hgocont, rc=0 at 2013/02/08-22:01:45
    SQLGetInfo returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 192 for SQL_MAX_CATALOG_NAME_LEN
    Exiting hgolgon, rc=0 at 2013/02/08-22:01:45
    Entered hgoulcp at 2013/02/08-22:01:45
    Entered hgowlst at 2013/02/08-22:01:45
    Exiting hgowlst, rc=0 at 2013/02/08-22:01:45
    SQLGetInfo returns 0x0 for SQL_OWNER_USAGE
    TXN Capable:3, Isolation Option:0xf
    SQLGetInfo returns 0 for SQL_MAX_SCHEMA_NAME_LEN
    SQLGetInfo returns 192 for SQL_MAX_TABLE_NAME_LEN
    SQLGetInfo returns 192 for SQL_MAX_PROCEDURE_NAME_LEN
    SQLGetInfo returns ` (0x60) for SQL_IDENTIFIER_QUOTE_CHAR
    SQLGetInfo returns Y for SQL_COLUMN_ALIAS
    16 instance capabilities will be uploaded
    capno:1964, context:0x00000000, add-info: 0
    capno:1989, context:0x00000000, add-info: 0
    capno:1991, context:0x0001ffff, add-info: 0
    capno:1992, context:0x0001ffff, add-info: 1, translation:"`"
    capno:3042, context:0x00000000, add-info: 0, translation:"42"
    capno:3047, context:0x00000000, add-info: 0, translation:"57"
    capno:3049, context:0x00000000, add-info: 0, translation:"59"
    capno:3050, context:0x00000000, add-info: 0, translation:"60"
    capno:3066, context:0x00000000, add-info: 0
    capno:3067, context:0x00000000, add-info: 0
    capno:3068, context:0x00000000, add-info: 0
    capno:3069, context:0x00000000, add-info: 0
    capno:3500, context:0x00000001, add-info: 91, translation:"42"
    capno:3501, context:0x00000001, add-info: 93, translation:"57"
    capno:3502, context:0x00000001, add-info: 107, translation:"59"
    capno:3503, context:0x00000001, add-info: 110, translation:"60"
    Exiting hgoulcp, rc=0 at 2013/02/08-22:01:45
    Entered hgouldt at 2013/02/08-22:01:45
    NO instance DD translations were uploaded
    Exiting hgouldt, rc=0 at 2013/02/08-22:01:45
    Entered hgobegn at 2013/02/08-22:01:45
    tflag:0 , initial:1
    hoi:0x9671a48, ttid (len 26) is ...
    00: 54595441 4E2E6438 32323564 62642E32 [TYTAN.d8225dbd.2]
    10: 392E372E 33313031 3433 [9.7.310143]
    tbid (len 10) is ...
    0: 1D000700 7FBB0400 0104 [..........]
    Exiting hgobegn, rc=0 at 2013/02/08-22:01:45
    Entered hgopdsc at 2013/02/08-22:01:45
    Describing procedure SUBSCRIBERS
    Output hoada
    hgopdsc, line 1406: NO hoada to print
    Exiting hgopdsc, rc=942 at 2013/02/08-22:01:45
    Entered hgodtab at 2013/02/08-22:01:45
    count:1
    table: SUBSCRIBERS
    Allocate hoada[0] @ 0x3a23590
    Entered hgopcda at 2013/02/08-22:01:45
    Column:1(MSISDN): dtype:1 (CHAR), prc/scl:8/0, nullbl:0, octet:8, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:2(IMSI): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:0, octet:8, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:3(ICC): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:0, octet:8, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:4(CHECKATTR): dtype:1 (CHAR), prc/scl:200/0, nullbl:1, octet:200, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:5(REPLYATTR): dtype:1 (CHAR), prc/scl:200/0, nullbl:1, octet:200, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:6(TIMELEFT): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:7(ELIMINATED): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:8(SUSPENDED): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    The hoada for table SUBSCRIBERS follows...
    hgodtab, line 876: Printing hoada @ 0x3a23590
    MAX:8, ACTUAL:8, BRC:1, WHT=6 (TABLE_DESCRIBE)
    hoadaMOD bit-values found (0x200:TREAT_AS_CHAR,0x20:NEGATIVE_HOADADTY)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    1 CHAR N 8 8 0/ 0 0 0 200 MSISDN
    -5 BIGINT N 8 8 0/ 0 0 0 20 IMSI
    -5 BIGINT N 8 8 0/ 0 0 0 20 ICC
    1 CHAR Y 200 200 0/ 0 0 0 200 CHECKATTR
    1 CHAR Y 200 200 0/ 0 0 0 200 REPLYATTR
    -5 BIGINT Y 8 8 0/ 0 0 0 20 TIMELEFT
    -5 BIGINT Y 8 8 0/ 0 0 0 20 ELIMINATED
    -5 BIGINT Y 8 8 0/ 0 0 0 20 SUSPENDED
    Exiting hgodtab, rc=0 at 2013/02/08-22:01:45
    Entered hgodafr, cursor id 0 at 2013/02/08-22:01:45
    Free hoada @ 0x3a23590
    Exiting hgodafr, rc=0 at 2013/02/08-22:01:45
    Entered hgopars, cursor id 1 at 2013/02/08-22:01:45
    type:0
    SQL text from hgopars, id=1, len=134 ...
    00: 53454C45 43542041 312E604D 53495344 [SELECT A1.`MSISD]
    10: 4E602C41 312E6049 4D534960 2C41312E [N`,A1.`IMSI`,A1.]
    20: 60494343 602C4131 2E604348 45434B41 [`ICC`,A1.`CHECKA]
    30: 54545260 2C41312E 60524550 4C594154 [TTR`,A1.`REPLYAT]
    40: 5452602C 41312E60 54494D45 4C454654 [TR`,A1.`TIMELEFT]
    50: 602C4131 2E60454C 494D494E 41544544 [`,A1.`ELIMINATED]
    60: 602C4131 2E605355 5350454E 44454460 [`,A1.`SUSPENDED`]
    70: 2046524F 4D206053 55425343 52494245 [ FROM `SUBSCRIBE]
    80: 52536020 4131 [RS` A1]
    Exiting hgopars, rc=0 at 2013/02/08-22:01:45
    Entered hgoopen, cursor id 1 at 2013/02/08-22:01:45
    hgoopen, line 86: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2013/02/08-22:01:45
    Entered hgodscr, cursor id 1 at 2013/02/08-22:01:45
    Allocate hoada @ 0x3a23538
    Entered hgopcda at 2013/02/08-22:01:45
    Column:1(MSISDN): dtype:1 (CHAR), prc/scl:8/0, nullbl:0, octet:8, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:2(IMSI): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:0, octet:8, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:3(ICC): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:0, octet:8, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:4(CHECKATTR): dtype:1 (CHAR), prc/scl:200/0, nullbl:1, octet:200, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:5(REPLYATTR): dtype:1 (CHAR), prc/scl:200/0, nullbl:1, octet:200, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:6(TIMELEFT): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:7(ELIMINATED): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    Entered hgopcda at 2013/02/08-22:01:45
    Column:8(SUSPENDED): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:1, octet:200, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/02/08-22:01:45
    hgodscr, line 880: Printing hoada @ 0x3a23538
    MAX:8, ACTUAL:8, BRC:1, WHT=5 (SELECT_LIST)
    hoadaMOD bit-values found (0x200:TREAT_AS_CHAR,0x20:NEGATIVE_HOADADTY)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    1 CHAR N 8 8 0/ 0 0 0 200 MSISDN
    -5 BIGINT N 8 8 0/ 0 0 0 20 IMSI
    -5 BIGINT N 8 8 0/ 0 0 0 20 ICC
    1 CHAR Y 200 200 0/ 0 0 0 200 CHECKATTR
    1 CHAR Y 200 200 0/ 0 0 0 200 REPLYATTR
    -5 BIGINT Y 8 8 0/ 0 0 0 20 TIMELEFT
    -5 BIGINT Y 8 8 0/ 0 0 0 20 ELIMINATED
    -5 BIGINT Y 8 8 0/ 0 0 0 20 SUSPENDED
    Exiting hgodscr, rc=0 at 2013/02/08-22:01:45
    Entered hgoclse, cursor id 1 at 2013/02/08-22:01:46
    Exiting hgoclse, rc=0 at 2013/02/08-22:01:46
    Entered hgodafr, cursor id 1 at 2013/02/08-22:01:46
    Free hoada @ 0x3a23538
    Exiting hgodafr, rc=0 at 2013/02/08-22:01:46
    Entered hgopars, cursor id 1 at 2013/02/08-22:01:46
    type:0
    SQL text from hgopars, id=1, len=56 ...
    00: 44454C45 54452046 524F4D20 60535542 [DELETE FROM `SUB]
    10: 53435249 42455253 60205748 45524520 [SCRIBERS` WHERE ]
    20: 60535542 53435249 42455253 602E604D [`SUBSCRIBERS`.`M]
    30: 53495344 4E603D3F [SISDN`=?]
    Exiting hgopars, rc=0 at 2013/02/08-22:01:46
    Entered hgoexec, cursor id 1 at 2013/02/08-22:01:46
    octype=3 (DELETE)
    hgoexec, line 108: Printing hoada @ 0x3a23538
    MAX:1, ACTUAL:1, BRC:1, WHT=3 (BIND_LIST)
    hoadaMOD bit-values found (0x200:TREAT_AS_CHAR)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    1 CHAR N 8 0 0/ 0 31 0 200 ?
    Entered hgoprbv at 2013/02/08-22:01:46
    hgoprbv, line 145: Printing hoada @ 0x3a23538
    MAX:1, ACTUAL:1, BRC:1, WHT=3 (BIND_LIST)
    hoadaMOD bit-values found (0x200:TREAT_AS_CHAR)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    1 CHAR N 8 0 0/ 0 31 0 200 ?
    Exiting hgoprbv, rc=0 at 2013/02/08-22:01:46

              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.979016][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979038][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_BIGINT
    [ODBC][379][1360881002.979073][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979096][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979122][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979144][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979169][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979191][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979220][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979242][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979267][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979289][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979310][SQLFetch.c][348]
              Exit:[SQL_NO_DATA]
    [ODBC][379][1360881002.979332][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.979354][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979376][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_BIGINT
    [ODBC][379][1360881002.979411][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979437][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979463][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979486][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979511][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979533][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979559][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979581][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979606][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979644][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.979667][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979689][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_TINYINT
    [ODBC][379][1360881002.979728][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979762][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979801][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979835][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979882][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979920][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.979962][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.979998][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980040][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980074][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980107][SQLFetch.c][348]
              Exit:[SQL_NO_DATA]
    [ODBC][379][1360881002.980140][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.980176][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980214][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_TINYINT
    [ODBC][379][1360881002.980270][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980313][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980356][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980392][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980435][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980471][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980512][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980547][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980588][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980624][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.980661][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980694][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_LONGVARCHAR
    [ODBC][379][1360881002.980749][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980785][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.980827][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980862][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.980903][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.980938][SQLGetTypeInfo.c][168]
              Entry:
                   Statement = 0x12401d00
                   Data Type = SQL_LONGVARBINARY
    [ODBC][379][1360881002.980993][SQLGetTypeInfo.c][318]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.981028][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881002.981070][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.981105][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881002.981140][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.981175][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 2
    [ODBC][379][1360881002.981208][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.994533][SQLEndTran.c][421]
              Entry:               
                   Connection = 0x123d8530               
                   Completion Type = 0
    [ODBC][379][1360881002.996504][SQLGetInfo.c][554]
              Entry:
                   Connection = 0x123d8530
                   Info Type = SQL_CURSOR_COMMIT_BEHAVIOR (23)
                   Info Value = 0x123d99a0
                   Buffer Length = 2
                   StrLen = 0x7fffe2e98e5e
    [ODBC][379][1360881002.996546][SQLGetInfo.c][617]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.996572][SQLGetInfo.c][554]
              Entry:
                   Connection = 0x123d8530
                   Info Type = SQL_CURSOR_ROLLBACK_BEHAVIOR (24)
                   Info Value = 0x123d99a2
                   Buffer Length = 2
                   StrLen = 0x7fffe2e98e5e
    [ODBC][379][1360881002.996613][SQLGetInfo.c][617]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.996636][SQLEndTran.c][574]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881002.996666][SQLSetConnectAttr.c][396]
              Entry:
                   Connection = 0x123d8530
                   Attribute = SQL_ATTR_TXN_ISOLATION
                   Value = 0x2
                   StrLen = -5
    [ODBC][379][1360881002.999108][SQLSetConnectAttr.c][852]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.002982][SQLAllocHandle.c][540]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x123d8530
    [ODBC][379][1360881003.003054][SQLAllocHandle.c][1081]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x12439eb0
    [ODBC][379][1360881003.003087][SQLFreeHandle.c][381]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x12401d00
    [ODBC][379][1360881003.003139][SQLFreeHandle.c][491]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003164][SQLAllocHandle.c][540]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x123d8530
    [ODBC][379][1360881003.003196][SQLAllocHandle.c][1081]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x12401d00
    [ODBC][379][1360881003.003221][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 4
                   Target Type = 1 SQL_CHAR
                   Target Value = 0x7fffe2e98dc0
                   Buffer Length = 124
                   StrLen Or Ind = 0x7fffe2e98e90
    [ODBC][379][1360881003.003249][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003273][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 5
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe2e98f58
                   Buffer Length = 0
                   StrLen Or Ind = (nil)
    [ODBC][379][1360881003.003296][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003319][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 6
                   Target Type = 1 SQL_CHAR
                   Target Value = 0x7fffe2e98d28
                   Buffer Length = 120
                   StrLen Or Ind = 0x7fffe2e98eb8
    [ODBC][379][1360881003.003342][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003365][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 7
                   Target Type = -16 SQL_C_SLONG
                   Target Value = 0x7fffe2e98f34
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe2e98e98
    [ODBC][379][1360881003.003387][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003410][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 9
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe2e98f5c
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe2e98ea0
    [ODBC][379][1360881003.003433][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003456][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 10
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe2e98f64
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe2e98ec0
    [ODBC][379][1360881003.003479][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003501][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 11
                   Target Type = -15 SQL_C_SSHORT
                   Target Value = 0x7fffe2e98f60
                   Buffer Length = 0
                   StrLen Or Ind = (nil)
    [ODBC][379][1360881003.003524][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003547][SQLBindCol.c][236]
              Entry:
                   Statement = 0x12401d00
                   Column Number = 16
                   Target Type = -16 SQL_C_SLONG
                   Target Value = 0x7fffe2e98f40
                   Buffer Length = 0
                   StrLen Or Ind = 0x7fffe2e98ea8
    [ODBC][379][1360881003.003572][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.003623][SQLColumns.c][215]
              Entry:
                   Statement = 0x12401d00
                   Catalog Name = [radiator][length = 8]
                   Schema Name = [NULL]
                   Table Name = [SUBSCRIBERS2][length = 12]
                   Column Name = [NULL]
    [ODBC][379][1360881003.014993][SQLColumns.c][412]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015172][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015247][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015361][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015396][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015479][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015513][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015613][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015647][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015726][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015758][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015836][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015870][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.015961][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.015994][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.016072][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.016104][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.016183][SQLFetch.c][162]
              Entry:
                   Statement = 0x12401d00
    [ODBC][379][1360881003.016209][SQLFetch.c][348]
              Exit:[SQL_NO_DATA]
    [ODBC][379][1360881003.016284][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 0
    [ODBC][379][1360881003.016311][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.016438][SQLFreeStmt.c][144]
              Entry:
                   Statement = 0x12401d00
                   Option = 2
    [ODBC][379][1360881003.016465][SQLFreeStmt.c][263]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.016489][SQLFreeHandle.c][381]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x12439eb0
    [ODBC][379][1360881003.016521][SQLFreeHandle.c][491]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.029258][SQLAllocHandle.c][540]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x123d8530
    [ODBC][379][1360881003.029318][SQLAllocHandle.c][1081]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x12439eb0
    [ODBC][379][1360881003.029350][SQLPrepare.c][196]
              Entry:
                   Statement = 0x12439eb0
                   SQL = [SELECT A1.`CHECKATTR` FROM `SUBSCRIBERS2` A1 WHERE A1.`MSISDN`='610-0850'][length = 73]
    [ODBC][379][1360881003.029450][SQLPrepare.c][371]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.029482][SQLNumResultCols.c][156]
              Entry:
                   Statement = 0x12439eb0
                   Column Count = 0x123c4538
    [ODBC][379][1360881003.033825][SQLNumResultCols.c][248]
              Exit:[SQL_SUCCESS]
                   Count = 0x123c4538 -> 1
    [ODBC][379][1360881003.034106][SQLDescribeCol.c][247]
              Entry:
                   Statement = 0x12439eb0
                   Column Number = 1
                   Column Name = 0x7fffe2e98c80
                   Buffer Length = 31
                   Name Length = 0x7fffe2e98dc4
                   Data Type = 0x7fffe2e98dc8
                   Column Size = 0x7fffe2e98d60
                   Decimal Digits = 0x7fffe2e98dcc
                   Nullable = 0x7fffe2e98dd0
    [ODBC][379][1360881003.034152][SQLDescribeCol.c][497]
              Exit:[SQL_SUCCESS]               
                   Column Name = [CHECKATTR]               
                   Data Type = 0x7fffe2e98dc8 -> 1               
                   Column Size = 0x7fffe2e98d60 -> 200               
                   Decimal Digits = 0x7fffe2e98dcc -> 0               
                   Nullable = 0x7fffe2e98dd0 -> 1
    [ODBC][379][1360881003.034182][SQLColAttribute.c][293]
              Entry:
                   Statement = 0x12439eb0
                   Column Number = 1
                   Field Identifier = SQL_DESC_OCTET_LENGTH
                   Character Attr = (nil)
                   Buffer Length = 0
                   String Length = (nil)
                   Numeric Attribute = 0x7fffe2e98d68
    [ODBC][379][1360881003.034245][SQLColAttribute.c][664]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.034336][SQLSetStmtAttr.c][265]
              Entry:
                   Statement = 0x12439eb0
                   Attribute = SQL_ATTR_ROW_ARRAY_SIZE
                   Value = 0x1
                   StrLen = 0
    [ODBC][379][1360881003.034370][SQLSetStmtAttr.c][925]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.038845][SQLAllocHandle.c][540]
              Entry:
                   Handle Type = 3
                   Input Handle = 0x123d8530
    [ODBC][379][1360881003.038910][SQLAllocHandle.c][1081]
              Exit:[SQL_SUCCESS]
                   Output Handle = 0x1244ae50
    [ODBC][379][1360881003.038941][SQLPrepare.c][196]
              Entry:
                   Statement = 0x1244ae50
                   SQL = [SELECT A1.`CHECKATTR` FROM `SUBSCRIBERS2` A1 WHERE A1.`MSISDN`='610-0850'][length = 73]
    [ODBC][379][1360881003.038986][SQLPrepare.c][371]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.039011][SQLNumResultCols.c][156]
              Entry:
                   Statement = 0x1244ae50
                   Column Count = 0x123c45c0
    [ODBC][379][1360881003.041037][SQLNumResultCols.c][248]
              Exit:[SQL_SUCCESS]
                   Count = 0x123c45c0 -> 1
    [ODBC][379][1360881003.041271][SQLDescribeCol.c][247]
              Entry:
                   Statement = 0x1244ae50
                   Column Number = 1
                   Column Name = 0x7fffe2e98c80
                   Buffer Length = 31
                   Name Length = 0x7fffe2e98dc4
                   Data Type = 0x7fffe2e98dc8
                   Column Size = 0x7fffe2e98d60
                   Decimal Digits = 0x7fffe2e98dcc
                   Nullable = 0x7fffe2e98dd0
    [ODBC][379][1360881003.041311][SQLDescribeCol.c][497]
              Exit:[SQL_SUCCESS]               
                   Column Name = [CHECKATTR]               
                   Data Type = 0x7fffe2e98dc8 -> 1               
                   Column Size = 0x7fffe2e98d60 -> 200               
                   Decimal Digits = 0x7fffe2e98dcc -> 0               
                   Nullable = 0x7fffe2e98dd0 -> 1
    [ODBC][379][1360881003.041337][SQLColAttribute.c][293]
              Entry:
                   Statement = 0x1244ae50
                   Column Number = 1
                   Field Identifier = SQL_DESC_OCTET_LENGTH
                   Character Attr = (nil)
                   Buffer Length = 0
                   String Length = (nil)
                   Numeric Attribute = 0x7fffe2e98d68
    [ODBC][379][1360881003.041362][SQLColAttribute.c][664]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.041444][SQLSetStmtAttr.c][265]
              Entry:
                   Statement = 0x1244ae50
                   Attribute = SQL_ATTR_ROW_ARRAY_SIZE
                   Value = 0x1
                   StrLen = 0
    [ODBC][379][1360881003.041472][SQLSetStmtAttr.c][925]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.043645][SQLExecute.c][187]
              Entry:
                   Statement = 0x1244ae50
    [ODBC][379][1360881003.048482][SQLExecute.c][348]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.048531][SQLBindCol.c][236]
              Entry:
                   Statement = 0x1244ae50
                   Column Number = 1
                   Target Type = 1 SQL_CHAR
                   Target Value = 0x12438f50
                   Buffer Length = 201
                   StrLen Or Ind = 0x12439060
    [ODBC][379][1360881003.048559][SQLBindCol.c][341]
              Exit:[SQL_SUCCESS]
    [ODBC][379][1360881003.048597][SQLFetch.c][162]
              Entry:
                   Statement = 0x1244ae50
    [ODBC][379][1360881003.048640][SQLFetch.c][348]
              Exit:[SQL_SUCCESS]

  • Batch classification during GR against production order using txn MIGO

    Hello All
           I am usng batch classification during for movement type 101, when am doing the GR against production order using txn MB31 the system automatically navigates to classification screen wherein i need to enter the characterstic value & it all goes well, I can also view the stock with batch no and the classifcation value when the GR is being done with txn MB1.
          But when am dong the same thing i.e. GR against production order using txn MIGO system doesnt navigates to classification screen for characterstic value entry and am able to do the posting. I want that system must navigate to classification screen automatically if i do the GR using MIGO also as it doen in the case of txn MB31.
           Please suggest what settings are to be done for the same, I am unable to figure out why the system is behaving in this manner. Kindly provide your inputs to sort out this issue. Waiting for your valuable inputs.
    Regards,
    J K Tharwani

    Dear,
    did u refer SAP Note 519303 ?
    After keeping Batch Classification as 4 in OMCV, in MIGO, it will start showing the Batch Classification button under "Batch" Tab, it will not show the Batch Classification Pop-up automatically as it shows in case of MB31.
    If you wan users to enter the characteristics values mandatorily in the Batch Classification then in CT04 for these characteristics activate Entry required indicator in "Basic Data" Tab
    SAP Note 519303
    Please refer this also,
    [MIGO|Re: How can I get the MRP history?]
    Regards,
    R.Brahmankar

  • Sy-tabix when using secondary key

    Hi,
    I have an internal table with records that contain a field with the line index of another table entry that they depend on.
    I can process this table recursively, by passing the parent index inside and using a
    LOOP AT ... USING KEY secondary_key WHERE index = iv_index.
    Unfortunately the sy-tabix is afterwards not correct, it contains the position in the secondary key probably instead the position in the internal table.
    Is there a way how I could find out the current table index, when using a secondary key to read a record?
    Regards,
    Bruno

    I rewrote it to include the row index also, not only the dependency.. was thinking too generic

  • Often lose wireless connection when using HDTV as monitor

    I have an unusual wireless networking problem when using my Samsung HDTV in my living room as a monitor for my MacBook (when watching Internet TV shows, for example). Frequently when I switch URLs, networking freezes, even though the connection appears strong, with the Airport symbol at the top of my screen showing all bars. To re-establish the wireless connection, I have to go through the process of re-joining my network through the “Join Other Network" option. The signal holds as long as I don’t try to change it, as in selecting another URL.
    I connect to my HDTV via HDMI cable, using a mini-DVI to HDMI adapter from my Macbook’s video-out port. The audio connection is a mini-plug from the Mac’s headphone out jack to stereo RCA plugs associated with the TV’s HDMI port.
    The wireless connection is through a Lynksys Wireless-G 2.4 Ghz, 54 Mpbs Broadband router.
    I’d appreciate any solutions the Apple user community has to offer.

    I'd say this has nothing to do with your display. The problem will likely lie in either your router settings, network settings or a simple signal strength issue. Try first changing the broadcast channel on your router, and make sure all settings are correct for your desired network.

  • Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems n

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • I have a new MAcBook Air and my photos don't fit on the internal hard drive.  I want to store my photos on an external hard drive which I will connect to my Air when using Iphoto.  How do I set an external hard drive as the default drive?

    I have a new MAcBook Air and my photos don't fit on the internal hard drive.  I want to store my photos on an external hard drive which I will connect to my Air when using Iphoto.  How do I set an external hard drive as the default drive in Iphoto?

    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • Why when using Adobe Bridge,  I apply a star rating,  the rating does not show up in Photoshop Elements? [tags]

    Why when using Adobe Bridge,  I apply a star rating,   the rating does not show up in Photoshop Elements.  I use Elements as my organizer and Bridge to view as it is much more user friendly.  Anyone any solutions??

    Most likely you have set the wrong file as the external editor. You don't want the obvious one; that's just a link to the welcome screen. Go back and choose this one, which is hidden away inside the folder Support Files:

  • Adobe Photoshop CS4/5 Crashes when using the Move Tool

    Hello. I'm here because I'm having an issue with Photoshop.
    I was trying out CS5 when it started to crash every time I tried to use the Move Tool. It was the generic error message: "Adobe Photoshop CS4 has stopped working.
    A problem has caused Adobe Photoshop CS4 to stop working correctly. Windows will close the program and notify you if a solution is available."
    Thinking that it was a CS5 issue, I went back to my copy of CS4, only to find the same thing happening there (I also downgraded because CS5 was also crashing at other random times for some reason, but that's an issue for another time).
    This puzzles me because both were working fine before. Granted, I hadn't opened them for a while, but it was a sudden thing.
    My first impulse was to uninstall and reinstall CS4. No luck. So then, I uninstalled all third-party plugins, thinking that might be it. Still, the same problem. I started looking around on Google for solutions and found the instructions on resetting the Tool preferences (I chose to reset the preferences for ALL of the tools). When that didn't work, I tried deleting the preferences file outright, which said instructions recommended. Nothing.
    I should note that Photoshop crashes when using the Move Tool to move an object without ant lines around it, i.e., a layer. I'll move the object, and after two to three seconds, the mentioned error message will appear and Windows will close Photoshop. This, however, only seems to happen after selecting, copying, and pasting part of a large object with some variation of the Marqee Tool (thus making that part a new layer by default) while working at a zoom of 100%. So, in short, working with a large image like <a href=http://www.wallpaper4me.com/images/wallpapers/ergo_proxy_267_1280-862301.jpeg>This</a> at 100% zoom. The image linked is the image that I was using and am currently using to reproduce the problem. It is 1280x1024 pixels. I have tested this with somewhat smaller, yet comparable images too. Same problem. I have never had this problem working with large images before, and I wonder if anyone has any suggestions short of formatting my hard drive.
    The error code, from Event Viewer:
    Faulting application name: Photoshop.exe, version: 11.0.2.0, time stamp: 0x4bf2d4f6
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x65637275
    Faulting process id: 0xe28
    Faulting application start time: 0x01cb2bb3471d87bf
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe
    Faulting module path: unknown
    Report Id: b412e368-97ab-11df-8f49-001d60b646ef
    Details:
    System
    Provider
    [  Name]
    Application  Error
    EventID
    1000
    [  Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [  SystemTime]
    2010-07-25T05:15:57.000000000Z
    EventRecordID
    78845
    Channel
    Application
    Computer
    Gatherum
    Security
    EventData
    Photoshop.exe
    11.0.2.0
    4bf2d4f6
    unknown
    0.0.0.0
    00000000
    c0000005
    65637275
    e28
    01cb2bb3471d87bf
    C:\Program  Files\Adobe\Adobe Photoshop CS4\Photoshop.exe
    unknown
    b412e368-97ab-11df-8f49-001d60b646ef
    Details in XML View:
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    - <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2010-07-25T05:15:57.000000000Z" />
    <EventRecordID>78845</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Gatherum</Computer>
    <Security />
    </System>
    - <EventData>
    <Data>Photoshop.exe</Data>
    <Data>11.0.2.0</Data>
    <Data>4bf2d4f6</Data>
    <Data>unknown</Data>
    <Data>0.0.0.0</Data>
    <Data>00000000</Data>
    <Data>c0000005</Data>
    <Data>65637275</Data>
    <Data>e28</Data>
    <Data>01cb2bb3471d87bf</Data>
    <Data>C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe</Data>
    <Data>unknown</Data>
    <Data>b412e368-97ab-11df-8f49-001d60b646ef</Data>
    </EventData>
    </Event>
    System Specifications:
    Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7600)
    System Manufacturer: HP-Pavilion
    System Model: GN697AA-ABA a6214x
    Processor: Intel Pentium Dual CPU E2160 @ 1.80 GHz (2 CPUs)
    Memory: 2048MB RAM
    DirectX Version: DirectX 11
    Display Device:
    Name: NVIDIA GeForce 8600 GTS
    Manufacturer: NVIDIA
    DAC Type: Integrated RAMDAC
    Approx. Total Memory: 1010 MB
    Current Display Mode: 1440 x 900 (32 bit) (60 Hz)
    Photoshop Version: CS4 Extended 11.0.2

    Even a decent RAM upgrade is usually only a few hundred dollars nowadays, but it's not a trivially simple process.  That said, with a little research and care you can do it.  Alternatively, you can hire people (e.g., "Geek Squad") to do such an upgrade.
    First, you'll need to know what your operating system capacity is.  For example, a 32 bit Windows system can really only use up to a bit more than 3 GB of RAM, while a 64 bit Windows system can use all the RAM you can find a place to plug in.  What version of Windows are you running?
    Then you'll need to determine what RAM you have installed and what your computer's maximum RAM capacity is - usually you can do this through internet research, either by visiting your computer manufacturer's web site or doing google searches.  There are even RAM manufacturer web sites that will tell you what kind of RAM your computer needs and suggest sources, for example:
    http://www.kingston.com/
    It may be that you can just plug additional chips into currently empty sockets, or it is possible you'll need to replace the RAM chips you have installed in your computer to make room for an upgrade.  Every computer is different.
    If you list your computer model and current RAM that you have installed here, it may be that someone can help with more specific advice.
    -Noel

  • When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue

    When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue.

    Hi Jdentremont,
    Lync client gets user photos by first querying the Address Book Web Query (ABWQ) service on the server, which is exposed through the Distribution List Expansion web service. The client receives
    the image file and then copies it to the user's cache to avoid downloading the image each time it needs to be displayed. The attribute values returned from the query are also stored in the cached Address Book Service entry for the user. The Address Book Service
    deletes all cached images every 24 hours, which means that it can take up to 24 hours for new user images to be updated in the cache on the server.
    To troubleshoot your problem, please follow the steps below:
    1.  Navigate to
     “X:\share\1-WebServices-1\ABfiles\000000000\000000000” folder. (ABS file share)
    You should see some photo files in this folder as the following screenshot.
    2. Delete all the files in this folder.
    3. On test PC, delete local cache files.
    %userprofile%\AppData\Local\Microsoft\Office\15.0\Lync\[email protected]
    4. Sign-in Lync with the test account.
    5. Go back to the ABS file share, check if there is any Photo file in the folder.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for