Performanance issue

Hi,
I have a performance issue in my package.
I am getting "comma seperated" records(apprxly 5000) from front end to my package and i am inserting the records into the table by calling
the table package.It is taking 2 mins to load 1000 records.But i should have to load 1000 recs in 1 min.
following are the steps that i am using in my pacakage
<pre>
for i in 1..No_of_recs(say 5000)
1)Calling another function called "subset" to split the comma seperated record(everey record has 10 values,so i have to call this function 10 times for one loop)
2)calling table package to insert splitted values into the table .
end loop.
</pre>
Inside the table i am simply using the insert statement followed by commit statement.
Are there any tips to increase the speed of data insert?
cheers
RRK

As was already suggested, twice, the real solution is to create an external table over you input file and then do the whole thing as a single statement
INSERT INTO table
SELECT * FROM external_tableHowever, if you are unable, or unwilling to do that, then there are a couple of things you can try.
Do not commit after each insert statement, commit once after the entire file has been processed.
Re-write your parsing function so that it splits out all of the column in one shot. If you have 5,000 lines in the file with 10 columns each you are calling that function 50,000 times. Even if that function returns in one thousandth of a second, it is still taking 50 seconds just to call that function.
Consider building a table of records as you parse the file, and then doing a FORALL bulk insert every 100 - 1000 rows, depending on how large each record is.
But, the real solution is still to create an external table over you input file and then do the whole thing as a single statement
INSERT INTO table
SELECT * FROM external_table John

