Infoobject length problem in report

I have an infoobject sales area which has length 40 in my report.
When i execute the report in BEx Analyzer i am able to view  sales area's values having 40 chars.
But when i execute the same query in Web Analyzer i am only getting first 20 chars values of sales area, rest are not visible.
Please suggest me how to proceed further.

Hi,
go through the link provided by Eugene Khusainov it will surely  help you
/people/sap.user72/blog/2006/05/27/long-texts-in-sap-bw-modeling
Regards,
Marasa.

Similar Messages

  • Report Name Length Problem

    Hies
    Guys I've a problem in oracle report calling from Oracle FORMS. I am using reports and forms 6i. When the report name length is more than 30 characters the report engine runs first time correctly but on the second call of report the system gives an error :
    " RWRBE60.exe has generated errors and will be closed by windows.You will need to restart the program ".
    After this error the report engine closes and i have to call the report again.
    Is there a length fixed for reports name in Oracle 6i.
    Is any possible solution available.
    Remember i dont want to shorten my report names.
    Kindly help me with this.
    Thanx.

    There may be a limit, but I'm not aware of any. I never ran accross a limit. You may try the latest patch to see if it helps. What is your exact Developer version?
    But I really have never seen report names of more than 10 characters or so. Almost every application has some short program coding, like xyz_0010.rep, r_emp.rep etc.
    Do you mean the the name including the full path is more than 30 characters? If you put the path in the REPORTS60_PATH variable, your report names don't have to include the path.

  • Problem refreshing reports with params in the Interactive viewer from ASP

    I have a problem getting reports to refresh by clicking the Interactive Viewer's refresh button and reusing the supplied parameters. I am seeing this exact same problem on both V9.2 and 11.5 unmanaged RAS servers.
    I am using the following  function code to set the reports parameters:
    Public Sub PassParameter(param_index, param_value, param_is_multi,param_range_kind)
        Dim param_old ' parameter field in the report
        Dim param_new ' parameter field that will replace old parameter
    Dim paramValue ' discrete parameter value
    Dim aValues
    Dim rValues
    Dim iLoop
    Set param_old = clientDoc.DataDefinition.ParameterFields.Item(param_index)
    Set param_new = objFactory.CreateObject("CrystalReports.ParameterField";)
    If param_range_kind = 1 then
    Set paramValue = objFactory.CreateObject("CrystalReports.ParameterFieldDiscreteValue";)
    paramValue.Value = param_value
    else
    Set paramValue = objFactory.CreateObject("CrystalReports.ParameterFieldRangeValue";)
         rValues = split(param_value, "|")
    paramValue.BeginValue = rValues(0)
    paramValue.EndValue = rValues(1)
    paramValue.LowerBoundType = 2
    paramValue.UpperBoundType = 2
    end if
    param_old.CopyTo param_new
    if param_is_multi = 0 then
    param_new.CurrentValues.Add paramValue
    else
         aValues = split(param_value, ",")
       For iLoop = LBound(aValues) to UBound(aValues)
    param_new.CurrentValues.Add Trim(aValues(iLoop))
        Next
    end if
    clientDoc.DataDefController.ParameterFieldController.Modify param_old, param_new
        ' Clean up
        Set paramValue = Nothing
        Set param_new = Nothing
    End Sub
    and then redirecting to another ASP page to invoke the viewer (the report "clientDoc" object is passed to the viewer asp page a s a session variable). The code of the viewer page is:
    <%
    Response.ExpiresAbsolute = Now() - 1
    Response.Charset=";UTF-8"
    Dim clientDoc
    Set clientDoc = session("clientDoc")
    Dim ObjFactory, RptAppSession
    Set ObjFactory = CreateObject("CrystalReports.ObjectFactory";)
    Dim viewer
    Set viewer = ObjFactory.CreateObject("CrystalReports.CrystalReportInteractiveViewer";)
    viewer.PageTitle = "Interactive Report - " & Request("rptnam")
    viewer.IsOwnForm = true
    viewer.IsOwnPage = true
    viewer.HasRefreshButton = true
    viewer.EnableParameterPrompt = false
    viewer.ReuseParameterValuesOnRefresh ; = true
    viewer.HasExportButton = false
    ' viewer.HasPrintButton = false
    viewer.ReportSource = clientDoc.ReportSource
    Dim BooleanSearchControl
    Set BooleanSearchControl = ObjFactory.CreateObject("CrystalReports.BooleanSearchControl";)
    BooleanSearchControl.ReportDocument = clientDoc
    viewer.BooleanSearchControl = BooleanSearchControl
    viewer.ProcessHttpRequest Request, Response, Session
    %>
    If I set viewer.EnableParameterPrompt = false then I get an erro upon clicking the viewer's refresh button (error is: Missing parameter values. webReporting.dll error '8004100e' ), but if I set viewer.EnableParameterPrompt = true, then I get the automatically generated prompts appear but they are all empty. Either way, RAS doesn't remember the supplied parameters. I know the parameters are being read by RAS as the report's contents prove this fact, but they are not remembered after refreshing. If the automatically generated prompts are filled in and submitted, subsequent refreshes work correctly.
    How do I get the report viewer to reuse the parameters that have been set programmatically after a refresh? BTW, changing my implementation to anything other than using ASP against an unmanaged RAS server is not an option at this time.
    Thanks in advance!
    Dave.

    Hi Dave,
    I don't have a "nice" set of code lines but below hard codes one parameter name and value:
                ISCRParameterField newParameterField = new ParameterFieldClass();
                newParameterField.ParameterType = crParameterFieldTypeEnum.crParameterFieldTypeReportParameter;
                newParameterField.Name = "YourParamName"; // you can make a collection here
                newParameterField.ReportName = "";
                newParameterField.Type = CrFieldValueTypeEnum.crFieldValueTypeStringField;
                newParameterField.AllowMultiValue = true;
                newParameterField.AllowCustomCurrentValues = true;
                Fields parameterFields = reportClientDocument.DataDefinition.ParameterFields;
                ISCRField existingParameterField;
                RowsetMetaData rowsetMetaData = new RowsetMetaDataClass();
                Fields fields = new FieldsClass();
                ArrayList defaultValues = new ArrayList();
                reportClientDocument.DataDefController.ParameterFieldController.SetCurrentValue("", @"YourParamName", @"YourParamValue");
    Thanks again
    Don

  • Mailing Problem in Reports Writer 3.0 (URGENT)

    Hello,
    I 'm facing mailing problem in Reports Writer 3.0.
    All Reports files (.rep) are stored on NT Server(in a particular
    dir) and I have full permission (on that dir).
    After running the report, when I try to send mail then it gives
    the following error
    REP-4203: Error occurred while sending a mail message.
    REP-4221: Cannot access attachment file.
    So pls. suggest me.
    Thanks
    PSR
    null

    This is the wrong forum for reports issues - particularly for such an old version :-) However, you'll have to write a user exit to do that kind of stuff. And no don't ask me how, it was all too long ago, but there should be a section on that in your manual.

  • Problem in reports 6i  while using delimiter option.

    Hi,
    I am facing problem in report writer while using delimiter option.
    Report summary
    ==============
    In my report I am having two queries in data model and two different repeating frame for each in layout.
    These quires are called based on the user parameter. That means if user parameter is 1 then query 1 is called and the report is kick off and same for query 2 when user parameter is 2).
    Problem Encountered
    =================
    Both these reports are running fine while using pdf option to generate report .
    While using delimiter option only one of the query is able to generate report (based on which ever is created first and rest will give 0 byte file).
    I have also trapped it while using messages and it is logically flowing fine.
    I think report writer does not support such scenario.
    please expedite on this.
    thankx
    peyush

    Hi,
    There are no such limitations with Reports. If I understand properly, you run the Report twice, in each run, you are trying to execute different query, and you generate two dilimited Reports output files? This should work fine. Try out the latest Reports 6i patch-10 for this. You can even approach Oracle Support with your testcase. FYI, with Reports 6i patch-11, a new feature "dlimited data" is introduced which will give delimited output with a data dump i.e it would not be dependent upon the Reports layout. You can probably try out this new feature also.
    Thanks,
    Rohit Hi Rohit,
    Thanks for the information.
    well I am generating single output file on each run .
    the problem is somewhat funny.
    I have build query2 in data model after query1.
    query 1 is giving me correct output both in .PDF and delimiter version.
    But query2 is giving me 0 byte file for delimiter version although in .PDF it is running fine.
    When I took out query2 to another module it is running fine for both.
    I hope this make sense.
    Moreover if u still not clear about the problem and thinks that u can help me out please send me ur mail id so that I can send you the RDF copy.
    Thanks
    Mohit...

  • RAXINV - Strange problem in Report Builder

    I'm having a very wierd problem in Report builder 6.0.8.27.0. I'm simply trying to add two additional columns to the AR Invoice report (RAXINV) so that they get included in the XML output. This report has a main query called Q_INVOICE which is basically a dummy query to set the column aliases and at the end of the query it does a UNION with the user parameter &common_query.
    So, what I have done is gone into the common_query parameter and added the two extra dummy columns before the FROM statement (I've tried adding at different places but always the same result). Once that is done I've then gone into the Q_INVOICE query and added the same two columns. When I hit the OK button to update the query is when my problems start.
    There is a group in the report called G_ORDER_BY that has the field ORDER_BY in it. After clicking ok to update the query the G_ORDER_BY now has a field called BILL_CUST_NAME1, but the XML tag is still saying ORDER_BY. This happens to many fields in the report (the names are changed/corrupted) and as such the report is now useless as it won't compile.
    I have no idea why this would happen and I've never seen anything like this before.
    Can anyone provide any help on this ? I've logged an SR on this too but wanted to try here also incase someone had already crossed this problem.

    Dave,
    Not sure if its relevant or not, but I just fixed this issue, you need to change your query in three places, common_query parameter, build_query program unit and the main query itself in report editor.
    Cheers,
    Zeeshan

  • Sign problem in Report

    Hi Folks,
    I  have a problem in reporting.
    We are getting a data from flat file and loaded in to ICELIM cube and later that will pull into Managerial Consolidation Cube.
    P99T is account member and its ACCTYPE is EXP and its a parent member.
    We created a one report based on ICELIM cube its showing negative values for the member P99T. Created another report based on Managerial Consolidation Cube, Here the same member showing Positive values. 
    Can any one please let me know what is the problem is?
    I need Positive values in Both reports.
    Regards,
    G. Saida Reddy

    Hi vadim,
    Thank you for you response,
    Recently I take over this project, Previously one guy is handled all those things.
    But if "Descendants of P99T is Applicant count=EXP(ACCTYPE), FT=EXP(ACCTYPE), Applicant Rate= EXP(ACCTYPE)" then P99T is meaningless - how can you aggregate count, FT and rate????
    Can you please let me know the what is the exact point your are saying from above.
    we have positive signs for base members of  ICELIM and Managerial Consolidation.
    Now it is not possible to change moving data from ICELIM to Managerial Consolidation.
    can you please let me now the issue for sign in the report?
    Regards,
    G. Saida Reddy

  • Problem printing report

    I have a small problem printing reports which exist of 1 page.
    1st report is printed OK
    2nd one is bad
    3rd one is bad
    4rd one is bad
    5th is OK again... and so further.
    When I choose a different printer, all prints are OK. When I print from another PC on the same printer, all prints are OK.
    I assume some settings are disturbing the prints; can anyone suggest where I should take a look?

    are you using a dot matrix printer or a laser printer?

  • Problem running reports

    I finally configured and was able to start the reports server on my Solaris box. The listener is running. When I run a report, either by command line using rwrun60 or from a form using RUN_REPORT_PRODUCT, the report kicks off without error but will not finish. I have to kill the process, and no output results. I had no problems when running from NT, so I'd bet the problem is in the configuration not the report itself. Any ideas?

    I'm still working this problem.
    I have a printer configured, and have no problem generating report in character mode and send directly to printer.
    I did have to add localhost access to Xwindows with
    $ xhost +localhost
    Now I have valid display value.
    Unfortunately, still having the same problem. rwrun60 kicks off, but gets hung. I have no problems running forms on the this server. Any other ideas?

  • Soritng problem in report

    Hi all
    I have a problem in report runtime decision.
    I have created a report say report1....and on runtime i decide its runtime sorting order by passing a column value
    through my USER PARAMETER to the ORDER BY clause.
    But the problem is that the data model has its own BREAK ORDER as well for each column.
    How can i change that property at runtime.
    Kindl guide me if any one knows the solution.
    Thanx,
    Qaiser Qayum Malik.

    Hi,
    Pl see this thread:
    Order By within repeating frame
    By the way, break order decides the sorting order ONLY if the report has break-groups. If your report has a single group, the order by clause should work.
    navneet.

  • Allow duplicate key in InfoObject/ compounding length problem

    Hi all.
    I try to create InfoObject with compounding key, consisting of IObj itself plus 4 compound attribs and total length of 63 symbols (max allowed is 60). Obviously, the system doesn't allow me to activate the InfoObject.
    I consider to move compounds into attributes area, but don't know is it possible to allow duplicate records in InfoObject?
    or
    Maybe you can help me with some other advise how to manage this compound key limitation?
    additional info:
    The InfoObject is the "copy" of  source system master data table

    Hi,
    ok, now I see. Well there is a restriction that the keyfields as in your example shouldn't be longer than 60 characters (summed up). So you need to think about using another object as compound. Isn't that possible? Another option might be to post the data to a ods/dso first which has your object as well as the compounding attributes as keyfields and which was already recommended, and after that, post the value to a new infoobject which gets it's unique value from a number range object that you need to define specially for this purpose. Add the keyfields of that ods/dso as navigational characteristics to that new object.
    regards
    Siggi

  • Performance Problem in Report built on a DSO

    Dear All,
    we had a report created on the top of the ODS(0sd_o06) with selection criterion as profit center,now when we click the profit center varible entry to see the selection, a window pop up and it is there for 30 mins after that only we can make any selection ,request you to tell me the solution to improve the performance of the variable input.
    I had chked all the parameters and implement it but no improvement
    hello,
    1)the sid generation check box is ticked.
    2)the oprofit_ctr is already set to read data from Master data for filter value selection.and about navigational attribute we are using only four navigational attribute.
    3) turn on the cache in RSRT for the query built on DSO.
    4)Index is also created in the dso, Plzz help to improve the performance.
    Thanks,

    I believe your problem is with variable selection of 0profit_c... that values are shown after 30 mins for selection. Settings at ODS / DSO will not help.
    You need to look at the setting of list of value of this field and then if need be create idexes etc on that particular infoobjects. I remember there are settings like all the values, values in DSO etc. try those may help.
    Regards
    Vikash

  • (9iAS) problem printing reports in pdf format on NT client

    Hi
    Some details first:
    iAS version=9.0.2.3.0
    Reports Version=9.0.2.0.3
    Portal Version=9.0.2.3b
    Client NT Version=4 SP4
    Via a portal connection, a report is called by following a series of hyperlinks and the resulting url is like below:
    http://devoc4j.testcentre.co.uk/nrdms/xml/xmlResultSetPDF.xml?PID=eip&SID=vPXP9kQLR2NK1us1004&RID=aGa3Bhbn2PkffA81014&DOCID=2uRpdWVlscVNCab1012&&ieh=report.pdf
    This report produces a pdf output fine for a client that has Win2K, however, with Windows NT we receive the following error message:
    The requested URL could not be retrieved
    While trying to retrieve the URL:
    http://devoc4j.testcentre.co.uk/nrdms/xml/xmlResultSetPDF.xml?PID=eip&SID=vPXP9kQLR2NK1us1004&RID=aGa3Bhbn2PkffA81014&DOCID=2uRpdWVlscVNCab1012&&ieh=report.pdf
    The following error was encountered:
    Unable to determine IP address from host name for unknown server name
    This means that:
    The cache was not able to resolve the hostname presented in the URL.
    Check if the address is correct.
    This is consistent across all NT client boxes.
    I have changed the following settings on the NT boxes:
    Select TOOLS > INTERNET OPTIONS > CONNECTIONS > LAN
    SETTINGS and uncheck AUTOMATICALLY DETECT SETTINGS
    This has had no effect, the problem is still existent. Does anyone have any ideas why?
    Apologies for the length of the message, it's just to make it all clear!!
    Regards
    Andy

    1. From Task Bar at bottom of screen, Select Start, ALL Programs, and Open Adobe Reader
    2. Click edit
    3. Click Preferences
    4. Click Internet
    5. Remove check mark for Display PDF in browser
    6. Click ok
    7a. Close Adobe Reader
    7b Restart your PC to apply changes
    8. Run your app
    9. Generate a PDF report
    10. A pop window will appear and check remember and then click ALLOW. Click Remember my action for this site.
    11. You may need to Enter username and password (this needs to be done only once to initialize the connection between Adobe and Oracle login app) or if the password/username changes.

  • HELP! Confusing problem in report-form integration!

    Hi all, I have a problem in integrating report in dev10i. I used to use Dev6i and have no problem in using run_report_object in 6i.
    I got the REP-0503 You did not specify the name of the report and FRM-40738 Argument 1 to builtin Report_Object_Status can not be null. The report run OK in report builder and I create the paper only layout. Also, I save the report as *.rdf and create a report object in form that point to this *.rdf file.
    This is my PL/SQL code:
    PROCEDURE P_PRINT_REPORT_OBJ(vc_reportoj Varchar2, vc_reportserver Varchar2, vc_runformat Varchar2) IS
    v_report_id                    Report_Object;
    vc_ReportServerJob               VARCHAR2(100);
    vc_rep_status                    VARCHAR2(100);
    vjob_id                         VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT(vc_reportoj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, 'aplikasi_id='||:APLIKASI_BBM_INDUSTRI.APLIKASI_ID||' paramform=no');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    vjob_id := substr(vc_ReportServerJob,length(vc_reportserver)+2,length(vc_ReportServerJob));
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status = 'FINISHED' THEN
         WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
    ELSE
         message('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    What gives? Do I miss something here? Also what is the name of report server in Dev10i? I am under impression that this is not needed so I put blank '' when I call this procedure in WHEN-BUTTON-PRESSED trigger like this:
    P_PRINT_REPORT_OBJ('myreportobj','','HTML');

    Hello Colin
    Please check note 170167. Maybe error comes  from a very large form which has many selection conditions.
    In that case you will have to reduce the size and complexity of your form.
    Regards
    Javier

  • Computer was restarted because of a problem Panic Report

    Ok, have been on this site so many times and thanks to all contributors who solve the array of issues that come up. have a situation right now
    mac 10.8.1
    2.3 ghz intel core 7
    mid 2012
    upgraded memory to 16GB 1600 Mhz DDR3
    I went to replace my hard drive with an SSD and having a bunch of issues with that and it would not read this morning (either starting regular or recovery) so i ended up pulling my old drive from my reviouse macbook and now using in this machine.  I am waiting for the new SSD to come in but the problem is recurring even when i have put in the drive off my old macbook. I thought it was with the solid state but maybe not. Trying to do time machine backups and it does it every half hour (the shutdown).  The report is as follows: 
    Interval Since Last Panic Report:  6080 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    8447A50B-50BF-410D-A83A-9A508200F261
    Fri Sep  7 09:20:40 2012
    panic(cpu 3 caller 0xffffff8001af37d8): "hfs_swap_HFSPlusBTInternalNode: catalog key #38 invalid length (8220)\n"@/SourceCache/xnu/xnu-2050.9.2/bsd/hfs/hfs_endian.c:520
    Backtrace (CPU 3), Frame : Return Address
    0xffffff81d28b3260 : 0xffffff800181d5f6
    0xffffff81d28b32d0 : 0xffffff8001af37d8
    0xffffff81d28b3320 : 0xffffff8001af2d35
    0xffffff81d28b3370 : 0xffffff8001ae7fb4
    0xffffff81d28b33b0 : 0xffffff800191a3aa
    0xffffff81d28b34a0 : 0xffffff8001917353
    0xffffff81d28b3550 : 0xffffff8001919a1f
    0xffffff81d28b35a0 : 0xffffff8001b11b4f
    0xffffff81d28b35d0 : 0xffffff8001b15c46
    0xffffff81d28b3640 : 0xffffff8001afcbc8
    0xffffff81d28b36e0 : 0xffffff8001911e84
    0xffffff81d28b3750 : 0xffffff8001b49af9
    0xffffff81d28b3f50 : 0xffffff8001be17da
    0xffffff81d28b3fb0 : 0xffffff80018cecf3
    BSD process name corresponding to current thread: cupsd
    Mac OS version:
    12B19
    Kernel version:
    Darwin Kernel Version 12.1.0: Tue Aug 14 13:29:55 PDT 2012; root:xnu-2050.9.2~1/RELEASE_X86_64
    Kernel UUID: 3005059E-270B-3B9F-940D-7A66C05DDC9D
    Kernel slide:     0x0000000001600000
    Kernel text base: 0xffffff8001800000
    System model name: MacBookPro9,1 (Mac-4B7AC7E43945597E)
    System uptime in nanoseconds: 3813675933135
    last loaded kext at 2209110820175: com.apple.filesystems.afpfs          10.0 (addr 0xffffff7f84034000, size 348160)
    last unloaded kext at 3046694437792: com.apple.iokit.IOUSBMassStorageClass          3.5.0 (addr 0xffffff7f83ffd000, size 69632)
    loaded kexts:
    com.intego.iokit.VirusBarrierX6Service          10.6.16
    com.intego.iokit.VBX6NKE          1
    com.intego.iokit.BehavioralKext          1
    com.parallels.kext.prl_vnic          7.0 15106.786747
    com.parallels.kext.prl_netbridge          7.0 15106.786747
    com.parallels.kext.prl_hid_hook          7.0 15106.786747
    com.parallels.kext.prl_hypervisor          7.0 15106.786747
    com.parallels.kext.prl_usb_connect          7.0 15106.786747
    com.intego.kext.VirusBarrier.AppBarrierKPI          10.6.16
    com.intego.kext.VirusBarrierKPI          10.6.16
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    com.apple.filesystems.afpfs          10.0
    com.apple.nke.asp_tcp          7.0.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleIntelHD4000Graphics          8.0.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleIntelFramebufferCapri          8.0.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.0f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f8
    com.apple.driver.AppleMikeyDriver          2.3.0f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleMuxControl          3.2.6
    com.apple.driver.ApplePolicyControl          3.2.6
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.1
    com.apple.driver.AppleUSBHub          5.1.6
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.driver.AirPort.Brcm4331          601.15.21
    com.apple.driver.AppleFWOHCI          4.9.5
    com.apple.driver.AppleAHCIPort          2.4.0
    com.apple.driver.AppleUSBEHCI          5.1.5
    com.apple.driver.AppleUSBXHCI          1.1.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.security.SecureRemotePassword          1.0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.nvidia.nvGK100hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.0f2
    com.apple.iokit.IOAudioFamily          1.8.9fc9
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.2
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.iokit.IOBluetoothFamily          4.0.9f8
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleHDAController          2.3.0f2
    com.apple.iokit.IOHDAFamily          2.3.0f2
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleGraphicsControl          3.2.6
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d11
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.5
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOAHCIFamily          2.2.0
    com.apple.iokit.IOUSBFamily          5.1.6
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro9,1, BootROM MBP91.00D3.B02, 4 processors, Intel Core i7, 2.3 GHz, 16 GB, SMC 2.1f170
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464444
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464444
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.81.21)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: FUJITSU MJA2160BH FFS G1, 160.04 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 6
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 /

    Not sure yet on this as I need some more time to test but have not tried to do a time machine backup and computer has not shut down yet.  So perhaps something to do with time machine?  

