To many errors creating invoices.

Hi,
I made a scenario that writes an invoice as soon as a delivery is made.
This worked fine while testing.
But now in production the deliveries are made by the pick and pack manager.
now about 20% go into failure.
messages are:
Exception : DI Error: (-2028) Customer record not found
Exception : DI Error: (-2038) Record locked by another transaction
Exception : DI Error: (-2028) Internal error (-2038) occured
It looks like timing problems.
Is there a way to retry the scenario again automatically?
Like you can do manualy.
Thanks,
John

Hello John,
How are you, hope you're doing well!
Depending on the way you config B1i and the step, this could be reprocessed automatic by b1i. Check Maintenance - cg Error Handling.
How did you set up the step? Try to avoid to get an object and write to an (other) object in the same step. You must split this step and bind them with a queue.
Good luck.
Best Regards Teun

Similar Messages

  • Error Creating Invoices with more than 1000 positions

    Hello.
    I am creating invoices in SD module with VF01 transaction.  When the document has more than 1000 positions an error is displayed.
    The text of the error is:
    Memory area p.status GUI SAPMV60A SM is too small.
    área memoria p.status GUI SAPMV60A SM demasiado pequeña.
    I would like to know if there is any way to correct this error. If it happens because memory is too small, how could it be increased?
    Thank you.
    Diana Carolina.

    Hi Diana
    As far as I know, standard SAP has restricted the no. of line items in an accounting document to 999.
    So, this is in turn impacts the no. of line items you can have on a Sales invoice,
    Since every invoice  line item can have atleast 2 accounting entries, the max. no. of  invoice line items you can have is 499.
    I dont think there is no work around for this
    Rgds

  • Error creating Invoice though code

    Hi All,
    I have a requirement to convert deliveries to invoice through code.
    When adding a delivery without rearranging items in the matrix and converting that delivery to invoice through code works fine.This can be done using the "Copy To" function in delivery window also.However when I add items to a new delivery , eg : items A001,A002,A003 added to the lines and before clicking the add button, I changed A001 to A003,Then clicked add.Delivery is saved.This saved delivery couldnt be converted to Invoice through code.Error is "INV1: ItemCode is missing in Line".But this delivery can be manually converted to invoice though B1 window.The code I am using is as follows.
    SAPbobsCOM.Documents oINV;
                        oINV = (SAPbobsCOM.Documents)
                            modups.oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);
                        oINV.CardCode = oDLN.CardCode;
                        for (int i = 0; i < oDLN.Lines.Count; i++)
                            oDLN.Lines.SetCurrentLine(i);
                            string str = oDLN.Lines.ItemCode;
                            if (i != 0)
                                oINV.Lines.Add();
                            oINV.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                            oINV.Lines.BaseEntry = oDLN.DocEntry;
                            oINV.Lines.BaseLine = i;
                            taxcode = oDLN.Lines.TaxCode;
    oINV.Add();
    Can any body help me to trouble shoot this? I am wondering because it works in one case and fails in othercase where the itemcode is edited just before save.
    Deepesh

    Deepesh,
    Documents.DocDueDate and Document_Lines.ItemCode are mandatory fields. You need to set them manually.
    SAPbobsCOM.Documents oINV;
    oINV = (SAPbobsCOM.Documents)
    modups.oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);
    oINV.CardCode = oDLN.CardCode;
    oINV.DocDueDate = oDLN.DocDueDate;
    for (int i = 0; i < oDLN.Lines.Count; i++)
    oDLN.Lines.SetCurrentLine(i);
    string str = oDLN.Lines.ItemCode;
    oINV.ItemCode = str;
    if (i != 0)
    oINV.Lines.Add();
    oINV.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
    oINV.Lines.BaseEntry = oDLN.DocEntry;
    oINV.Lines.BaseLine = i;
    taxcode = oDLN.Lines.TaxCode;
    oINV.Add();
    Kind Regards,Yatsea

  • Error when creating Invoice via DI API

    Can you help me, I have a problem about DI
    When I create invoice with serial number and create transaction with 1 item in many serial number itu2019s no problem but
    If i create transaction with 2 diffrent item with many serial number has error the error code -5002([inv1.docentry][line:0],u2019item serial us not found in whseu2026.u2019)
    I using sap 2005 pl 40, I have debug my coding there is nothing wrong with it, than I suspec this is bug in DI is that rightu2026
    This is my code
      Dim oInvoices As SAPbobsCOM.Documents
            Dim iRetVal As Integer = -1
            Dim sErrMsg As String = ""
            Dim isAddHeader As Boolean = True
            Dim iRow As Integer = 0
            Dim sWhsCode As String = ""
            Dim iAddedQty As Integer
            Dim iCurrLine As Double = 0
            Dim iBasedDoc As Integer = 0
            Dim sNewDocNum As String = ""
            Dim sCardCode As String = ""
            Dim isdocnum As String = ""
            Dim CompleteOrder As DataRow
            Try
                oInvoices = myCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                For iRow = 0 To myOrderDetailsTable.Rows.Count - 1
                    Console.WriteLine(myOrderDetailsTable.Rows(iRow).Item(ISSCANNED_FIELD))
                    If myOrderDetailsTable.Rows(iRow).Item(ISSCANNED_FIELD) = 1 Then
                        Console.WriteLine(myOrderDetailsTable.Rows(iRow))
                        CompleteOrder = myOrderDetailsTable.Rows(iRow)
                        Console.WriteLine(sWhsCode & "   " & CompleteOrder(WHSCODE_FIELD))
                        sWhsCode = CompleteOrder(WHSCODE_FIELD)
                        With oInvoices
                            If isAddHeader Then
                                isdocnum = CompleteOrder(DOCNUM_FIELD)
                                iBasedDoc = CompleteOrder(DOCENTRY_FIELD)
                                sCardCode = CompleteOrder(CARDCODE_FIELD)
                                '.DocObjectCode = SAPbobsCOM.BoObjectTypes.oInvoices
                                .Reference2 = CompleteOrder(DOCENTRY_FIELD)
                                .DocDate = Today.Date
                                .DocDueDate = Today.Date
                                .TaxDate = Today.Date
                                Console.WriteLine("cardcode : " & sCardCode)
                                .CardCode = sCardCode
                                Console.WriteLine("ibasedDoc :" & iBasedDoc)
                                .Reference1 = iBasedDoc
                                isAddHeader = False
                            ElseIf isAddHeader = False Then
                                ' .Lines.Delete()
                                .Lines.Add()
                            End If ' isAddHeader
                            iAddedQty = 0
                            iCurrLine = 0
                            Console.WriteLine("CompleteOrder(ITEMCODE_FIELD) : " & CompleteOrder(ITEMCODE_FIELD))
                            .Lines.ItemCode = CompleteOrder(ITEMCODE_FIELD)
                            Console.WriteLine(".Lines.WarehouseCode = CompleteOrder(WHSCODE_FIELD) : " & CompleteOrder(WHSCODE_FIELD))
                            .Lines.WarehouseCode = CompleteOrder(WHSCODE_FIELD)
                            Console.WriteLine("Lines.UnitPrice = CompleteOrder(PRICE_FIELD) " & CompleteOrder(PRICE_FIELD))
                            .Lines.UnitPrice = CompleteOrder(PRICE_FIELD)
                            Console.WriteLine("CompleteOrder(ISUSEBATCH_FIELD) : " & CompleteOrder(ISUSEBATCH_FIELD))
                            If CompleteOrder(ISUSEBATCH_FIELD) = 1 Then
                                For iCurrLine = 0 To CompleteOrder(QUANTITY_FIELD) - 1
                                    If iCurrLine > 0 Then .Lines.BatchNumbers.Add()
                                    .Lines.BatchNumbers.SetCurrentLine(iCurrLine)
                                    .Lines.BatchNumbers.Quantity = 1
                                    Console.WriteLine("CompleteOrder(SCANNED_FIELD) :" & CompleteOrder(SCANNED_FIELD))
                                    .Lines.BatchNumbers.BatchNumber = CompleteOrder(SCANNED_FIELD)
                                    '.Lines.BaseEntry = iBasedDoc
                                Next
                            ElseIf CompleteOrder(ISUSEBATCH_FIELD) = 0 Then
                                Console.WriteLine("CompleteOrder(WHSCODE_FIELD) :" & CompleteOrder(WHSCODE_FIELD))
                                While sWhsCode = CompleteOrder(WHSCODE_FIELD)
                                    If iCurrLine > 0 Then .Lines.SerialNumbers.Add()
                                    .Lines.SerialNumbers.SetCurrentLine(iCurrLine)
                                    Console.WriteLine("CompleteOrder(SYSSERIAL_FIELD)" & CompleteOrder(SYSSERIAL_FIELD))
                                    CompleteOrder(SYSSERIAL_FIELD) = IIf(IsDBNull(CompleteOrder(SYSSERIAL_FIELD)), 0, CompleteOrder(SYSSERIAL_FIELD))
                                    .Lines.SerialNumbers.SystemSerialNumber = CompleteOrder(SYSSERIAL_FIELD)
                                    Console.WriteLine("CompleteOrder(SCANNED_FIELD) :" & CompleteOrder(SCANNED_FIELD))
                                    .Lines.SerialNumbers.InternalSerialNumber = CompleteOrder(SCANNED_FIELD)
                                    ' .Lines.BaseEntry = iBasedDoc
                                    iCurrLine = iCurrLine + 1
                                    iRow = iRow + 1
                                    If iRow <= myOrderDetailsTable.Rows.Count - 1 Then
                                        CompleteOrder = myOrderDetailsTable.Rows(iRow)
                                    ElseIf iRow > myOrderDetailsTable.Rows.Count - 1 Then
                                        Exit While
                                    End If
                                End While
                                iRow = iRow - 1
                            End If
                            .Lines.Quantity = iCurrLine
                        End With ' oInvoices
                    End If ' CompleteOrder(ISSCANNED_FIELD) = 1
                Next iRow
                iRetVal = oInvoices.Add()
    thnx for your attention

    Hello tony,
    Please check the following:
    1.Make sure the item is managed by serials
    2.The serials number have been auto created in GRPO/AP invoice etc puchase document
    3.You need to set the system serial number for the lines. How do you know the system serial number of the serial number? refer to the Serial Number Details form
    Inventory=>Item management=>Serials Numbers=>Serial Number Details
    SystemSerialNumber Sets or returns the successive numerator starting from1 issued for each item with serial numbers management. This numerator progresses according to the creation of new units of the same sort (for the same item).
    This property is mandatory when using Serial Numbers for outgoing documents. Field name: SysSerial.This is a foreign key to the SerialNumbers object
    Sample code to add invoice with items managed by serials:
    Private Sub btnSerials_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSerials.Click
            ConnectViaDI()
            Dim oInvoice As SAPbobsCOM.Documents = Nothing
            oInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            oInvoice.CardCode = "C001"
            oInvoice.DocDueDate = Date.Now
            Dim oLines As SAPbobsCOM.Document_Lines = oInvoice.Lines
            oLines.ItemCode = "S00002"
            oLines.UnitPrice = 1500
            oLines.Quantity = 2
            oLines.TaxCode = "CA"
            'Set the system serial no. for the 1st item
            oLines.SerialNumbers.SystemSerialNumber = 3
            'Set the system serial no. for the 2nd item
            oLines.SerialNumbers.Add()
            oLines.SerialNumbers.SystemSerialNumber = 4
            lRetCode = oInvoice.Add
            If 0 <> lRetCode Then
                oCompany.GetLastError(lErrCode, errMsg)
                MsgBox(errMsg)
            Else
                MsgBox("AR Invoice with serials number added.")
            End If
        End Sub
    Kind Regards, yatsea

  • Error while creating Invoice

    Hi Experts,
    While Creating Invoice i am getting below error
    G/L account 0001 11002 cannot be posted to, please correct your entry
    Message no. >0205
    Diagnosis
    This G/L account is blocked against posting or is a reconciliation account and cannot be posted to directly.
    System Response
    The G/L account cannot be posted to.
    Procedure for System Administration
    Check you entry for errors, or change the master record of the G/L account: Proceed.
    I have taken lot of experts advises, but unable to solve. I have checked FS00, EK01 and EK02 and unable to find what problem is with these Tcodes.
    When i was trying to check Tcode FS00 i found G/L Account is "11002 - Constructions" and when i tried to see account group it was Balance Sheet Account and by experts advise i changed it to P&L Statement Acct, when i am opening Initially after saving Account Grp.Tcode FS00 it is showing Acct. Grp. as P&L Statement Acct and when i am choosing other tabs in FS00 the Acct Grp is Changing back to Balance sheet acct.. I am unable to find what wrong with this.
    I want to ask whether the problem is with above mentioned thing or with other, i believe i have explained my error in detail. Please advise how can i overcome this error.
    Regards,
    Kushal
    Moderator note - thread locked, same issue identified in G/L error while posting an amount - TXN: FPE1 - SAP ISU and Error while trying to do Billing

    Hi friends,
    The error thats triggered is "For object RV_BELEGnumber range 19 does not exist".
    I have deleted all the existing no ranges in VN01 and customized the nuber range for invoice doc and set it at Z1(Internal no range :1000-1999) and the existing no range entry in OBA7 for RV is 18(1800000000- 1899999999).
    Z1(Internal no range :1000-1999)  for Invoices
    Z2(Internal no range :2000-2999)  for Deliveries
    Z3 (Internal no range :3000-3999) for sales orders
    So my VN01 entries consists of Z1(Internal no range :1000-1999) ,Z2(Internal no range :2000-2999)  ,Z3 (Internal no range :3000-3999) .
    The sales orders and deliveries are working out fine but while generating the invoice its triggering the above message.
    Pl help on this.
    Thanks
    Ivy

  • How to write error log while creating invoice and avoid implicite commit

    Hi,
    I've have written code in exit RV60AFZZ in which I check for some possible errors while invoicing via VF01/VF04. If conditions are met then we create error message and display it to the user. As result we had a lot of missing SD invoices in FI when we did batch/mass invoicing. I've opened OSS note and SAP support team wrote that using statement MESSAGE is forbidden in UE. It can lead to implicite commits.
    Do you have some example how to write error log for invoincing in VF01/VF04 transactions?
    Thanks

    @ sri nath. Please read post before answering. I wouldn't be posting trivial questions. As I wrote before it doesn't work.  Also SAP support would not answer to the question in my OSS.
    In VOFM, SAP is using routine  VBFS_HINZUFUEGEN_ALLG to write to error log.
    Mine is something like this in ue:
          PERFORM ZVBFS_HINZUFUEGEN_ALLG
                     USING VBAP-VBELN VBAP-POSNR  'ZSD' 'E '600'
                           SPACE SPACE SPACE SPACE.
    (we have custom message class)
    As result  XVBFS and VBSK are filled with error, but posting is also done.  Error log is filled but invoice is created and posted in FI.
    That is not OK.
    thanks

  • Error When Create Invoice related to Project

    Dear Friends,
    Good Day,
    I have been faced issue when i create Invoice related to project the following are the steps with the error :
    1. Entered the header.
    2.Entered the lines ( Line type, Amount, Distribute Account, and Fields that related to Projects...... etc).
    3. Save then Action > validate i have one holds, the hold name is Dist Variance then after i Click on the distributions line I have the following error :
    APP-SQLAP-97734: the system cant's generate distributions for 1 line because: Fatal Error:
    Error Stack: &ERROR_STACK
    Erro Stage: &ERROR_STAGE
    Error Message: &ERROR_MESSAGE
    Additional Information1: &ERROR_AGR1
    Additional Information2: &ERROR_AGR2
    Please Advice :)
    Best Regards,
    M.Qolaghassi

    Please see if these docs help.
    Projects Supplier Invoice Account Generation Error: APP-SQLAP-97734: The System Cannot Generate Distributions [ID 823787.1]
    APXINWKB.fmb APP-SQLAP-97734 When Entering a Recurring Invoice With Closed Project/Task [ID 779704.1]
    Grants Accounting: AP Invoice Workbench Drill Down to Distributions for Allocated Freight Gets APP-SQLAP-97734 Error [ID 845378.1]
    APP-SQLAP-97734: When Attempting To Generate A Distribution In A Project Related Invoice [ID 1251796.1]
    Overriding Project Supplier Invoice Account Generation Workflow CCID With User Entered Account [ID 360757.1]
    Project Supplier Invoice Account Generation Workflow - attribute 'fnd_flex_applid' does not exist [ID 1252887.1]
    Thanks,
    Hussein

  • Reg;error message while creating invoice

    Hi Gurus,
    When i am trying to create invoice with reference to sales order (order related billing ) its giving error massege when trying to save the invoice.Its giving the message as:FOR OBJECT RV_BELEG NUMBER RANGE 41 DOES NOT EXIST.
    How to correct this.Pls help me out on this.
    Thanks & Regards,
    Sash.

    Hi Kiran,i assigned number range as u said.But still its giving the same error mesage .See the error in below.
    For object RV_BELEG , number range interval 41 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code:

  • Sys.utl_file has many errors. How to re-create

    hi all,
    I tried using the utility utl_file in my procedures and it showed out
    sys.utl_file has many errors
    and when i went through like
    $ sqlplus /nolog
    SQL*Plus: Release 9.2.0.8.0 - Production on Tue Mar 4 12:50:08 2008
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    SQL> connect / as sysdba;
    Connected.
    SQL> select name from v$database;
    NAME
    TEST
    SQL> alter package sys.utl_file compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show errors;
    Errors for PACKAGE BODY SYS.UTL_FILE:
    LINE/COL ERROR
    100/12 PLS-00323: subprogram or cursor 'FOPEN_NCHAR' is declared in a
    package specification and must be defined in the package body
    160/13 PLS-00323: subprogram or cursor 'GET_LINE' is declared in a
    package specification and must be defined in the package body
    181/13 PLS-00323: subprogram or cursor 'GET_LINE_NCHAR' is declared in a
    package specification and must be defined in the package body
    213/13 PLS-00323: subprogram or cursor 'PUT_NCHAR' is declared in a
    package specification and must be defined in the package body
    LINE/COL ERROR
    245/13 PLS-00323: subprogram or cursor 'PUT_LINE' is declared in a
    package specification and must be defined in the package body
    261/13 PLS-00323: subprogram or cursor 'PUT_LINE_NCHAR' is declared in a
    package specification and must be defined in the package body
    311/13 PLS-00323: subprogram or cursor 'PUTF_NCHAR' is declared in a
    package specification and must be defined in the package body
    336/7 PLS-00307: too many declarations of 'PUT_LINE' match this call
    LINE/COL ERROR
    336/7 PL/SQL: Statement ignored
    344/13 PLS-00323: subprogram or cursor 'PUT_RAW' is declared in a
    package specification and must be defined in the package body
    363/13 PLS-00323: subprogram or cursor 'GET_RAW' is declared in a
    package specification and must be defined in the package body
    386/13 PLS-00323: subprogram or cursor 'FSEEK' is declared in a package
    specification and must be defined in the package body
    403/13 PLS-00323: subprogram or cursor 'FREMOVE' is declared in a
    LINE/COL ERROR
    package specification and must be defined in the package body
    423/13 PLS-00323: subprogram or cursor 'FCOPY' is declared in a package
    specification and must be defined in the package body
    447/13 PLS-00323: subprogram or cursor 'FGETATTR' is declared in a
    package specification and must be defined in the package body
    463/12 PLS-00323: subprogram or cursor 'FGETPOS' is declared in a
    package specification and must be defined in the package body
    LINE/COL ERROR
    481/13 PLS-00323: subprogram or cursor 'FRENAME' is declared in a
    package specification and must be defined in the package body
    SQL>
    can anyone help me out of this issue

    What had happened to your database?
    You could try to run $ORACLE_HOME/rdbms/admin/utlfile.sql
    to recreate the package.

  • Budget exceeded BP604 (when create Invoice)

    Hi All,
    User got an error message budget exceeded BP604 when create invoice. How can i know what the configuration to check why system check budget( Investment management). I tried to check the configuration in SPRO (Define tolerance limit for availability control) shows that budget profile use ++ which are : (no invoice checking) but in actual it checks budget.
    ++     All activity groups           
    00     Purchase requisition          
    01     Purchase order                
    02     Orders for project            
    03     Goods issue                   
    04     Financial accounting document 
    05     CO document                   
    06     Budgeting                     
    07     Funds reservation             
    08     Fixed prices in project       
    09     Payroll                       
    Many thanks in advance.
    Nies

    Business transaction group 04 (Financial accounting document) contains below transactions:
    G/L account posting
    FI invoice parking
    Invoice verification
    Goods receipt for the order
    Cash budget management
    Payment transfer
    Down payment posting
    Inventory difference
    Regards
    Sreenivas

  • Error creating CONTROL FILE

    I have a problem while installing 9iAS R2 on RH LInux 8.
    When database configuration assistant starts during the installation of 9iAS infrastructure, it gives an error "Error creating CONTROL FILE" followed by many other errors.
    Please help me out.
    Zulqarnain

    I had the same problem, but with RH9
    To fix, I ran orapwd from the $ORACLE_HOME/bin directory to create a password file called orapw. Then I moved this file to the directory where the configuration assistant complains it cannot find the file. Fixed. Obviously, just ignore the errors from the configuration assistant about the CONTROL FILE until it tells you the location of the file it is looking for.

  • Error creating temporary table

    I got this error when creating forms with ADDT. I checked MySQL reserved words and I'm sure that's not my problem :(. Any help with this?
    Many thanks
    Florencia
    Error:
    Error interno.
    Developer Details:
    tNG_fields.getFakeRecordset:
    SQL error: Error creating temporary table:
    Incorrect table name 'T'
    SQL:
    CREATE TEMPORARY TABLE KT_fakeRS_20071031 (fecha_ing TEXT, fecha_eg TEXT, seguro TEXT, compania TEXT, CC TEXT, T.T TEXT, chapa TEXT, pintura TEXT, mecanica TEXT, repuestos TEXT, TT TEXT, cerrado TEXT, patente TEXT, id_rep TEXT) (FIELDS_FAKE_RS_ERROR)
    tNG Execution Trace - VIEW

    Hi Florencia,
    a column name like "T.T" will always lead to such errors, because characters like a dot (.) are forbidden, so to speak -- MySQL table and column names may generally only contain alphanumeric characters (0-9, a-z, A-Z), and the only allowed separator would be an underscore (_)
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Problem while creating Invoice

    Hi all,
           I am trying to create an invoice in BusinessOne using DI API. While creating invoice i am facing "Exchange Rate not Update "USD" " Error.
                   In BusinessOne Foreign Exchange Rate was given for the docDate. Still i am getting the same error. I am able to create the Invoice from the BusinessOne UI.It is not throwing any Error.  What may be the error. What are the cases for the above error. When this error will occur?
       Thanks in Advance,
    Ramu.

    Hi Ramu,
    Don't set the doc date property of the document. This is system related. Try to add it through the DI API - if is still fails don't set the due date property of the document. This is system calculated...

  • IMac (27", mid 2011) slowed with many, many errors on startup...help?

    My iMac (27", mid 2011) has slowed and gives many, many errors via Console. I have Zapped the pRAM, used safe start, Etresoft check, and a complete check with TechTool. I'm running out of ideas except to reformat and start again. Here are a few lines from Console on today's startup and the results from EtreCheck. Any ideas?
    Console (a dozen lines)
    6/10/14 11:25:34.000 AM kernel[0]: Sandbox: mds_stores(188) deny file-read-data /Applications/Utilities/VoiceOver Utility.app/Contents/MacOS/VoiceOver Utility/..namedfork/rsrc
    6/10/14 11:31:24.947 AM WindowServer[139]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    6/10/14 11:31:25.135 AM WindowServer[139]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.19 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/10/14 11:31:42.195 AM Finder[262]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: FileInfoBinding [0x9203] - extension: (NULL), UTI: dyn.agk80255drq, fileType: lock request size:18 scale: 1
    6/10/14 11:37:57.990 AM secd[307]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/10/14 11:37:57.990 AM secd[307]:  securityd_xpc_dictionary_handler EscrowSecurityAl[3206] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/10/14 11:49:10.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=3244[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    6/10/14 12:00:00.000 PM WindowServer[139]: CGXSetWindowListSystemAlpha: Invalid window 76 (index 0/1)
    6/10/14 12:01:03.571 PM xpcproxy[3302]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/10/14 12:31:14.533 PM ntpd[191]: SYNC state ignoring -0.130845 s
    6/10/14 12:34:53.048 PM WindowServer[139]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042801c0 device: 0x7fafd2c1b8e0  isBackBuffered: 1 numComp: 3 numDisp: 3
    EtreCheck version: 1.9.11 (43) - report generated June 10, 2014 at 11:16:14 AM PDT
    Hardware Information:
              iMac (27-inch, Mid 2011)
              iMac - model: iMac12,2
              1 2.7 GHz Intel Core i5 CPU: 4 cores
              16 GB RAM
    Video Information:
              AMD Radeon HD 6770M - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:28:17
    Disk Information:
              ST31000528AS disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 987.22 GB (60.78 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        eDrive (disk0s4) <not mounted>: 12 GB
              OPTIARC DVD RW AD-5690H 
    USB Information:
              Apple Internal Memory Card Reader
              Apple Computer, Inc. IR Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Seagate Backup+ Desk 3 TB
                        PhotoVAULT 2013+ (disk3s1) /Volumes/PhotoVAULT 2013+: 3 TB (218.41 GB free)
              Mitsumi Electric Hub in Apple Extended USB Keyboard
                        Logitech USB-PS/2 Optical Mouse
                        Mitsumi Electric Apple Extended USB Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] at.obdev.nke.LittleSnitch (4092 - SDK 10.8) Support
              [kext loaded] com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) Support
              [not loaded] com.Avid.driver.AvidDX (4.9.2) Support
              [not loaded] com.SafeNet.driver.Sentinel (7.3.0) Support
              [not loaded] com.avid.driver.Avid_SCSI (1.2.0) Support
              [not loaded] com.avid.driver.Avid_SCSI_RBC (1.2.0) Support
              [not loaded] com.digidesign.fwfamily.driver (8.0.4f1) Support
              [not loaded] com.digidesign.mbox2.boot.driver (8.0.4f1) Support
              [not loaded] com.digidesign.mbox2.driver (8.0.4f1) Support
              [kext loaded] com.hzsystems.terminus.driver (4) Support
              [not loaded] com.paceap.kext.PACESupport (5.7.2b8) Support
              [not loaded] com.paceap.kext.PACESupport2 (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.leopard (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.master (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.panther (5.7.2b8) Support
              [kext loaded] com.paceap.kext.pacesupport.snowleopard (5.7.2b8) Support
              [not loaded] com.paceap.kext.pacesupport.tiger (5.7.2b8) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [not loaded] com.symantec.kext.SymAPComm (12.6f28 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.3f6) Support
              [kext loaded] com.symantec.kext.ips (3.9.1f10) Support
              [not loaded] com.wdc.driver.1394HP (1.0.11 - SDK 10.4) Support
              [not loaded] com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) Support
              [not loaded] com.wdc.driver.USBHP (1.0.11) Support
              [not loaded] com.wdc.driver.USB_64HP (1.0.0 - SDK 10.6) Support
    Startup Items:
              Digidesign Mbox 2: Path: /Library/StartupItems/Digidesign Mbox 2
              DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
              PACESupport: Path: /Library/StartupItems/PACESupport
    Launch Daemons:
              [running] at.obdev.littlesnitchd.plist Support
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
              [running] com.autodesk.backburner_manager.plist Support
              [running] com.autodesk.backburner_server.plist Support
              [failed] com.autodesk.backburner_start.plist Support
              [running] com.digidesign.fwfamily.helper.plist Support
              [running] com.micromat.CheckmateIdleDaemon.plist Support
              [not loaded] com.micromat.CheckmateWorkerDaemon.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.symantec.errorreporter-periodic.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.nav.migrateqtf.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [loaded] PACESupport.plist Support
    Launch Agents:
              [running] at.obdev.LittleSnitchUIAgent.plist Support
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.CS5ServiceManager.plist Support
              [running] com.micromat.CheckmateAgent.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.symantec.errorreporter-periodicagent.plist Support
              [running] com.symantec.uiagent.application.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [failed] com.adobe.ARM.[...].plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] ws.agile.1PasswordAgent.plist Support
    User Login Items:
              AdobeResourceSynchronizer
              1Password.agilekeychain
              Dropbox
              Google Drive
              DragThing
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
              FlashPlayer-10.6: Version: 14.0.0.125 - SDK 10.6 Support
              AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
              Flash Player: Version: 14.0.0.125 - SDK 10.6 Support
              AdobePDFViewer: Version: 10.0.0 Support
              Default Browser: Version: 537 - SDK 10.9
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.2.3 - SDK 10.6 Support
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
    Safari Extensions:
              Ebay Shopping Assistant: Version: 1.1
              DoNotTrackMe: Online Privacy Protection: Version: 3.1.1064
              Amazon Shopping Assistant: Version: 1.1
              Video Converter: Version: 4.0.0
              Slick Savings: Version: 2.0
              Searchme: Version: 1.3
              1Password: Version: 4.2.1
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              A Better Finder Preferences  Support
              Default Folder X  Support
              Flash Player  Support
              MenuMeters  Support
              Norton\nQuickMenu  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO - Auto backup turned off
              Volumes being backed up:
                        Macintosh HD: Disk size: 919.42 GB Disk used: 862.81 GB
              Destinations:
                        TimeMACHINE 2013 [Local] (Last used)
                        Total size: 2 
                        Total number of backups: 36
                        Oldest backup: 2013-04-27 17:05:57 +0000
                        Last backup: 2014-05-02 19:20:57 +0000
                        Size of backup disk: Too small
                                  Backup size 2  < (Disk used 862.81 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   1%          1Password 4
                   1%          PluginProcess
                   0%          fontd
                   0%          SystemUIServer
    Top Processes by Memory:
              246 MB          mds_stores
              229 MB          Safari
              213 MB          com.apple.IconServicesAgent
              115 MB          Dropbox
              98 MB          Finder
    Virtual Memory Information:
              10.65 GB          Free RAM
              3.14 GB          Active RAM
              762 MB          Inactive RAM
              1.46 GB          Wired RAM
              519 MB          Page-ins
              0 B          Page-outs
    Thanks for reading this far... ;-)
    joe holly

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the behest of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts 51 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports 'com.autodesk.AutoCad com.evenflow.dropbox com.google.GoogleDrive' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 ` route -n get default|awk '/e:/{print $2}' ` 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n\t(%s)\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1000) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/d;/(etc|Preferences)\//s/^\.\/[^/]+//p;' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| ","||kMDItem'${p[35]}'=");sub("^.."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[9]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/ { next;} /%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]" "$1;b=b$1;} END { if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|POSIX sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ +B/{ s/.+= |(-[0-9]+)?\.s.+//g;p;} ' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / /{$0="'"${p[28]}"'"};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' 's/0/Off/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil PlistBuddy whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '-c Print /L*/P*/loginw*' '-c Print L*/P*/*loginit*' '-c Print L*/Saf*/*/E*.plist' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' '-c Print\ :'${p[35]}' 2>&1' '-c Print\ :Label 2>&1' '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'Beac|caug|dead[^bl]|FAIL|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,[lps]*.conf,pam.d,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}* .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' -i4TCP:0-1023 com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' );N1=${#c2[@]};for j in {0..8};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A1 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D23 14 2 48 43;D13 4 5 32 1;D22 4 4 50 0;D13 14 3 49 5;D12 26 48 59 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-  
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with "Model Identifier." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Trying to create Invoice using the API,however i am not able to create the customer accounts in the front end

    when creating invoice using the API AR_INVOICE_AP_PUB.Create_Single_invoice Am Getting the below Error:
    Transaction type is invalid with current transaction date
    invalid transaction type
    either an inventory item description must be provided
    Kindly help me here

    Hi Team,
    I  tried creating the invoice and I got the above errors, however, when updated the batch source ID I am now getting this following error only, i am just left with the following Error only
    Either an inventory item or description must be provided.
    Please help me on this.

Maybe you are looking for