LSMW - Report to get IDOC failures and its external reference number

Hi All,
I'm currently using LSMW for data migration in CRM, for Business Partner and transaction data.
I need to generated a report which covers the idocs which have failed and the external identifier for which it has failed. Currently the IDOC reports that are available OOB provide the IDOC number and the reason for failure. It will be great if I can get the external identifier of the transaction as well.
I searched for a report in SAP but could not find any which gives this functionality.
Please advice.
Thanks in advance.

Hi,
1.)If you want the ouput in the same report program which triggers the idoc, it is better to use the control record information.
You will get IDoc Number from XEDIDC(check the below code) and you can store the idoc number into an internal table if more idoc is expecting to be triggered.
     call function 'MASTER_IDOC_DISTRIBUTE'
          exporting
            MASTER_IDOC_CONTROL        = EDIDC
          tables
            COMMUNICATION_IDOC_CONTROL = XEDIDC
            MASTER_IDOC_DATA           = XEDIDD
          exceptions
            others                     = 5.
   read table xedidc index 1.
  append xedidc-docno to it_docno.
And finallly use this to display in the output.
2.) if u want it in a seperate report, then select based on date, idoctype, messagetype
Regards,
Sajith

Similar Messages

  • Get Idoc structure and contents from Shipment Number

    Hi all,
    We have a 3rd Party Logistics company who wants to send us back minimal shipment data to enable us to update our shipment details.  They want to send us the shipment number, and vehicle information.  My tests (and SAP's documentation) have indicated that in order to modify a shipment via the message type SHPADV, you need to have the complete Shipment Idoc structure filled in in order for the idoc to process successfully.
    My client has indicated that they want to use IDoc processing to manage the shipment updates.
    Does anyone know of a FM that can be used to fill the shipment Idoc structures if only a shipment number is filled in?  Or do the structures have to be modified manually?  For example, these is a function called 'IDOC_READ_COMPLETELY' which populates all the segment details if an Idoc number is entered.  I want something similar, but for a document number, in this instance, a shipment number. 
    Cheers,
    Steve

    Roger,
    Thanks for this suggestion.  I chose to go down another path which I put up here for those who have this problem in the future.
    I have passed the shipment number and just the fields that require modification into user exit EXIT_SAPLV55K_020, and recorded the passed in values into variables.
    I then executed the <b>idoc_output_shpmnt</b> idoc, which, when the shipment number is passed in to the nast-objky field, reads the required shipment data and populates the idoc_data table with the segment details as per sending the document out.  But the FM doesn't actually call the ALE layer, so I then loop through the idoc_data table, modifying the fields that need to change with the values I've saved in the variables, and passed the modified idoc_data tables back into the <b>idoc_input_shpmnt</b> FM.  Worked a treat.
    Cheers,
    Steve

  • How to get selection screen elements and its table reference of a report ?

    halo experts
    How can I get selection screen elements and its table reference of a report ? . I tried rs_refresh_from_select_options. But I am unable to get the table and field it is referring to
    For eg if my selection screen 1000 is
    parameters: p_carrid type spfli-carrid,
    select-options :s-_connid type sflight-connid.
    is there any Fm or method which gives me what are the screen elements( p_carrid and s_connid ) and what table( splfi and sflight ) and field ( carrid and conid )it is referring to ?

    The following code is an example of how you might dynamically determine all your PARAMETERS and SELECT-OPTIONS variables at run time.  The PARAMETERS and SELECT-OPTIONS only point to a dictionary element--not a specific table.  Even though you may say "spfli-carrid" or "sflight-connid", the data type really references the dictionary type and not a specific table/structure.
    REPORT  ZTEST_PROG.
    TABLES sflight.
    DATA:
           screen_tab TYPE STANDARD TABLE OF screen,
           wa_screen TYPE screen,
           scrn_nm TYPE string,
           scrn_leftover TYPE string,
           l_type TYPE REF TO cl_abap_typedescr,
           typ_nm TYPE string,
           typ_pre TYPE string.
    FIELD-SYMBOLS <fs_data> TYPE ANY.
    PARAMETERS p_carrid TYPE spfli-carrid.
    SELECT-OPTIONS s_connid FOR sflight-connid.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-group3 = 'PAR'
          OR screen-group3 = 'LOW'.
            APPEND screen TO screen_tab.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      LOOP AT screen_tab INTO wa_screen.
        ASSIGN (wa_screen-name) TO <fs_data>.
        l_type = cl_abap_typedescr=>describe_by_data( <fs_data> ).
        IF wa_screen-group3 = 'LOW'.
          SPLIT wa_screen-name AT '-' INTO scrn_nm scrn_leftover.
          TRANSLATE scrn_nm TO UPPER CASE.
        ELSE.
          scrn_nm = wa_screen-name.
        ENDIF.
        SPLIT l_type->absolute_name AT '=' INTO typ_pre typ_nm.
        WRITE:
                 / 'Screen Name:  ', scrn_nm,
                 / 'DDIC Type:    ', typ_nm.
      ENDLOOP.
    When you get into defining internal tables you can determine those at run time with cl_abap_structdescr.  The following is an example of how you might do that.  You can loop through the "components_table" and evaluate each field of the structure in this way.
    DATA: structure_reference TYPE REF TO cl_abap_structdescr,
          components_table TYPE abap_compdescr_tab,
          components_structure LIKE LINE OF components_table.
    structure_reference ?= cl_abap_structdescr=>describe_by_data( any_structure ).
    components_table = structure_reference->components.
    I don't know if this answers any of your questions but I hope that some of it is useful.

  • Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too

    Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too
    a. User trying to create delivery but stock not available.
    b. When stock is not there it should show an error message in SAP screen but its not -  like stock not available etc
    c. Fedex gets delivery notice for the delivery; if its more than zero it will create delivery otherwise less than zero it won’t accept.
    d. But issue its creating even its less than zero
    Is there anyone who can help me out...

    When one is created with zero quantities it starts blocking our deliveries from getting through to fedex because deliveries will in doubt have been blocked at fedex. As we process our orders in morning and if there is an STO blocking orders, it will be in afternoon .
    Any suggestions !!!

  • Report for Asset number and its Purahcse order number

    Hello Friends,
    Please give me details of report for Asset number and its Purchase order number .
    Regards
    Nilesh Vakil

    hi,
    GO to ME2N...
    use SHIFT + F4..
    there check for the acc. assign cata. field and input the asset  and execute..
    Regards
    Priyanka.P

  • How to get the table_name and its count(*) in a SQL

    Hi,
    Can anybody tell me how to write a sql to get the table_name and its count(*) in a SQL:
    Output should be:
    table_name count(*)
    XXX 261723
    YYY 3343
    Regards,
    G. Rajakumar.

    hello
    there r a lot ways
    i'll suggest u two of them
    1) the following dynamic sql procedure
    DECLARE
    TYPE array_type IS TABLE OF VARCHAR(30);
    TYPE cur_typ IS REF CURSOR;
    c1 cur_typ;
    count1 integer;
    tab_arr array_type;
    querystr varchar2(200);
    begin
    SELECT table_name bulk collect into tab_arr FROM sys.all_all_tables ;
    FOR I IN tab_arr.first..tab_arr.last LOOP
    DBMS_OUTPUT.PUT(TAB_ARR(I));
    querystr := 'select count(*) from ' ||TAB_ARR(I);
    open c1 for querystr;
    fetch c1 into count1;
    EXIT WHEN c1%NOTFOUND;
    dbms_output.put_line(count1);
    END LOOP;
    close c1;
    END;
    2) or use ANALYZE to analyze the tables and get the number of rows in the NUM_ROW column of DBA_TABLES view.
    if u still have any problem mail me at [email protected]
    shalini

  • Is there any function module to get vc characteristics and its value using material number?

    Hi Experts,
    I am using BAPI_CLASS_GET_CHARACTERISTICS, BAPI_OBJCL_GETCLASSES to get characteristics description and its values.
    Is there any other Function module to pull this values using material number?
    Thanks in Advance.
    Ramkumar

    Have you tried this BAPI_OBJCL_GETDETAIL
    Import parameters
    MATNR value in the OBJECTKEY
    MARA in OBJECTTABLE
    Class name in CLASSNUM
    '001' in CLASSTYPE
    You will get the Class Characteristics data into these tables:
    ALLOCVALUESNUM
    ALLOCVALUESCHAR
    Jogeswara Rao K

  • I keep trying to get onto appstore and its says my apple ID is disabled. Why is this happening and how can i fix it?

    keep trying to get onto appstore and its says my apple ID is disabled. Why is this happening and how can i fix it?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

  • Can i use my time capsule to wirelessly backup my macbook and its external hard drive, which up until now was it's time machine and storage? How?

    Can i use my time capsule to wirelessly backup my macbook and its external hard drive, which up until now was it's time machine and storage? How?

    The external drive must be connected to the Mac using either USB or FireWire
    You must remove the external hard drive from the list of items that are "excluded" from backups in Time Machine Preferences.
    Here's how:
    Open System Preferences (gear icon on the dock)
    Open Time Machine
    Click Options
    Look for the name of the hard drive in the list of "excluded" items and click on it to highlight it
    Click the -- (minus) button at the bottom of the list to remove the hard drive from the list of "excluded" items....so it will now be backed up
    Strongly recommend that you do the first backup using Ethenret from your computer to the Time Capsule since the entire contents of the external drive will be copied on the first pass. Ethernet will be 3-5 faster than wireless.
    Once you have the first backup done, you can use wireless for subsequent backups since they will nornally be much smaller....unless you add large files to the external drive.

  • IDOC type and segment's BasisRelease number

    Dear expert,
    May i know is there a way to change the IDOC type and segment's BasisRelease number when i try releasing IDOC. Any special TCode?
    Please comment.
    Thanks in advance.

    FYI, I'm CRM5.0, SAP_BASIS release 700.

  • How to make External Reference number and Ref Date Mandatory in Complaints

    Dear Experts,
    Greetings!!!.
    How to make External Reference number (EXT_REF_NUMBER ) and Ref Date ( EXT_REF_DATE ) Mandatory in Complaints.
    Regards,
    Sany

    HI,
    You can use Incompleteness Procedure to make those fields mandatory in complaint transaction.
    Regards,
    PP

  • Standard Report to get both PR and PO number

    Can anybody suggest a standard report which gives both PR and PO number. I am working with 4.6 release.

    dear
    choose ME5A and select closed requisition and run the report you will get it after set the dynamic selection,
    this is the only way to get the PR and PO no. in a list else you can get individual as per the laxman.
    regds
    dev...!

  • How to get IDoc Metadata and Structure without connection to sender

    Hello folks!
    Is there any chance to receive and process an IDoc with PI without having loaded the IDoc
    Metadata with a direct connection from the sending SAP System? Can't this be done by hand?
    Or is it not possible to bypass the IDoc Adapter and send the Idoc via an RFC?
    Thanks in advance
    Gunnar

    Hi!
    The idea behind the question is the following:
    Usually any NONE-SAP RFC-Server of an Integration Tool can receive IDocs just by
    beein registered at the sending system. The way you get the metadata into the
    receiving Integration tool is an complete different story an can be done by
    manually or by doneload the metadata from the DDIC just one time by hand.
    But with PI you need to connect to the sending SAP System directly
    with idx1 and by importing the structure out of the Integration Builder, right?

  • HT1430 what happens when i always get sim failure and loosing service and get sim Failure

    im always getting sim failure on my phone and always loose service

    First step would be to go to your wireless carrier and get a new sim.
    If that does not work, post back with the exact wording of any error
    messages you get when new sim is in the iPhone. Also post what
    it says when you look at Settings=>General=>Carrier.

  • Can not use Safari at all, just get a warning and its frooze whats up?.

    Hey folks need your help with Safari issue. It started with pop up adds creating a new window and then I have to click it off, the add is about Mac cleaner. Then wen site were generated based on the site I was on, using their name asking me to take a survey. Now I just get a warning that says I have a virus and its frooze up on that screen in a loop. Can not find any solution as of yet, it all started with the latest up I got of safari. I turn on add blocker but that had no effect.
    thank you

    Start time: 17:58:12 08/30/14
    Model Identifier: iMac11,1
    System Version: OS X 10.9.4 (13E28)
    Kernel Version: Darwin 13.3.0
    Time since boot: 6:56
    Memory
        BANK 0/DIMM0:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 1/DIMM0:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 0/DIMM1:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 1/DIMM1:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x857F
    SATA
       ST31000528AS                           
    FireWire
       MAX 060114 251.0 (DMI)
       GoFlex Desk Mac (Seagate)
       G-DRIVE (G-TECH)
    USB
       Hub (D-Link Corporation)
       iLok (iLok)
       Griffin PowerMate (Griffin Technology, Inc.)
       Officejet 5600 series (Hewlett Packard)
       UX2 (Line 6)
    Log
       Aug 27 20:13:16 process POD Farm 2[29459] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Aug 27 20:45:43 process com.apple.WebKit[29523] thread 5281106 caught burning CPU! It used more than 50% CPU (Actual recent usage: 90%) over 180 seconds. thread lifetime cpu usage 90.197988 seconds, (90.124790 user, 0.073198 system) ledger info: balance: 90008028630 credit: 90008028630 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 98912446894
       Aug 28 19:05:32 com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 28 19:05:32 com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 28 19:48:41 process Finder[199] caught causing excessive wakeups. Observed wakeups rate (per sec): 160; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 167608
       Aug 28 19:55:17 process QuickTime Player[32101] thread 5859002 caught burning CPU! It used more than 50% CPU (Actual recent usage: 86%) over 180 seconds. thread lifetime cpu usage 90.626906 seconds, (88.427751 user, 2.199155 system) ledger info: balance: 90007042359 credit: 90007042359 debit: 0 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 104059358365
       Aug 28 20:11:41 process POD Farm 2[32413] caught causing excessive wakeups. Observed wakeups rate (per sec): 176; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45020
       Aug 28 20:28:15 process MPEG Streamclip[32515] thread 5944849 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
       Aug 28 21:14:53 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
       Aug 29 18:48:19 process PluginProcess[34860] caught causing excessive wakeups. Observed wakeups rate (per sec): 400; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 1942048
       Aug 29 22:49:06 process POD Farm 2[35433] caught causing excessive wakeups. Observed wakeups rate (per sec): 176; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45002
       Aug 30 11:03:02 jnl: b(1, 3): replay_journal: from: 16420352 to: 21494272 (joffset 0x1d1c000)
       Aug 30 11:03:02 com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
       Aug 30 11:03:02 jnl: b(1, 3): journal replay done.
       Aug 30 11:03:39 jnl: disk2s2: replay_journal: from: 111644672 to: 111853568 (joffset 0x3a38000)
       Aug 30 11:03:39 jnl: disk1s2: replay_journal: from: 7561216 to: 7770112 (joffset 0x3a38000)
       Aug 30 11:03:39 jnl: disk2s2: journal replay done.
       Aug 30 11:03:39 jnl: disk1s2: journal replay done.
       Aug 30 16:33:42 process GarageBand[4713] thread 274006 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
    Memory: kernel_task (UID 0) is using 1195 MB
    kexts
       com.seagate.driver.PowSecDriverCore (5.1.1)
       com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN (1.0.0d1)
       com.seagate.driver.PowSecLeafDriver_10_5 (5.1.1)
       com.apple.driver.AppleIntelMCEReporter (104)
       com.digidesign.iokit.DigiDal (10.3.7f41)
       com.line6.driver.xtaudio (7.2.9)
       com.paceap.kext.pacesupport.snowleopard (5.9.1)
    Daemons
       com.wibu.CodeMeter.Server
       com.paceap.pacesupport
       com.vsearch.helper
       com.paceap.eden.licensed
       com.line6.l6ksettingmgr
       com.adobe.SwitchBoard
       com.adobe.fpsaud
    Agents
       com.hp.scanModule.9888.UUID
       com.seagate.SeagateStorageGauge.plist
       com.hp.help.tocgenerator
       com.google.keystone.user.agent
       com.adobe.ARM.UUID
    launchd
       /System/Library/LaunchAgents/com.apple.appleseed.seedusaged.plist
       -    com.apple.appleseed.seedusaged
       /System/Library/LaunchAgents/com.apple.CalendarAgentLauncher.plist
       -    com.apple.CalendarAgentLauncher
       /System/Library/LaunchAgents/com.apple.java.InstallOnDemand.plist
       -    com.apple.java.InstallOnDemandAgent
       /System/Library/LaunchAgents/com.apple.java.updateSharing.plist
       -    com.apple.java.updateSharing
       /System/Library/LaunchAgents/com.apple.noticeboard.agent.plist
       -    com.apple.noticeboard.agent
       /System/Library/LaunchDaemons/com.apple.appleseed.fbahelperd.plist
       -    com.apple.appleseed.fbahelperd
       /System/Library/LaunchDaemons/com.apple.displaypolicyd.plist
       -    com.apple.displaypolicyd
       /System/Library/LaunchDaemons/com.apple.gkbisd.plist
       -    com.apple.gkbisd
       /System/Library/LaunchDaemons/com.apple.noticeboard.state.plist
       -    com.apple.noticeboard.state
       /System/Library/LaunchDaemons/com.wibu.CodeMeter.Server.plist
       -    com.wibu.CodeMeter.Server
       /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
       -    com.adobe.AAM.Startup-1.0
       /Library/LaunchAgents/com.hp.help.tocgenerator.plist
       -    com.hp.help.tocgenerator
       /Library/LaunchAgents/com.seagate.SeagateStorageGauge.plist
       -    com.seagate.SeagateStorageGauge.plist
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
       -    com.adobe.fpsaud
       /Library/LaunchDaemons/com.adobe.SwitchBoard.plist
       -    com.adobe.SwitchBoard
       /Library/LaunchDaemons/com.line6.l6ksettingmgr.plist
       -    com.line6.l6ksettingmgr
       /Library/LaunchDaemons/com.paceap.eden.licensed.plist
       -    com.paceap.eden.licensed
       /Library/LaunchDaemons/PACESupport.plist
       -    com.paceap.pacesupport
       Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
       -    com.adobe.AAM.Scheduler-1.0
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
       -    com.adobe.ARM.UUID
       Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
       -    com.apple.Safari
       Library/LaunchAgents/com.google.keystone.agent.plist
       -    com.google.keystone.user.agent
    Startup items
       /Library/StartupItems/DigidesignLoader/DigidesignLoader
       /Library/StartupItems/DigidesignLoader/StartupParameters.plist
       /Library/StartupItems/WDBMService/StartupParameters.plist
       /Library/StartupItems/WDBMService/WDBMService
       /Library/StartupItems/WDBMService/WDButtonManager.app/Contents/Info.plist
       /Library/StartupItems/WDBMService/WDButtonManager.app/Contents/MacOS/WDButtonMa nager
       /Library/StartupItems/WDBMService/WDButtonManager.app/Contents/Resources/Info-M onacoBackground__Upgraded_.plist
    Bundles
       /System/Library/Extensions/AppleFSCompressionTypeLZVN.kext
       -    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN
       /System/Library/Extensions/AppleIntelMCEReporter.kext
       -    com.apple.driver.AppleIntelMCEReporter
       /System/Library/Extensions/AuthenticationSupport.plugin
       -    com.SecuritySolutions.AuthenticationSupport
       /System/Library/Extensions/AuthenticationSupportEnabler.plugin
       -    com.SecuritySolutions.AuthenticationSupportEnabler
       /System/Library/Extensions/CmUSBMassStorage.kext
       -    com.wibu.codemeter.CmUSBMassStorage
       /System/Library/Extensions/DigiDal.kext
       -    com.digidesign.iokit.DigiDal
       /System/Library/Extensions/hp_designjet_series.kext
       -    com.hp.print.hpio.Designjet.kext
       /System/Library/Extensions/hp_Deskjet_io_enabler.kext
       -    com.hp.print.hpio.Deskjet.kext
       /System/Library/Extensions/hp_fax_io.kext
       -    com.hp.kext.hp-fax-io
       /System/Library/Extensions/hp_Inkjet1_io_enabler.kext
       -    com.hp.print.hpio.Inkjet1.kext
       /System/Library/Extensions/hp_Inkjet3_io_enabler.kext
       -    com.hp.print.hpio.Inkjet3.kext
       /System/Library/Extensions/hp_Inkjet4_io_enabler.kext
       -    com.hp.print.hpio.Inkjet4.kext
       /System/Library/Extensions/hp_Inkjet5_io_enabler.kext
       -    com.hp.print.hpio.Inkjet5.kext
       /System/Library/Extensions/hp_Inkjet7_io_enabler.kext
       -    com.hp.print.hpio.inkjet7.kext
       /System/Library/Extensions/hp_Inkjet8_io_enabler.kext
       -    com.hp.print.hpio.inkjet8.kext
       /System/Library/Extensions/hp_Inkjet_io_enabler.kext
       -    com.hp.print.hpio.Inkjet.kext
       /System/Library/Extensions/hp_io_printerclassdriver_enabler.kext
       -    com.hp.hpio.hp-io-printerclassdriver-enabler
       /System/Library/Extensions/hp_Laserjet_io_enabler.kext
       -    com.hp.print.hpio.Laserjet.kext
       /System/Library/Extensions/hp_Officejet_io_enabler.kext
       -    com.hp.print.hpio.Officejet.kext
       /System/Library/Extensions/hp_Photosmart_io_enabler.kext
       -    com.hp.print.hpio.Photosmart.kext
       /System/Library/Extensions/hp_PhotosmartPro_io_enabler.kext
       -    com.hp.print.hpio.PhotosmartPro.kext
       /System/Library/Extensions/hp_qc_io_enabler.kext
       -    com.hp.hpio.hp_psa530_630_io_enabler
       /System/Library/Extensions/IOFireWireWDHID.kext
       -    com.wdc.driver.IOFireWireWDHID
       /System/Library/Extensions/LexmarkUSBMerge.kext
       -    com.lexmark.print.usbmerge
       /System/Library/Extensions/Line6Audio.kext
       -    com.line6.driver.xtaudio
       /System/Library/Extensions/PACESupportFamily.kext
       -    com.paceap.kext.pacesupport.master
       /System/Library/Extensions/Seagate Storage Driver.kext
       -    com.seagate.driver.PowSecDriverCore
       /System/Library/Extensions/WD1394_64HPDriver.kext
       -    com.wdc.driver.1394_64HP
       /System/Library/Extensions/WD1394HPDriver.kext
       -    com.wdc.driver.1394HP
       /System/Library/Extensions/WDUSB_64HPDriver.kext
       -    com.wdc.driver.USB_64HP
       /System/Library/Extensions/WDUSBHPDriver.kext
       -    com.wdc.driver.USBHP
       /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
       -    info.emagic.driver.unitor
       /Library/Audio/MIDI Drivers/Line6MIDI.plugin
       -    com.line6.midi.driver.PODxt
       /Library/Audio/Plug-Ins/Components/bx_cleansweep V2.component
       -    com.plugin-alliance.plugins.au.BXCleansweepV2
       /Library/Audio/Plug-Ins/Components/bx_solo.component
       -    com.plugin-alliance.plugins.au.BXSolo
       /Library/Audio/Plug-Ins/Components/Flip4Mac WMA Import.component
       -    net.telestream.wmv.import
       /Library/Audio/Plug-Ins/Components/GearBoxAU.component
       -    com.line6.gearboxau
       /Library/Audio/Plug-Ins/Components/POD Farm 2.component
       -    com.line6.podfarm2.au
       /Library/Audio/Plug-Ins/Components/POD Farm Bass Amps.component
       -    com.line6.bassfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Delays.component
       -    com.line6.delayfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Distortions.component
       -    com.line6.distortionfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Dynamics.component
       -    com.line6.dynamicsfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Filters.component
       -    com.line6.filterfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Guitar Amps.component
       -    com.line6.guitarfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Mods.component
       -    com.line6.modfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Preamps + EQ.component
       -    com.line6.preampfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Reverbs.component
       -    com.line6.reverbfarm.au
       /Library/Audio/Plug-Ins/Components/POD Farm Tuner.component
       -    com.line6.tuner.au
       /Library/Audio/Plug-Ins/Components/POD Farm Wahs.component
       -    com.line6.wahfarm.au
       /Library/Audio/Plug-Ins/HAL/Avid CoreAudio.plugin
       -    com.avid.avid.AvidCoreAudioPlugIn
       /Library/Audio/Plug-Ins/VST/Line 6/BC Chorus 4 VST(Mono).vst
       -    N/A
       /Library/Audio/Plug-Ins/VST/Line 6/BC Chorus 4 VST(Stereo).vst
       -    N/A
       /Library/Audio/Plug-Ins/VST/Line 6/BC Phaser 3 VST(Mono).vst
       -    N/A
       /Library/Audio/Plug-Ins/VST/Line 6/BC Phaser 3 VST(Stereo).vst
       -    N/A
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm 2.vst
       -    com.line6.podfarm2.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Bass Amps.vst
       -    com.line6.bassfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Delays.vst
       -    com.line6.delayfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Distortions.vst
       -    com.line6.distortionfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Dynamics.vst
       -    com.line6.dynamicsfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Filters.vst
       -    com.line6.filterfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Guitar Amps.vst
       -    com.line6.guitarfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Mods.vst
       -    com.line6.modfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Preamps + EQ.vst
       -    com.line6.preampfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Reverbs.vst
       -    com.line6.reverbfarm.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Tuner.vst
       -    com.line6.tuner.vst
       /Library/Audio/Plug-Ins/VST/Line 6/POD Farm Wahs.vst
       -    com.line6.wahfarm.vst
       /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
       -    com.AdobeAAMDetectLib.AdobeAAMDetect
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       -    com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/Flash Player.plugin
       -    N/A
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
       -    net.telestream.wmv.plugin
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       -    com.Google.GoogleEarthPlugin.plugin
       /Library/Internet Plug-Ins/iLokClientHelper.plugin
       -    com.paceap.ilok.client.helper.plugin
       /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
       -    com.apple.plugin.iPhotoPhotocast
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       -    com.apple.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/OfficeLiveBrowserPlugin.plugin
       -    com.microsoft.officelive.browserplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       -    com.microsoft.SilverlightPlugin
       /Library/PreferencePanes/Flash Player.prefPane
       -    com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Flip4Mac WMV.prefPane
       -    net.telestream.wmv.prefpane
       /Library/PreferencePanes/Line6AudioMIDI.prefPane
       -    com.line6.audiomidiprefpane
       /Library/QuickTime/AppleAVCIntraCodec.component
       -    com.apple.AppleAVCIntraCodec
       /Library/QuickTime/AppleHDVCodec.component
       -    com.apple.AppleHDVCodec
       /Library/QuickTime/AppleProResCodec.component
       -    com.apple.AppleProResCodec
       /Library/QuickTime/DesktopVideoOut.component
       -    com.apple.DesktopVideoOut
       /Library/QuickTime/DVCPROHDCodec.component
       -    com.apple.DVCPROHDCodec
       /Library/QuickTime/FCP Uncompressed 422.component
       -    N/A
       /Library/QuickTime/Flip4Mac WMV Advanced.component
       -    net.telestream.wmv.advanced
       /Library/QuickTime/Flip4Mac WMV Export.component
       -    net.telestream.wmv.export
       /Library/QuickTime/Flip4Mac WMV Import.component
       -    net.telestream.wmv.import
       /Library/QuickTime/IMXCodec.component
       -    com.apple.IMXCodec
       /Library/QuickTime/LiveType.component
       -    com.apple.LiveType.component
       /Library/ScriptingAdditions/Adobe Unit Types.osax
       -    N/A
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
       -    com.skype.skypeabdialer
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
       -    com.skype.skypeabsms
       Library/Caches/com.apple.Safari/Extensions/AdBlock-2.safariextension
       -    com.betafish.adblockforsafari
       Library/Caches/com.apple.Safari/Extensions/searchExt-1.safariextension
       -    com.conduit.safari
       Library/Internet Plug-Ins/fbplugin_1_0_1.plugin
       -    com.facebook.plugin
       Library/Widgets/bassomatic.wdgt
       -    ch.zzz.widget.bassomatic
       Library/Widgets/Chord Reference_0.8.wdgt
       -    ch.zzz.widget.chordreference
       Library/Widgets/HP Ink Widget.wdgt
       -    com.hp.widget.inkwidget
    dylibs
       /usr/lib/libruby.2.0.0.dylib
    Apps
       /Applications/Dropbox.app
    Contents of /System/Library/LaunchDaemons/com.wibu.CodeMeter.Server.plist (XML  document text)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
               <key>Label</key>
               <string>com.wibu.CodeMeter.Server</string>
               <key>ProgramArguments</key>
               <array>
                       <string>/Applications/CodeMeter.app/CodeMeterMacX</string>
                       <string>-v</string>
               </array>
               <key>WorkingDirectory</key>
               <string>/Applications/CodeMeter.app</string>         
               <key>StandardOutPath</key>
               <string>/dev/null</string>
               <key>RunAtLoad</key>
               <true/>       
       </dict>
       </plist>
    Font issues: 44
    Bad plists
       Library/Preferences/com.AgiedPLC.Agave.plist
       Library/Preferences/com.apple.iphotomosaic.plist
       Library/Preferences/com.Brainlus.Sidecar.plist
       Library/Preferences/com.CroceGermany.Hippopotamus.plist
       Library/Preferences/com.ingeurope.centralmagic.plist
       Library/Preferences/com.Prorionline.Demark.plist
       Library/Preferences/com.sectrongroup.command.plist
       Library/Preferences/com.Turbochrome.Gyroscope.plist
    Firewall: On
    DNS: 207.69.188.186
    Listeners
       launchd: afpovertcp
       launchd: microsoft-ds
       launchd: ssh
       kdc: kerberos
       cupsd: ipp
    Wi-Fi
       link auth: none
    Safari extensions
       AdBlock
       Conduit Search for Safari
    Widgets
       Chord Reference_0.8
       bassomatic
    Restricted files: 1454
    High file counts
       Desktop: 156
    Elapsed time (s): 283

Maybe you are looking for

  • Help: How to use 'CRM_ORDER_MAINTAIN'

    Hi All, I want to create a sales order with following requirements. 1) schedule lines having requesting dates for which vendor cannot deliver. 2) change the status from open to some other status. i this i have to use 'CRM_ORDER_MAINTAIN". but i want

  • Automating Portal Role Assignment

    Hi Everyone, At my project we are looking to automate the process of Portal Role assignment. With our current design, a user initially logs into the ISA and ICSS Portal as an anonymous Portal user.  To view all content the user will be required to re

  • At start up, use firefox as browser

    I have an old Safari browser version as well as the latest Firefox for my Mac OS 10.6.8 I have set Safari Version 5.1.10 (6534.59.10) to use Firefox 37.0.2 as my default browser. Apple no longer supports OS 10.6.8 with the latest Safari browser. I ha

  • 7410 All-in-on WEP passphrase

    I am unable to connect wirelessly.  My printer recognizes my router but it won't accept the password.  I have tried everything I know how.  HELP!

  • Forms 10g : How to increasethe font size ?

    Hi All , I want increase the font size in general for all the forms in my application. Could anyone please let me know which file needs to be configured to increase the font size in forms 10g ? Also what entries do I need to modify in it. Thanks,