Maybe you are looking for

  • Difficulty opening some files in PSCS4 from Bridge.

    Of late I've been having difficulty with trying to open some of my PSD and TIFF files from within Bridge. I have the same problem from the Open Recent sub menu under File. I get a notification that pops up saying it can't open the file "...due to pro

  • How to Copy FrameMaker Master Pages to all files in a book?

    Newbie question. I've created a Master page template for a title page that I now want to apply to every file in my collection of books (~5 books, +30 files).  How do I do this? The page has a full page image and different margins. I would try to brut

  • Portal look and feel?

    Hi, Can someone please direct me to threads/wiki/blog/sap help for customising portal look and feel like company branding logo and colour themes etc..  I have to a requirement to match SAP Portal interface to look like existing company intranet web s

  • Certificate problem downloading patches

    Today I am having problems downloading patches on Solaris 9 & 10. The log in part shows : 2006-10-25 09:55:27 Wed Oct 25 09:55:27 GMT+00:00 2006(ERROR) => com.sun.patchpr o.security.SignatureValidationUtil@c2ee15 <=SignatureValidationUtil.validateJar

  • Calling function module in background task

    Hello, There is one function module which is called in background task. Is there any chance that background task is not created and function module is not executed. That function module is supposed to send some outbound message. The FM is called in o