Similar Messages

  • Primavera P6 Enterprise Project Portfolio Management  performanance issue.

    Hi,
    How to improve Primavera P6 Enterprise Project Portfolio Management performanace?
    OS= RHEL 5.5
    DB= 11.2.0.2 RHEL 5.5
    Application Version=P6 R8
    No issue noticed at database end. Can someone point documention on EPPM ?
    Thanks

    You can find the documentation at the below link
    http://www.oracle.com/technetwork/documentation/primavera-093289.html
    When and where are you facing the performance issue?

  • Performane issue in accesing VBFA table

    Hi frnds,
    I have requirement that get sales return value and flow is get delivery document and from delivery get sales detail data and further get return and sales value for particular sales order.
    Now when I am accessing VBFA table  for getting Sales order from delivery document number, it is taking more time to get sales order and it is performance issue.
    So any suggestions are welcome...
    Thanks
    Priyank

    Hi Priyank,
    To get a Sales Order Number for a Delivery Number you can go for the Delivery tables LIKP (Delivery Header) and LIPS (Delivery Item)
    In LIPS we have VGBEL field which is the Sales Order Number, and VGPOS is Sales Item.
    Regards,
    Chandra Sekhar

  • FIGL Extractor - read performane issue.

    Hello Gurus,
    I need a help.
    The below code is used in a BI-FIGL custom user exit.
    BSIS read statement.
    ABAP Code:
    Get Cost Center Accounting from BSIS table
    SELECT bukrs "Company Code
    gjahr "Fiscal Year
    monat "Fiscal Period
    hkont "General Ledger Account
    prctr "Profit Center
    budat "Posting Date in the Document
    gsber "Business Area
    zuonr "Assignment Number
    belnr "Accounting Document Number
    kostl "Cost Center Accounting
    FROM bsis
    INTO TABLE pt_kostl_acc
    FOR ALL ENTRIES IN pt_gl_data
    WHERE bukrs EQ pt_gl_data-bukrs
    AND gjahr EQ pt_gl_data-gjahr
    AND monat EQ pt_gl_data-monat
    AND hkont EQ pt_gl_data-hkont
    AND prctr EQ pt_gl_data-prctr
    AND budat EQ pt_gl_data-budat
    AND gsber EQ pt_gl_data-gsber
    AND zuonr EQ pt_gl_data-zuonr
    AND belnr EQ pt_gl_data-belnr.
    The extractor literally stops at the above select statement.
    Please advise how to solve it.
    I created an index . Actually it wroked fine in Q. When I moved to production it is not working. Did I do anything wrong ?
    Let me know. Thanks

    Hi,
    Activate the trace in ST05. See whether the INDEX is getting hit.
    Regards,
    Raghavendra.

  • Performane issues

    Hi Folks,
    How do i get the best performance while designing interfaces,procedures.........what are best steps to follow to get good performance to load data??
    Thanks in advance
    Reddy

    Hi Reddy,
    Better to remove unnecessary staging while loading to target datastore.
    Use the correct required knowledge module based on the datastore.
    If there are complex joins in the source try to increase to two or more interfaces.
    Use multiple listner agents for parallel execution of interfaces.
    Etc..
    Thanks,
    katukota
    Edited by: katukota on Aug 21, 2009 10:15 PM

  • Performane issue

    Hi,
    I have an internal table with these records.
    How to delete records that are not the same?
    10RR10 | 60 | 20
    10RR10 | 60 | 21
    10RR10 | 59 | 13
    10RR10 | 59 | 13
    10RR10 | 57 | 20
    10RR10 | 57 | 21
    Result should be this:
    10RR10 | 59 | 13
    10RR10 | 59 | 13
    I have run one fiscal year data  when run backgroud job but my output is come after 10 hour's. Can u give fast display .

    Hi,
    this will resolve your problem.
    10RR10 | 60 | 20
    10RR10 | 60 | 21
    10RR10 | 59 | 13
    10RR10 | 59 | 13
    10RR10 | 57 | 20
    10RR10 | 57 | 21
    records in i_itab1.
    sort i_itab1 by col1 col2 col3.
    i_itab2 = i_itab1.
        itab1               itab2
    10RR10 | 60 | 20    10RR10 | 60 | 20
    10RR10 | 60 | 21    10RR10 | 60 | 21
    10RR10 | 59 | 13    10RR10 | 59 | 13
    10RR10 | 59 | 13    10RR10 | 59 | 13
    10RR10 | 57 | 20    10RR10 | 57 | 20
    10RR10 | 57 | 21    10RR10 | 57 | 21
    delete ADJACENT DUPLICATES FROM i_itab2 COMPARING col1 col2 col3.
        itab2
    10RR10 | 60 | 20
    10RR10 | 60 | 21
    10RR10 | 57 | 20
    10RR10 | 57 | 21
    loop at i_itab2 into i_itab2_line.
      delete TABLE i_itab1 FROM i_itab2_line.
    endloop.
    10RR10 | 59 | 13
    10RR10 | 59 | 13
    this will resolve your problem

  • Performance issue with the following view pa_draft_inv_line_details_v

    Hi Gurus,
    We have a select statement in which we are using this view pa_draft_inv_line_details_v.This view is causing Performane Issue while exectuing select statement.Can you please help me on this.
    Thanks,
    RS.

    Hussien,
    Sorry for Late Reply.
    Here are the details:
    Gather Schema Statistics
    INDEX_NAME     TABLE_NAME
    AP_SUPPLIERS_N1     AP_SUPPLIERS
    AP_SUPPLIERS_N2     AP_SUPPLIERS
    AP_SUPPLIERS_N3     AP_SUPPLIERS
    AP_SUPPLIERS_N4     AP_SUPPLIERS
    AP_SUPPLIERS_N5     AP_SUPPLIERS
    AP_SUPPLIERS_N6     AP_SUPPLIERS
    AP_SUPPLIERS_N7     AP_SUPPLIERS
    AP_SUPPLIERS_N8     AP_SUPPLIERS
    AP_SUPPLIERS_U1     AP_SUPPLIERS
    AP_SUPPLIERS_U2     AP_SUPPLIERS
    FND_LOOKUP_VALUES_U1     FND_LOOKUP_VALUES
    FND_LOOKUP_VALUES_U2     FND_LOOKUP_VALUES
    GL_DAILY_CONVERSION_TYPES_U1     GL_DAILY_CONVERSION_TYPES
    GL_DAILY_CONVERSION_TYPES_U2     GL_DAILY_CONVERSION_TYPES
    HR_ORGANIZATION_UNITS_FK1     HR_ALL_ORGANIZATION_UNITS
    HR_ORGANIZATION_UNITS_FK2     HR_ALL_ORGANIZATION_UNITS
    HR_ORGANIZATION_UNITS_FK3     HR_ALL_ORGANIZATION_UNITS
    HR_ORGANIZATION_UNITS_FK4     HR_ALL_ORGANIZATION_UNITS
    HR_ORGANIZATION_UNITS_PK     HR_ALL_ORGANIZATION_UNITS
    HR_ORGANIZATION_UNITS_UK2     HR_ALL_ORGANIZATION_UNITS
    HR_ALL_ORGANIZATION_UNTS_TL_N2     HR_ALL_ORGANIZATION_UNITS_TL
    HR_ALL_ORGANIZATION_UNTS_TL_PK     HR_ALL_ORGANIZATION_UNITS_TL
    PA_COST_DISTRIBUTION_LINES_N10     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N12     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N13     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N14     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N15     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N16     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N17     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N19     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N2     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N20     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N3     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N4     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N5     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N6     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N7     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N8     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_N9     PA_COST_DISTRIBUTION_LINES_ALL
    PA_COST_DISTRIBUTION_LINES_U1     PA_COST_DISTRIBUTION_LINES_ALL
    PA_CUST_EVENT_REV_DIST_LINE_N1     PA_CUST_EVENT_RDL_ALL
    PA_CUST_EVENT_REV_DIST_LINE_N2     PA_CUST_EVENT_RDL_ALL
    PA_CUST_EVENT_REV_DIST_LINE_N3     PA_CUST_EVENT_RDL_ALL
    PA_CUST_EVENT_REV_DIST_LINE_N4     PA_CUST_EVENT_RDL_ALL
    PA_CUST_EVENT_REV_DIST_LINE_N5     PA_CUST_EVENT_RDL_ALL
    PA_CUST_EVENT_REV_DIST_LINE_U1     PA_CUST_EVENT_RDL_ALL
    PA_CUST_REV_DIST_LINES_N1     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N2     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N3     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N4     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N5     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N6     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N7     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_N9     PA_CUST_REV_DIST_LINES_ALL
    PA_CUST_REV_DIST_LINES_U1     PA_CUST_REV_DIST_LINES_ALL
    PA_DRAFT_INVOICE_ITEMS_N1     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_N2     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_N3     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_N4     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_N5     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_N6     PA_DRAFT_INVOICE_ITEMS
    PA_DRAFT_INVOICE_ITEMS_U1     PA_DRAFT_INVOICE_ITEMS
    PA_EVENTS_N1     PA_EVENTS
    PA_EVENTS_N2     PA_EVENTS
    PA_EVENTS_N3     PA_EVENTS
    PA_EVENTS_N4     PA_EVENTS
    PA_EVENTS_N5     PA_EVENTS
    PA_EVENTS_N6     PA_EVENTS
    PA_EVENTS_U1     PA_EVENTS
    PA_EVENTS_U2     PA_EVENTS
    PA_EVENTS_U3     PA_EVENTS
    PA_EVENTS_U4     PA_EVENTS
    PA_EXPENDITURES_ALL_N11     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N1     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N2     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N3     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N4     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N5     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N6     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N7     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N8     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_N9     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_U1     PA_EXPENDITURES_ALL
    PA_EXPENDITURES_ITEMS_N18     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N1     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N10     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N11     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N12     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N13     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N14     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N15     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N16     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N17     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N18     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N19     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N2     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N20     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N21     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N22     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N23     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N24     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N25     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N26     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N27     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N28     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N29     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N3     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N30     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N31     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N32     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N33     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N35     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N4     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N5     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N6     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N7     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N8     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_N9     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_ITEMS_U1     PA_EXPENDITURE_ITEMS_ALL
    PA_EXPENDITURE_TYPES_N1     PA_EXPENDITURE_TYPES
    PA_EXPENDITURE_TYPES_N2     PA_EXPENDITURE_TYPES
    PA_EXPENDITURE_TYPES_N3     PA_EXPENDITURE_TYPES
    PA_EXPENDITURE_TYPES_U1     PA_EXPENDITURE_TYPES
    PA_EXPENDITURE_TYPES_U2     PA_EXPENDITURE_TYPES
    PA_PROJECT_STATUSES_U2     PA_PROJECT_STATUSES
    PA_PROJECT_STATUSES_U3     PA_PROJECT_STATUSES
    PA_PROJECT_TYPES_N1     PA_PROJECT_TYPES_ALL
    PA_PROJECT_TYPES_U1     PA_PROJECT_TYPES_ALL
    PA_PROJECT_TYPES_U2     PA_PROJECT_TYPES_ALL
    PA_TASKS_N1     PA_TASKS
    PA_TASKS_N10     PA_TASKS
    PA_TASKS_N11     PA_TASKS
    PA_TASKS_N12     PA_TASKS
    PA_TASKS_N13     PA_TASKS
    PA_TASKS_N14     PA_TASKS
    PA_TASKS_N2     PA_TASKS
    PA_TASKS_N3     PA_TASKS
    PA_TASKS_N4     PA_TASKS
    PA_TASKS_N5     PA_TASKS
    PA_TASKS_N6     PA_TASKS
    PA_TASKS_N7     PA_TASKS
    PA_TASKS_N8     PA_TASKS
    PA_TASKS_N9     PA_TASKS
    PA_TASKS_U1     PA_TASKS
    PA_TASKS_U2     PA_TASKS
    PER_PEOPLE_F_FK1     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_FK2     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N1     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N2     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N50     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N51     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N52     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N53     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N54     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N55     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N56     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N57     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N58     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N59     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_N60     PER_ALL_PEOPLE_F
    PER_PEOPLE_F_PK     PER_ALL_PEOPLE_F
    xxx_PERALL_EFFDATE     PER_ALL_PEOPLE_F

  • Outlook and owa freezes every day, sometimes at the same time

    Hello,
    I have very strange problem! 2 users complain that the outlook hangs every day, approximately at the same time. But other 200 users work fine. I can't see any error on the mail servers ( two servers exchange 2010 sp 3 with dag) Outlook can hangs for 15 min
    with user, who has mailbox 1,5 Gb and about 3-5 min with user, who has mailbox 150 Mb.
    When outlook hangs, owa logon also hangs and then they start working simultaneously.
    It doesn't depend on the server where I try to run owa. I tried to move mailbox to new database, but it didn't resolve my problem.
    There are no any scheduled tasks on exchange servers at this time. No performans issues. Maybe some problems of connectivity with AD, but I don't see any suspicious event.

    Hi,
    It sounds like mailbox curroption. I'd suggest you move those two mailboxes to another mailbox database, and then try againt to see if this works.
    We may also try New-MailboxRepairRequest. For more information, please refer to:
    http://technet.microsoft.com/en-us/library/ff625221(v=exchg.141).aspx
    http://blogs.technet.com/b/nawar/archive/2010/08/19/exchange-2010-sp1-new-mailboxrepairrequest.aspx
    Hope it is helpful.
    Fiona Liao
    TechNet Community Support

  • Please help!!! Poor performance Neo2...can't figure out why!!

    Hi people,
    I have worked on this issue for days!!  I cannot figure it out!  Here is the problem:
    I used to have a Soltek AND Asus A8V mobo (both via chipsets), and scored approx 12,890 in 3dmark03 and 5,100 in 3dmark05, respectively ON BOTH BOARDS!
    I have swapped out these boards with the msi neo 2 (latest revison) w/ bios 1.4.  I have the SAME other equipment as shown in my signature.
    I only get approx 9,800 in 3dmark03 and 3,889 in 3dmark 05.  Roughly a 2,000/1,000 point lower difference respectively.
    I cannot for the life of me figure out why. I have thought about this for days and searched this and many other forums to no avail.
    I have installed the latest nforce 6.14 driver and the forceware 67.02.  I have tried other drivers as well, using driver cleaner between installs.  Still no go.
    Bios is set at optimized default.  AGP fast writes disabled.  AGP Aperature size 256.  The 6800gt is oc'ed to 400/1100.  No oc on mobo.
    I also did a search and found a review of this board w/ a 3dmark03 bench using the same video card as mine that shows a mark of 15,500 @ resolution 640x480.  
    So I tried the same test @ resolution 640x480 and scored 2,000 less marks.
    I just don't understand this.  Can someone please help and try to shed some light on this for me.  I am SO perplexed about this!!

    Why are you not using the  Soltek or Asus A8V anymore?
    i have almost the same machine as you and i to am very disappointed with the performance of my setup.
    I have also tried other drivers and  installing differecnt OS's (win2k, winXPsp1, winXPsp2), which did not seem to help.  although drivers did make my benchmarks vary depending on dirver and OS.
    I was just about to buy either the soltek 939 pin board or the asus A8V, to see if i can solve my performane issues.
    the only other board that looks really good is the gigabyte GA-K8NSNXP-939, but this board also has an nforce3 chipset and i am begining to think that the nforce3 chipset sux.  
    The only other explanation for the lack of performance or perceived lack of performance is that we are running 64bit CPUs under a 32bit environment  and therefore using only half the power of these CPU's.  

  • Webi Reports - Stale data when saved a pdf/xls

    Hi Webi Guru's - we have a peculiar issue in our BOBJ Production system.
    To give you a bit of background on our production system - is hosted on
    O/S - EL 2.6
    Database - Oracle 11g
    IE version - 9
    2 Tomcat 6 servers, load balanced using F5 load balancer
    3 CMC cluster servers and 1 Oracle Database server
    CMC has BW 731 authentication
    Problem Description -
    Open any WEBI report. Pass a set of parameters. Most of the reports have from and todate as input parameters.
    On the first attempt we pass the fromdate = 5th May 2014, todate = 10th May 2014. Save the report as pdf/xls file. Saves with the correct data.
    Refresh the webi report - provide different set of date range as, fromdate = 12th May 2014, todate = 20th May 2014. Save the report as pdf/xls file. This time though the report brings out correct data set, when saved as a pdf/xls file, saves with data from date range that was passed the first time which was  fromdate = 5th May 2014, todate = 10th May 2014
    Have checked with our network team regarding if caching is enabled on tge F5 loadbalancer - an there is none.
    I did raise a incident with SAP support and it was closed down saying it is a third party issue at the load balancer level and recomended that I could check with the SCN community..
    Has anyone in the BI/BOcommumity come across this sort of problem before where you you have split installations and your web server is load balanced.
    Any help will be much appreciated.
    Thanks
    Savitha

    Hi Amit - thanks for your reply.
    If we run the reports directly from both the Web/Tomcat server - we get the correct result set saved in the PDF/XLS file. But it is not the case when we access the reports from the Load balanced URL. When we went live initially we had only one tomcat server, due to performanance issues we added additional tomcat server and since then we are noticing this issue.
    The immediate thing that came to our mind was - if there was a caching option enabled at the load balancer level. The network team have confirmed that it is not the case.
    We have enabled HTTPWatch to see if there was anything obvious we could spot - but there is nothing from the logs  which stands out either.
    The issue is only when we save the reports as in PDF/XLS format - saves the data with prompts from the previous refresh.
    Hope it all makes sense.
    Thanks
    Savitha

  • K8N Neo2 slow boot

    machine is a MSI K8N Neo Platinum with a 3500+ cpu, 1 gig hyper x PC3500, 9800pro, audigy2, seagate 120gig.
    Problem is after I installed the nvidia platform drivers it started to have a slow boot problem.  I have xp set to the SOS boot, and the blue screen where it shows cpu and memory count it just sits there with no hard drive activity for about 1 min, then the hard drive starts flashing and it boots normally.   Any idea why it would pause like that?  I'm thinking driver issue but then more people would have this too.  I tried dumping xp and reloading, but using a different order of install,  I previously installed xp, then SP2 then the nvidia drivers.   Anyone else heard of this?

    Yes Fine found it non of the these boot options checked on mine. Just Found it in Help:- Quote
    /so
    Adds the /sos switch to the specified OSEntryLineNum, directing the operating system to display device driver names while they are being loaded.
    There u go didnt know that
    in your place i think id go back to the original XP drivers, as i said earlier there have been some issues with the NVIDIA Ide Drivers. No one seems to have percieved any performane issue (other than 1 works t'other dont)
    Dont think its to do with the order of install, which can be made easier by slipsteaming SP2 (A forum search will give u some useful links for this). The order youve taken emulates that anyway.
    Other People have played with the Master/Slave configuration on all drives, it seems that the Nvidia drivers dont always work with the Auto CLS setting
    best of luck

  • IMAC takes very long to boot and and shut down.

    My iMAC 21" takes very long (15-20 mts) to boot up and become responsive. It also takes More than 5 mts to shut down. The HW test and disk utility do not report any issue. I have Erased the disk and re-installed OS X 10.9.2 two times. On the second re-install, I deliberately did not restore the backup from the time machine. It works well after it settles down. I changed the mouse and have cheked the Apple wireless keyboard.
    The problems began after the last security update to the best of my recollection. Since there does not appear to be any HW issue and I have re-installed the software, I am unable to determine what else I can do to resolve the issue.

    Hello. Thank you for responding to my message.
    I have shut down the system at 8.28am local time (took about 2 mts which is not bad). I then restarted and it took more than 10 mts to reach the login prompt. After login, it took several more minutes until all the icons were displayed at the bottom. After clicking on Safari and reaching the top hits pages also took an unresonable amount of time considering it is a quad core MAC and I am on a fibre internet connection. (Other computers at home respond quickly). I have to add that I am experiencing intermittent performane issues even when the MAC settles down after the long startup time. i.e. get to see the coloured spinning wheel several times.
    I have tried my best to cut down the log size but found many unique lines as the boot took so long. So, apologies for the length of the log. The System diagnostics section in the Console app is blank with no reports at all.
    2/5/14 8:28:23.982 am com.apple.launchd.peruser.501[179]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 5 seconds
    2/5/14 8:28:25.782 am WindowServer[83]: disable_update_timeout: UI updates were forcibly disabled by application "loginwindow" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:28:26.416 am WindowServer[83]: common_reenable_update: UI updates were finally reenabled by application "loginwindow" after 1.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:28:26.424 am WindowServer[83]: CGXGetConnectionProperty: Invalid connection 51715
    2/5/14 8:28:26.431 am com.apple.launchd[1]: (com.apple.ShareKitHelper[252]) Exited: Killed: 9
    2/5/14 8:28:26.431 am com.apple.launchd.peruser.501[179]: (com.apple.AirPlayUIAgent[219]) Exited: Killed: 9
    2/5/14 8:28:26.437 am com.apple.launchd.peruser.501[179]: ([0x0-0x17017].com.apple.AppleSpell[310]) Exited: Killed: 9
    2/5/14 8:28:32.476 am sessionlogoutd[379]: sessionlogoutd Launched
    2/5/14 8:28:32.483 am sessionlogoutd[379]: DEAD_PROCESS: 41 console
    2/5/14 8:28:32.504 am airportd[63]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:28:47.258 am shutdown[380]: halt by _coreaudiod:
    2/5/14 8:28:47.000 am kernel[0]: Kext loading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext unloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext autounloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kernel requests now disabled.
    2/5/14 8:28:47.258 am shutdown[380]: SHUTDOWN_TIME: 1398990527 258440
    2/5/14 8:30:30.000 am bootlog[0]: BOOT_TIME 1398990630 0
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am kernel[0]: Longterm timer threshold: 1000 ms
    2/5/14 8:31:56.000 am kernel[0]: PMAP: PCID enabled
    2/5/14 8:31:56.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    2/5/14 8:31:56.000 am kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    2/5/14 8:31:56.000 am kernel[0]: vm_page_bootstrap: 1861432 free pages and 219336 wired pages
    2/5/14 8:31:56.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    2/5/14 8:31:56.000 am kernel[0]: zone leak detection enabled
    2/5/14 8:31:56.000 am kernel[0]: "vm_compressor_mode" is 4
    2/5/14 8:31:56.000 am kernel[0]: standard timeslicing quantum is 10000 us
    2/5/14 8:31:56.000 am kernel[0]: standard background quantum is 2500 us
    2/5/14 8:31:56.000 am kernel[0]: mig_table_max_displ = 74
    2/5/14 8:31:56.000 am kernel[0]: TSC Deadline Timer supported and enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Sandbox
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Quarantine
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2/5/14 8:31:56.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2/5/14 8:31:56.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    2/5/14 8:31:56.000 am kernel[0]: MAC Framework successfully initialized
    2/5/14 8:31:56.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2/5/14 8:31:56.000 am kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    2/5/14 8:31:56.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2/5/14 8:31:56.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3467
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    2/5/14 8:31:56.000 am kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration begin ]
    2/5/14 8:31:56.000 am kernel[0]: console relocated to 0xf80020000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    2/5/14 8:31:56.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    2/5/14 8:31:56.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    2/5/14 8:31:56.000 am kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2/5/14 8:31:56.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2/5/14 8:31:56.000 am kernel[0]: rooting via boot-uuid from /chosen: BAEA055B-14AD-3566-B5E1-7009F2439E7E
    2/5/14 8:31:56.000 am kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2/5/14 8:31:56.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD ST1000LM024 Media/IOGUIDPartitionScheme/Customer@2
    2/5/14 8:31:56.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    2/5/14 8:31:56.000 am kernel[0]: BTCOEXIST off
    2/5/14 8:31:56.000 am kernel[0]: BRCM tunables:
    2/5/14 8:31:56.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2/5/14 8:31:56.000 am kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: hfs: mounted Macintosh HD on device root_device
    2/5/14 8:31:56.000 am kernel[0]: pci pause: SDXC
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2/5/14 8:31:54.439 am com.apple.SecurityServer[14]: Session 100000 created
    2/5/14 8:31:56.000 am kernel[0]: Waiting for DSMOS...
    2/5/14 8:31:56.589 am hidd[48]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2/5/14 8:31:56.590 am hidd[48]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2/5/14 8:31:56.000 am kernel[0]: VM Swap Subsystem is ON
    2/5/14 8:31:59.855 am distnoted[20]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:31:59.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2/5/14 8:31:59.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0079
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: Previous Shutdown Cause: 5
    2/5/14 8:32:01.000 am kernel[0]: NVDAStartup: Official
    2/5/14 8:32:01.000 am kernel[0]: init
    2/5/14 8:32:01.000 am kernel[0]: probe
    2/5/14 8:32:01.000 am kernel[0]: start
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    2/5/14 8:32:01.000 am kernel[0]: NVDAGK100HAL loaded and registered
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xab00 -- 0x1800 -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: DSMOS has arrived
    2/5/14 8:32:01.965 am com.apple.usbmuxd[26]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    2/5/14 8:32:02.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2/5/14 8:32:04.345 am configd[17]: dhcp_arp_router: en1 SSID unavailable
    2/5/14 8:32:04.354 am configd[17]: setting hostname to "Johns-iMac.local"
    2/5/14 8:32:04.357 am configd[17]: network changed.
    2/5/14 8:32:11.163 am stackshot[29]: Timed out waiting for IOKit to finish matching.
    2/5/14 8:32:21.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:32:21.654 am com.apple.SecurityServer[14]: Entering service
    2/5/14 8:32:24.752 am loginwindow[43]: Login Window Application Started
    2/5/14 8:32:24.752 am awacsd[60]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    2/5/14 8:32:24.758 am awacsd[60]: InnerStore CopyAllZones: no info in Dynamic Store
    2/5/14 8:32:24.760 am digest-service[65]: label: default
    2/5/14 8:32:24.760 am digest-service[65]:           dbname: od:/Local/Default
    2/5/14 8:32:24.760 am digest-service[65]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:32:24.760 am digest-service[65]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:32:24.762 am digest-service[65]: digest-request: uid=0
    2/5/14 8:32:24.768 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:32:24.775 am mDNSResponder[40]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    2/5/14 8:32:24.784 am UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: netr probe 0
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: init request
    2/5/14 8:32:24.810 am digest-service[65]: digest-request: init return domain: BUILTIN server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2D_IPC: Loaded
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2DInitialize succeeded
    2/5/14 8:32:24.847 am mDNSResponder[40]:   4: Listening for incoming Unix Domain Socket client requests
    2/5/14 8:32:24.864 am systemkeychain[83]: done file: /var/run/systemkeychaincheck.done
    2/5/14 8:32:39.821 am awacsd[60]: Exiting
    2/5/14 8:32:59.919 am configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    2/5/14 8:32:59.919 am configd[17]: Busy services :
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1 [1, 150166 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert [1, 61878 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0 [1, 58697 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU [1, 58692 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU/X86PlatformPlugin [!registered, !matched, 1, 58622 ms]
    2/5/14 8:32:59.000 am kernel[0]: en2: promiscuous mode enable succeeded
    2/5/14 8:32:59.000 am kernel[0]: en3: promiscuous mode enable succeeded
    2/5/14 8:33:07.391 am airportd[64]: airportdProcessDLILEvent: en1 attached (up)
    2/5/14 8:33:07.000 am kernel[0]: createVirtIf(): ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2/5/14 8:33:07.000 am kernel[0]: Created virtif 0xffffff803932dc00 p2p0
    2/5/14 8:33:07.812 am configd[17]: network changed: DNS*
    2/5/14 8:33:19.050 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:23.440 am networkd[102]: networkd.102 built Aug 24 2013 22:08:46
    2/5/14 8:33:24.805 am mds[39]: (Normal) FMW: FMW 0 0
    2/5/14 8:33:29.103 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:35.862 am warmd[25]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    2/5/14 8:33:36.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    2/5/14 8:33:36.000 am kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0fd5
    2/5/14 8:34:09.979 am _networkd[116]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    2/5/14 8:34:14.131 am _networkd[119]: Unable to resolve hostname(s)
    2/5/14 8:34:14.354 am ntpd[109]: proto: precision = 1.000 usec
    2/5/14 8:34:15.055 am WindowServer[84]: Server is starting up
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 released (1 references)
    2/5/14 8:34:15.127 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.128 am WindowServer[84]: init_page_flip: page flip mode is on
    2/5/14 8:34:15.610 am locationd[45]: NBB-Could not get UDID for stable refill timing, falling back on random
    2/5/14 8:34:15.612 am locationd[45]: could not create intermediate property list - Cannot parse a NULL or zero-length data
    2/5/14 8:34:15.612 am locationd[45]: could not deserialize property list from /var/db/locationd/clients.plist
    2/5/14 8:34:15.676 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:16.000 am kernel[0]: en1: 802.11d country code set to 'SG'.
    2/5/14 8:34:16.000 am kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/5/14 8:34:17.000 am kernel[0]: MacAuthEvent en1   Auth result for: 98:2c:be:74:e5:be  MAC AUTH succeeded
    2/5/14 8:34:17.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    2/5/14 8:34:17.000 am kernel[0]: AirPort: Link Up on en1
    2/5/14 8:34:17.000 am kernel[0]: en1: BSSID changed to 98:2c:be:74:e5:be
    2/5/14 8:34:17.050 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.053 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.054 am WindowServer[84]: mux_initialize: Couldn't find any matches
    2/5/14 8:34:17.055 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.071 am locationd[45]: Location icon should now be in state 'Inactive'
    2/5/14 8:34:17.000 am kernel[0]: AirPort: RSN handshake complete on en1
    2/5/14 8:34:17.208 am WindowServer[84]: WSMachineUsesNewStyleMirroring: true
    2/5/14 8:34:17.208 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.343 am WindowServer[84]: CGXPerformInitialDisplayConfiguration
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x04280480: Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Star-7789' making interface primary (protected network)
    2/5/14 8:34:31.835 am configd[17]: network changed: DNS* Proxy
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: en1: Probing 'Star-7789'
    2/5/14 8:34:31.838 am configd[17]: network changed: v4(en1!:192.168.1.98) DNS+ Proxy+ SMB
    2/5/14 8:34:32.937 am UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    2/5/14 8:34:35.953 am configd[17]: setting hostname to
    2/5/14 8:34:51.522 am digest-service[129]: label: default
    2/5/14 8:34:51.522 am digest-service[129]:           dbname: od:/Local/Default
    2/5/14 8:34:51.522 am digest-service[129]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:34:51.522 am digest-service[129]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:34:51.523 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: netr probe 0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: init request
    2/5/14 8:34:51.528 am digest-service[129]: digest-request: init return domain:    -IMAC server: -IMAC indomain was: <NULL>
    2/5/14 8:34:52.906 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, accelerator 0x0000449b, unit 0, caps QEX|MIPMAP, vram 512 MB
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: init request
    2/5/14 8:34:52.943 am digest-service[129]: digest-request: init return domain: JohnS-IMAC server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor enabled for tile size [256 x 256]
    2/5/14 8:34:52.991 am WindowServer[84]: CGXGLInitMipMap: mip map mode is on
    2/5/14 8:34:53.030 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:53.031 am com.apple.launchd[1]: (com.apple.netbiosd[121]) Exited abnormally: Hangup: 1
    2/5/14 8:34:53.063 am loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:56.004 am WindowServer[84]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x7fee2af174f0  isBackBuffered: 1 numComp: 3 numDisp: 3
    2/5/14 8:34:56.004 am WindowServer[84]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fee2af174f0) - enabling OpenGL
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd[135]) Exited abnormally: Hangup: 1
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 6 seconds
    2/5/14 8:35:23.873 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.617 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.624 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:25.802 am launchctl[142]: com.apple.findmymacmessenger: Already loaded
    2/5/14 8:35:26.179 am airportd[64]: _doAutoJoin: Already associated to “Star-”. Bailing on auto-join.
    2/5/14 8:35:26.420 am com.apple.SecurityServer[14]: Session 100005 created
    2/5/14 8:35:26.438 am loginwindow[43]: Setting the initial value of the magsave brightness level 1
    2/5/14 8:35:27.177 am loginwindow[43]: Login Window Started Security Agent
    2/5/14 8:35:27.329 am UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:35:27.697 am SecurityAgent[151]: This is the first run
    2/5/14 8:35:27.697 am SecurityAgent[151]: MacBuddy was run = 0
    2/5/14 8:35:32.787 am locationd[45]: locationd was started after an unclean shutdown
    2/5/14 8:35:59.142 am SecurityAgent[151]: User info context values set for
    2/5/14 8:36:17.705 am SecurityAgent[151]: Login Window login proceeding
    2/5/14 8:36:20.463 am loginwindow[43]: Login Window - Returned from Security Agent
    2/5/14 8:36:20.488 am loginwindow[43]: USER_PROCESS: 43 console
    2/5/14 8:36:20.544 am airportd[64]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:36:20.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    2/5/14 8:36:20.704 am com.apple.launchd.peruser.501[171]: Background: Aqua: Registering new GUI session.
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.pluginkit.pkd: Already loaded
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.sbd: Already loaded
    2/5/14 8:36:20.730 am distnoted[175]: # distnote server agent  absolute time: 351.096632167   civil time: Fri May  2 08:36:20 2014   pid: 175 uid: 501  root: no
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.243 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    2/5/14 8:36:21.278 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:36:21.340 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:36:23.176 am UserEventAgent[174]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:36:23.391 am sharingd[202]: Starting Up...
    2/5/14 8:36:23.481 am xpcproxy[207]: assertion failed: 13C1021: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2/5/14 8:36:24.143 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:36:24.771 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: APS timeout encountered (cxn initialization)
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: Failed to get response from APSConnection's initialization method(s)
    2/5/14 8:36:29.021 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:30.083 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:38.144 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "SystemUIServer" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:36:59.246 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:14.483 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:18.728 am com.apple.IconServicesAgent[213]: IconServicesAgent launched.
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3) for weird reason: 2
    2/5/14 8:37:20.975 am com.apple.SecurityServer[14]: Session 100007 created
    2/5/14 8:37:21.162 am com.apple.SecurityServer[14]: Session 100008 created
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    2/5/14 8:37:45.125 am com.apple.SecurityServer[14]: Session 100011 created
    2/5/14 8:37:47.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=228[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2/5/14 8:37:54.515 am accountsd[238]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:37:55.448 am apsd[210]: Unrecognized leaf certificate
    2/5/14 8:38:06.772 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 103.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:38:08.154 am SystemUIServer[182]: void CGSUpdateManager::log() const: conn 0x8d2b: spurious update.
    2/5/14 8:38:13.536 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac35520 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    2/5/14 8:38:13.552 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac20800 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:39:11.229 am storeagent[241]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    2/5/14 8:39:12.674 am parentalcontrolsd[248]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    2/5/14 8:39:13.288 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:39:14.535 am com.apple.SecurityServer[14]: Session 100013 created
    2/5/14 8:39:39.278 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e07250 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:39:39.479 am sandboxd[239]: ([226]) assistantd(226) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    2/5/14 8:39:40.927 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:39:41.729 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:40:36.480 am LKDCHelper[256]: Starting (uid=501)
    2/5/14 8:40:39.379 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e10320 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:40:39.410 am com.apple.iCloudHelper[207]: AOSKit ERROR: Setup request failed, appleID=1331111818, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7ff801e25270 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    2/5/14 8:40:40.002 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:40:40.262 am mds[39]: (Normal) Volume: volume:0x7faefc094000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.GVtxu8
    2/5/14 8:40:53.113 am com.apple.dock.extra[250]: <NSXPCConnection: 0x7ff860f17f90>: received an undecodable message (no exported object to receive message). Dropping message.
    2/5/14 8:40:54.213 am secd[233]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.213 am secd[233]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.372 am secd[233]:  CFPropertyListReadFromFile file file:///Users/Johndandekar/Library/Keychains/54F98C75-0DC3-5591-B434-1E7BF5D373 41/accountStatus.plist: The file “accountStatus.plist” couldn’t be opened because there is no such file.
    2/5/14 8:40:54.404 am secd[233]:  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)
    2/5/14 8:40:54.404 am secd[233]:  securityd_xpc_dictionary_handler WiFiKeychainProx[215] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:41:06.693 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:41:20.693 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "Safari" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:42:06.685 am ntpd[109]: ntpd: time set +1.417472 s
    2/5/14 8:42:06.693 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:42:12.250 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 65.14 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:44:32.201 am com.apple.SecurityServer[14]: Session 100014 created
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.605 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:32.606 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:42.605 am soagent[208]: Killing soagent.
    2/5/14 8:44:42.606 am NotificationCenter[200]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.606 am com.apple.dock.extra[250]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:45:39.211 am ntpd[109]: FREQ state ignoring -0.000168 s
    2/5/14 8:45:42.272 am mdworker32[259]: CGSConnectionByID: 0 is not a valid connection ID.
    2/5/14 8:45:42.272 am mdworker32[259]: CGSGetSpaceManagementMode: No connection with id 0x       0
    2/5/14 8:46:48.521 am ntpd[109]: FREQ state ignoring +0.000861 s
    2/5/14 8:47:41.646 am xpcd[192]: restored permissions (100600 -> 100700) on /Users/Johndandekar/Library/Containers/com.apple.Notes/Container.plist
    2/5/14 8:47:53.961 am com.apple.SecurityServer[14]: Session 100015 created
    2/5/14 8:47:59.173 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Notes" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:48:02.756 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Notes" after 4.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:48:04.999 am com.apple.SecurityServer[14]: Session 100016 created
    2/5/14 8:48:22.828 am ntpd[109]: FREQ state ignoring -0.000677 s
    2/5/14 8:49:20.692 am sandboxd[239]: ([315]) mdworker(315) deny file-read-data /Applications/Microsoft Office 2011/Office/Media/Clipart/Bullets.localized/.localized ()

  • Performane related issue in Production Server

    Hi,
    when i deploy the whole application in development server (by remotely logging into client server through vpn) it works fine .
    But when it is run at client side for system testing, user acceptance testing and
    integration testing it becomes very slow .
    Due to this performance related issue , we are not able to transfer the DCs to production server .
    We are sure it is not coming from R3 side (BAPIs etc) . It is coming either from the Webdynpro or Portal side .
    Can anybody help out regarding how to solve this issue .
    Thanks .

    Hi Narendra,
    Please elaborate what is QAS customization and production  customization.
    TR has been done properly.
    Let me give you an overview of the project.
    In Organisational Assignment a Zprogram has been written which captures additional information like Grade Code, Designation Code & Pay Sheet Code
    Its a govt. client. Combination of Grade Code & Designation Code is Pay Scale Grouping
    e.g if Grade Code is A01 & Designation Code is A005
    Pay Scale Grouping is A01-A005
    If we put the values in 0001(Org Assignment) for Grade Code(A01) & Designation Code(A005), A01-A005 comes automatically in Pay Scale Grouping for a particular Pay Scale Structure.
    But now the problem is Pay Scale Type doesn't come get defaulted in 0008 for a Personnel Area & Personnel Subarea.
    I have maintained PST in Tariff & Check Assignment of Pay Scale Structure in Enterprise Structure.
    But in 0008, We have to put PST manually. Since client is having only 1 Pay Scale Area for all Personnel Area & Personnel Subarea, so we don't have to bother for it
    Please tell me where can be the error
    Regards,
    Usha

  • Profitability analysis activated in POS Interface, performane/tuning issue?

    We are about to golive with a SAP retail system. All purchases made by customers in store are sent into SAP via and idoc via the so called POS (point of sales) Interface.
    A reciept received via an idoc creates material docs, invoice docs, accounting documents, controlling documents, profit center docs and profit ability analysis documents.
    Each day we recive all receipt from each store collected in one idoc per store.
    When deactivate our profit ability analysis an average store are posted in about 40 seconds with sales from an average day. When we post and profit ability analysis are activated the average time per store are almost 75 seconds.
    How can simple postings to profit ability analysis increase the posting time with almost 50 %? Is this a performance/tuning issue?
    Best regards
    Carl-Johan
    Point will be assigned generously for info that leads to better performance!

    which CO document does the system creates : CCA document ?
    on which cost centre ? PCA document ?
    What is the CE category of the CE used for posting the variance ?

  • Performance issue with two unbanalnced hierarchies in a single report

    Hi All
    We are facing the performance issue with one of the report which houses two unbalanced hierarchies (having 18 levels) - skipped & ragged. Basically its a part of OBIAPPS financila analytics .
    The query is below :
    Could anyone let me know how to improve the performane. Any parameter that should be looked at while using unbalanced hierarchies.
    WITH SAWITH0
    AS ( SELECT SUM (T91707.OTHER_LOC_AMT) AS c1,
    MAX (T314768.HIER2_CODE) AS c2,
    MAX (T314768.HIER3_CODE) AS c3,
    MAX (T314768.HIER4_CODE) AS c4,
    MAX (T314768.HIER5_CODE) AS c5,
    MAX (T314768.HIER6_CODE) AS c6,
    MAX (T314768.HIER7_CODE) AS c7,
    MAX (T314768.HIER8_CODE) AS c8,
    MAX (T314768.HIER9_CODE) AS c9,
    MAX (T314768.HIER10_CODE) AS c10,
    MAX (T314768.HIER11_CODE) AS c11,
    MAX (T314768.HIER12_CODE) AS c12,
    MAX (T314768.HIER13_CODE) AS c13,
    MAX (T314768.HIER14_CODE) AS c14,
    MAX (T314768.HIER15_CODE) AS c15,
    MAX (T314768.HIER16_CODE) AS c16,
    MAX (T314768.HIER17_CODE) AS c17,
    MAX (T314768.HIER18_CODE) AS c18,
    MAX (T314768.HIER19_CODE) AS c19,
    MAX (T314768.HIER20_CODE) AS c20,
    T314768.HIER1_NAME AS c21,
    T314768.HIER1_CODE AS c22,
    T314914.HIER1_NAME AS c24,
    T314914.HIER10_NAME AS c25,
    T314914.HIER11_NAME AS c26,
    T314914.HIER12_NAME AS c27,
    T314914.HIER13_NAME AS c28,
    T314914.HIER14_NAME AS c29,
    T314914.HIER15_NAME AS c30,
    T314914.HIER16_NAME AS c31,
    T314914.HIER17_NAME AS c32,
    T314914.HIER18_NAME AS c33,
    T314914.HIER19_NAME AS c34,
    T314914.HIER2_NAME AS c35,
    T314914.HIER20_NAME AS c36,
    T314914.HIER3_NAME AS c37,
    T314914.HIER4_NAME AS c38,
    T314914.HIER5_NAME AS c39,
    T314914.HIER6_NAME AS c40,
    T314914.HIER7_NAME AS c41,
    T314914.HIER8_NAME AS c42,
    T314914.HIER9_NAME AS c43,
    T314914.HIER20_CODE AS c44,
    T314914.HIER1_CODE AS c45,
    T314914.HIER10_CODE AS c46,
    T314914.HIER11_CODE AS c47,
    T314914.HIER12_CODE AS c48,
    T314914.HIER13_CODE AS c49,
    T314914.HIER14_CODE AS c50,
    T314914.HIER15_CODE AS c51,
    T314914.HIER16_CODE AS c52,
    T314914.HIER17_CODE AS c53,
    T314914.HIER18_CODE AS c54,
    T314914.HIER19_CODE AS c55,
    T314914.HIER2_CODE AS c56,
    T314914.HIER3_CODE AS c57,
    T314914.HIER4_CODE AS c58,
    T314914.HIER5_CODE AS c59,
    T314914.HIER6_CODE AS c60,
    T314914.HIER7_CODE AS c61,
    T314914.HIER8_CODE AS c62,
    T314914.HIER9_CODE AS c63
    FROM W_HIERARCHY_D T314768 /* Dim_W_HIERARCHY_D_Segment11 */
    W_GL_SEGMENT_D T315677 /* Dim_W_GL_SEGMENT_D_Segment11 */
    W_HIERARCHY_D T314914 /* Dim_W_HIERARCHY_D_Segment13 */
    W_GL_SEGMENT_D T315731 /* Dim_W_GL_SEGMENT_D_Segment13 */
    W_GL_ACCOUNT_D T91397 /* Dim_W_GL_ACCOUNT_D */
    W_GL_OTHER_F T91707 /* Fact_W_GL_OTHER_F */
    WHERE ( T91397.ROW_WID = T91707.GL_ACCOUNT_WID
    AND T91397.ACCOUNT_SEG11_CODE = T315677.SEGMENT_VAL_CODE
    AND T91397.ACCOUNT_SEG13_CODE = T315731.SEGMENT_VAL_CODE
    AND T91397.ACCOUNT_SEG11_ATTRIB = T315677.SEGMENT_LOV_ID
    AND T91397.ACCOUNT_SEG13_ATTRIB = T315731.SEGMENT_LOV_ID
    AND T314768.HIER_CODE = T315677.SEGMENT_LOV_ID
    AND T314768.HIER_NAME = T315677.SEGMENT_LOV_NAME
    AND T314768.HIERARCHY_ID = T315677.SEGMENT_VAL_CODE
    AND T314914.HIER_CODE = T315731.SEGMENT_LOV_ID
    AND T314914.HIER_NAME = T315731.SEGMENT_LOV_NAME
    AND T314914.HIERARCHY_ID = T315731.SEGMENT_VAL_CODE
    AND T315677.SEGMENT_LOV_NAME =
    'Responsibility_Centre_Functional'
    AND T315677.SEGMENT_LOV_ID = 1000163
    AND T315731.SEGMENT_LOV_NAME = 'Account_Master'
    AND T315731.SEGMENT_LOV_ID = 1000165
    AND ( T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER11_CODE IS NULL)
    AND (T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER12_CODE IS NULL)
    AND ( T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER8_CODE IS NULL)
    AND ( T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER9_CODE IS NULL)
    AND ( T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER10_CODE IS NULL)
    AND ( T314914.HIER1_CODE IN ('ALL_LI')
    OR T314914.HIER2_CODE IN ('S000000001')
    OR T314914.HIER3_CODE IN ('S000005150')
    OR T314914.HIER4_CODE IN ('S000005151')
    OR T314914.HIER5_CODE IN ('S000005153')
    OR T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022'))
    AND ( T314914.HIER2_CODE IN ('S000000001')
    OR T314914.HIER3_CODE IN ('S000005150')
    OR T314914.HIER4_CODE IN ('S000005151')
    OR T314914.HIER5_CODE IN ('S000005153')
    OR T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER2_CODE IS NULL)
    AND ( T314914.HIER3_CODE IN ('S000005150')
    OR T314914.HIER4_CODE IN ('S000005151')
    OR T314914.HIER5_CODE IN ('S000005153')
    OR T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER3_CODE IS NULL)
    AND ( T314914.HIER4_CODE IN ('S000005151')
    OR T314914.HIER5_CODE IN ('S000005153')
    OR T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER4_CODE IS NULL)
    AND ( T314914.HIER5_CODE IN ('S000005153')
    OR T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER5_CODE IS NULL)
    AND ( T314914.HIER6_CODE IN ('S000005154')
    OR T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER6_CODE IS NULL)
    AND ( T314914.HIER7_CODE IN ('S000005062')
    OR T314914.HIER8_CODE IN ('S000005160')
    OR T314914.HIER9_CODE IN ('S000000187')
    OR T314914.HIER10_CODE IN ('S526003000')
    OR T314914.HIER11_CODE IN ('S526002012')
    OR T314914.HIER12_CODE IN ('S000001022')
    OR T314914.HIER7_CODE IS NULL)
    AND T314768.HIER1_CODE IS NOT NULL
    AND T314914.HIER20_CODE IS NOT NULL
    AND T314914.HIER13_CODE IS NULL
    AND T314914.HIER14_CODE IS NULL
    AND T314914.HIER15_CODE IS NULL
    AND T314914.HIER16_CODE IS NULL
    AND T314914.HIER17_CODE IS NULL
    AND T314914.HIER18_CODE IS NULL
    AND T314914.HIER19_CODE IS NULL)
    GROUP BY T314768.HIER1_CODE,
    T314768.HIER1_NAME,
    T314914.HIER1_CODE,
    T314914.HIER1_NAME,
    T314914.HIER2_CODE,
    T314914.HIER2_NAME,
    T314914.HIER3_CODE,
    T314914.HIER3_NAME,
    T314914.HIER4_CODE,
    T314914.HIER4_NAME,
    T314914.HIER5_CODE,
    T314914.HIER5_NAME,
    T314914.HIER6_CODE,
    T314914.HIER6_NAME,
    T314914.HIER7_CODE,
    T314914.HIER7_NAME,
    T314914.HIER8_CODE,
    T314914.HIER8_NAME,
    T314914.HIER9_CODE,
    T314914.HIER9_NAME,
    T314914.HIER10_CODE,
    T314914.HIER10_NAME,
    T314914.HIER11_CODE,
    T314914.HIER11_NAME,
    T314914.HIER12_CODE,
    T314914.HIER12_NAME,
    T314914.HIER13_CODE,
    T314914.HIER13_NAME,
    T314914.HIER14_CODE,
    T314914.HIER14_NAME,
    T314914.HIER15_CODE,
    T314914.HIER15_NAME,
    T314914.HIER16_CODE,
    T314914.HIER16_NAME,
    T314914.HIER17_CODE,
    T314914.HIER17_NAME,
    T314914.HIER18_CODE,
    T314914.HIER18_NAME,
    T314914.HIER19_CODE,
    T314914.HIER19_NAME,
    T314914.HIER20_CODE,
    T314914.HIER20_NAME),
    SAWITH1
    AS (SELECT SUM (D1.c1) OVER () AS c1,
    MAX (D1.c2) OVER (PARTITION BY D1.c22) AS c2,
    MAX (D1.c3) OVER (PARTITION BY D1.c22) AS c3,
    MAX (D1.c4) OVER (PARTITION BY D1.c22) AS c4,
    MAX (D1.c5) OVER (PARTITION BY D1.c22) AS c5,
    MAX (D1.c6) OVER (PARTITION BY D1.c22) AS c6,
    MAX (D1.c7) OVER (PARTITION BY D1.c22) AS c7,
    MAX (D1.c8) OVER (PARTITION BY D1.c22) AS c8,
    MAX (D1.c9) OVER (PARTITION BY D1.c22) AS c9,
    MAX (D1.c10) OVER (PARTITION BY D1.c22) AS c10,
    MAX (D1.c11) OVER (PARTITION BY D1.c22) AS c11,
    MAX (D1.c12) OVER (PARTITION BY D1.c22) AS c12,
    MAX (D1.c13) OVER (PARTITION BY D1.c22) AS c13,
    MAX (D1.c14) OVER (PARTITION BY D1.c22) AS c14,
    MAX (D1.c15) OVER (PARTITION BY D1.c22) AS c15,
    MAX (D1.c16) OVER (PARTITION BY D1.c22) AS c16,
    MAX (D1.c17) OVER (PARTITION BY D1.c22) AS c17,
    MAX (D1.c18) OVER (PARTITION BY D1.c22) AS c18,
    MAX (D1.c19) OVER (PARTITION BY D1.c22) AS c19,
    MAX (D1.c20) OVER (PARTITION BY D1.c22) AS c20,
    D1.c21 AS c21,
    D1.c22 AS c22,
    SUM (
    D1.c1)
    OVER (
    PARTITION BY D1.c46,
    D1.c47,
    D1.c48,
    D1.c49,
    D1.c50,
    D1.c51,
    D1.c52,
    D1.c53,
    D1.c54,
    D1.c55,
    D1.c45,
    D1.c44,
    D1.c56,
    D1.c57,
    D1.c58,
    D1.c59,
    D1.c60,
    D1.c61,
    D1.c62,
    D1.c63,
    D1.c22)
    AS c23,
    D1.c24 AS c24,
    D1.c25 AS c25,
    D1.c26 AS c26,
    D1.c27 AS c27,
    D1.c28 AS c28,
    D1.c29 AS c29,
    D1.c30 AS c30,
    D1.c31 AS c31,
    D1.c32 AS c32,
    D1.c33 AS c33,
    D1.c34 AS c34,
    D1.c35 AS c35,
    D1.c36 AS c36,
    D1.c37 AS c37,
    D1.c38 AS c38,
    D1.c39 AS c39,
    D1.c40 AS c40,
    D1.c41 AS c41,
    D1.c42 AS c42,
    D1.c43 AS c43,
    D1.c44 AS c44,
    D1.c45 AS c45,
    D1.c46 AS c46,
    D1.c47 AS c47,
    D1.c48 AS c48,
    D1.c49 AS c49,
    D1.c50 AS c50,
    D1.c51 AS c51,
    D1.c52 AS c52,
    D1.c53 AS c53,
    D1.c54 AS c54,
    D1.c55 AS c55,
    D1.c56 AS c56,
    D1.c57 AS c57,
    D1.c58 AS c58,
    D1.c59 AS c59,
    D1.c60 AS c60,
    D1.c61 AS c61,
    D1.c62 AS c62,
    D1.c63 AS c63
    FROM SAWITH0 D1)
    SELECT DISTINCT
    38 AS c1,
    D1.c24 AS c2,
    D1.c25 AS c3,
    D1.c26 AS c4,
    D1.c27 AS c5,
    D1.c28 AS c6,
    D1.c29 AS c7,
    D1.c30 AS c8,
    D1.c31 AS c9,
    D1.c32 AS c10,
    D1.c33 AS c11,
    D1.c34 AS c12,
    D1.c35 AS c13,
    D1.c36 AS c14,
    D1.c37 AS c15,
    D1.c38 AS c16,
    D1.c39 AS c17,
    D1.c40 AS c18,
    D1.c41 AS c19,
    D1.c42 AS c20,
    D1.c43 AS c21,
    D1.c21 AS c22,
    NULL AS c23,
    NULL AS c24,
    NULL AS c25,
    NULL AS c26,
    NULL AS c27,
    NULL AS c28,
    NULL AS c29,
    NULL AS c30,
    NULL AS c31,
    NULL AS c32,
    NULL AS c33,
    NULL AS c34,
    NULL AS c35,
    NULL AS c36,
    NULL AS c37,
    NULL AS c38,
    NULL AS c39,
    NULL AS c40,
    NULL AS c41,
    D1.c44 AS c42,
    D1.c45 AS c43,
    D1.c46 AS c44,
    D1.c47 AS c45,
    D1.c48 AS c46,
    D1.c49 AS c47,
    D1.c50 AS c48,
    D1.c51 AS c49,
    D1.c52 AS c50,
    D1.c53 AS c51,
    D1.c54 AS c52,
    D1.c55 AS c53,
    D1.c56 AS c54,
    D1.c57 AS c55,
    D1.c58 AS c56,
    D1.c59 AS c57,
    D1.c60 AS c58,
    D1.c61 AS c59,
    D1.c62 AS c60,
    D1.c63 AS c61,
    NULL AS c62,
    D1.c22 AS c63,
    NULL AS c64,
    NULL AS c65,
    NULL AS c66,
    NULL AS c67,
    NULL AS c68,
    NULL AS c69,
    NULL AS c70,
    NULL AS c71,
    NULL AS c72,
    NULL AS c73,
    NULL AS c74,
    NULL AS c75,
    NULL AS c76,
    NULL AS c77,
    NULL AS c78,
    NULL AS c79,
    NULL AS c80,
    NULL AS c81,
    D1.c23 AS c82,
    CASE WHEN 1 = 1 THEN 1 ELSE 0 END AS c83,
    CASE
    WHEN D1.c2 IS NULL
    AND D1.c3 IS NULL
    AND D1.c4 IS NULL
    AND D1.c5 IS NULL
    AND D1.c6 IS NULL
    AND D1.c7 IS NULL
    AND D1.c8 IS NULL
    AND D1.c9 IS NULL
    AND D1.c10 IS NULL
    AND D1.c11 IS NULL
    AND D1.c12 IS NULL
    AND D1.c13 IS NULL
    AND D1.c14 IS NULL
    AND D1.c15 IS NULL
    AND D1.c16 IS NULL
    AND D1.c17 IS NULL
    AND D1.c18 IS NULL
    AND D1.c19 IS NULL
    AND D1.c20 IS NULL
    THEN
    1
    ELSE
    0
    END
    AS c84
    FROM SAWITH1 D1
    WHERE ( D1.c44 IS NOT NULL
    AND D1.c50 IS NULL
    AND D1.c49 IS NULL
    AND D1.c22 IS NOT NULL
    AND D1.c51 IS NULL
    AND D1.c52 IS NULL
    AND D1.c53 IS NULL
    AND D1.c54 IS NULL
    AND D1.c55 IS NULL)
    /* Formatted on 12/17/2012 7:49:44 PM (QP5 v5.139.911.3011) */
    WITH OBICOMMON0
    AS (SELECT T156337.ROW_WID AS c2,
    T156337.MCAL_PERIOD_WID AS c3,
    ROW_NUMBER ()
    OVER (PARTITION BY T156337.MCAL_PERIOD_WID
    ORDER BY T156337.MCAL_PERIOD_WID DESC)
    AS c4,
    T156337.MCAL_PERIOD_NAME AS c5,
    T156337.MCAL_PER_NAME_YEAR AS c6
    FROM W_MCAL_DAY_D T156337 /* Dim_W_MCAL_DAY_D_Fiscal_Day */
    WHERE (T156337.MCAL_CAL_NAME = 'Accounting')),
    SAWITH0
    AS (SELECT CASE
    WHEN CASE D1.c4 WHEN 1 THEN D1.c2 ELSE NULL END
    IS NOT NULL
    THEN
    RANK ()
    OVER (
    ORDER BY
    CASE D1.c4 WHEN 1 THEN D1.c2 ELSE NULL END ASC NULLS LAST)
    END
    AS c1,
    D1.c2 AS c2,
    D1.c3 AS c3
    FROM OBICOMMON0 D1),
    SAWITH1
    AS (SELECT DISTINCT
    MIN (D1.c1) OVER (PARTITION BY D1.c3) AS c1, D1.c2 AS c2
    FROM SAWITH0 D1),
    SAWITH2
    AS (SELECT CASE
    WHEN CASE D1.c4 WHEN 1 THEN D1.c2 ELSE NULL END
    IS NOT NULL
    THEN
    RANK ()
    OVER (
    ORDER BY
    CASE D1.c4 WHEN 1 THEN D1.c2 ELSE NULL END ASC NULLS LAST)
    END
    AS c1,
    D1.c3 AS c2,
    D1.c5 AS c3,
    D1.c6 AS c4
    FROM OBICOMMON0 D1),
    SAWITH3 AS (SELECT DISTINCT MIN (D1.c1) OVER (PARTITION BY D1.c2) AS c1,
    D1.c2 AS c2,
    D1.c3 AS c3,
    D1.c4 AS c4
    FROM SAWITH2 D1),
    SAWITH4
    AS ( SELECT SUM (T91707.TD_OTHER_REP_AMT) AS c1,
    T314914.HIER1_NAME AS c2,
    D2.c3 AS c3,
    T314914.HIER1_CODE AS c4,
    D2.c2 AS c5
    FROM W_HIERARCHY_D T314914 /* Dim_W_HIERARCHY_D_Segment13 */
    W_GL_SEGMENT_D T315731 /* Dim_W_GL_SEGMENT_D_Segment13 */
    W_GL_ACCOUNT_D T91397 /* Dim_W_GL_ACCOUNT_D */
    W_GL_OTHER_F T91707 /* Fact_W_GL_OTHER_F */
    SAWITH1 D4,
    SAWITH3 D2
    WHERE ( T314914.HIER_CODE = T315731.SEGMENT_LOV_ID
    AND T314914.HIER_NAME = T315731.SEGMENT_LOV_NAME
    AND T91397.ROW_WID = T91707.GL_ACCOUNT_WID
    AND T91707.ACCT_PERIOD_END_DT_WID = D4.c2
    AND T314914.HIERARCHY_ID = T315731.SEGMENT_VAL_CODE
    AND T91397.ACCOUNT_SEG13_CODE = T315731.SEGMENT_VAL_CODE
    AND T91397.ACCOUNT_SEG13_ATTRIB = T315731.SEGMENT_LOV_ID
    AND T315731.SEGMENT_LOV_NAME =
    'Account_Retail_Distribution'
    AND T315731.SEGMENT_LOV_ID = 1000165
    AND D2.c1 = D4.c1
    AND (D2.c4 IN ('2011', '2012')))
    GROUP BY T314914.HIER1_CODE,
    T314914.HIER1_NAME,
    D2.c2,
    D2.c3)
    SELECT D1.c1 AS c1,
    D1.c2 AS c2,
    D1.c3 AS c3,
    D1.c4 AS c4,
    D1.c5 AS c5,
    D1.c6 AS c6
    FROM ( SELECT DISTINCT 0 AS c1,
    D1.c2 AS c2,
    D1.c3 AS c3,
    D1.c4 AS c4,
    D1.c1 AS c5,
    D1.c5 AS c6
    FROM SAWITH4 D1
    ORDER BY c2 NULLS FIRST, c4 NULLS FIRST, c3) D1
    WHERE ROWNUM <= 65001

    Hello Gurus, Experts
    Any help/tips here ...

Maybe you are looking for