AddOn Takes Much Memory While Running

Hello Experts,
I have created an addon on Subcontracting Module .Its Works fine but while running the addon and working with the addon
system is taking huge memory space which makes the addon performance pretty slow.
I want to cut down the memory usage for the addon while running for that what i have to incorporate in my code.
Thanks
Amit

Hello Vitor,
Suppose i am using a method as below :-
oMatrix = oSalesOrder.Items.Item("38").Specific
Dim Item_Cd As String = oMatrix.Columns.Item("1").Cells.Item(pval.Row).Specific.value
Dim L As Integer = pval.Row
Dim Record_Tax As SAPbobsCOM.Recordset = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
Record_Tax.DoQuery("Select VatGourpSa , ItemType From OITM Where ItemCode='" & Item_Cd & "' ")
            If Record_Tax.Fields.Item("VatGourpSa").Value = "WET" Then
                Dim Gross_Total As String = oMatrix.Columns.Item("288").Cells.Item(pval.Row).Specific.value
                oMatrix.Columns.Item("1").Cells.Item(L + 1).Specific.value = "GST on WET Tax"
                oMatrix.Columns.Item("14").Cells.Item(L + 1).Specific.value = Gross_Total
                oMatrix.Columns.Item("2007").Editable = True
                ocheck = Class_JFC_Main.oMatrix.Columns.Item("2007").Cells.Item(L + 1).Specific
                ocheck.Checked = True
                oMatrix.Columns.Item("1").Cells.Item(L + 1 + 1).Click(SAPbouiCOM.BoCellClickType.ct_Regular)
                oMatrix.Columns.Item("2007").Editable = False
End if
'---=====
After the execution of this method i have to use the code
System.Runtime.InteropServices.Marshal.ReleaseComObject(Record_Tax)
Thanks
Amit

Similar Messages

  • Out of Memory while running report

    Hi All,
    DB Version :- 10.1.0.5.0
    Our applications is used to genrate reports, where one report has limitations on the date range. This was due to 'out of memory' error which occured before and it was taking huge time to complete before. Now we have tune the SQL and its completeing in mins (performance increased by 80%) :-)
    Now we wanted to remove the 10 year limit and run for past 30 years data. when we reomve limitation it throws the below error message.
    "when others Error ORA-04030: out of process memory when trying to allocate 1872664 bytes (PLS non-lib hp,DARWIN) with query in ....package" .
    While running the report i asked DBA to check the usage and he mentioned that its at peak. Only one report using 42 GB of RAM.
    Can anyone provide me how to tackle the issue/start investigation to conclude the reason for the issue.
    When the report runs there some dynamic SQL's generated and report is completed.
    Regards,
    Sunny

    Hi All,
    DB Version :- 10.1.0.5.0
    I got the dynamic SQL's and from those found that this piece of SQL is taking huge time. It takes around 15 mins to complete.
    Below is the SQL
    SELECT
    X.TIME_PERIOD EXPOSURE_PERIOD, Y.TIME_PERIOD EVALUATION_PERIOD,b.BUSINESS_UNIT,
    decode(GROUPING(LOB_VALUE),1,'SEL',LOB_VALUE) BUSINESS_UNIT_LOB_ID_ACT,
    0 CALC_VALUE
    FROM
    ACTUARIAL_REF_DATA.TIME_PERIOD_HIERARCHY X, ACTUARIAL_REF_DATA.TIME_PERIOD_HIERARCHY Y,
    ANALYSIS_BUSINESS_UNITS B, ANALYSIS_LOBS L
    WHERE
    B.ANALYSIS_ID = L.ANALYSIS_ID
    AND X.TIME_PERIOD BETWEEN TO_NUMBER('198001') AND TO_NUMBER('201006')
    AND Y.TIME_PERIOD BETWEEN TO_NUMBER('198001') AND TO_NUMBER('201006')
    AND b.BUSINESS_UNIT='31003'
    AND LOB_VALUE IN (SELECT TO_NUMBER(LOB_VALUE) FROM ANALYSIS_LOBS WHERE ANALYSIS_ID=TO_NUMBER('3979'))
    GROUP BY X.TIME_PERIOD, Y.TIME_PERIOD,BUSINESS_UNIT,CUBE(LOB_VALUE)
    PLAN_TABLE_OUTPUT
    Plan hash value: 929111431
    | Id  | Operation                    | Name                       | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |                            |    26M|   996M|       |   203K  (3)| 00:47:35 |
    |   1 |  SORT GROUP BY               |                            |    26M|   996M|       |   203K  (3)| 00:47:35 |
    |   2 |   GENERATE CUBE              |                            |    26M|   996M|       |   203K  (3)| 00:47:35 |
    |   3 |    SORT GROUP BY             |                            |    26M|   996M|  2868M|   203K  (3)| 00:47:35 |
    |*  4 |     HASH JOIN                |                            |    35M|  1324M|       |  6694  (17)| 00:01:34 |
    |*  5 |      INDEX RANGE SCAN        | ANALYSIS_LOBS_PK           |    48 |   480 |       |     2   (0)| 00:00:01 |
    |*  6 |      HASH JOIN               |                            |   148M|  4097M|       |  5619   (1)| 00:01:19 |
    |   7 |       TABLE ACCESS FULL      | ANALYSIS_LOBS              | 24264 |   236K|       |    12   (0)| 00:00:01 |
    |   8 |       MERGE JOIN CARTESIAN   |                            |  3068K|    55M|       |  5584   (1)| 00:01:19 |
    |   9 |        MERGE JOIN CARTESIAN  |                            |  8401 |   114K|       |    20   (0)| 00:00:01 |
    |* 10 |         INDEX FAST FULL SCAN | ANALYSIS_BUSINESS_UNITS_PK |    23 |   207 |       |     3   (0)| 00:00:01 |
    |  11 |         BUFFER SORT          |                            |   365 |  1825 |       |    17   (0)| 00:00:01 |
    |* 12 |          INDEX FAST FULL SCAN| TIME_PERIOD_HIERARCHY_PK   |   365 |  1825 |       |     1   (0)| 00:00:01 |
    |  13 |        BUFFER SORT           |                            |   365 |  1825 |       |  5583   (1)| 00:01:19 |
    |* 14 |         INDEX FAST FULL SCAN | TIME_PERIOD_HIERARCHY_PK   |   365 |  1825 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access(TO_NUMBER("LOB_VALUE")=TO_NUMBER("LOB_VALUE"))
       5 - access("ANALYSIS_ID"=3979)
       6 - access("B"."ANALYSIS_ID"="L"."ANALYSIS_ID")
      10 - filter("B"."BUSINESS_UNIT"='31003')
      12 - filter("X"."TIME_PERIOD">=198001 AND "X"."TIME_PERIOD"<=201006)
      14 - filter("Y"."TIME_PERIOD">=198001 AND "Y"."TIME_PERIOD"<=201006)
    no.of rows returing :- 58404816
    Desc of the tables
    TABLE TIME_PERIOD_HIERARCHY
      TIME_PERIOD        NUMBER(6),
      QUARTER_DESC       VARCHAR2(6 CHAR),
      QUARTER_START      NUMBER(6),
      QUARTER_END        NUMBER(6),
      SEMI_ANNUAL_DESC   VARCHAR2(12 CHAR),
      SEMI_ANNUAL_START  NUMBER(6),
      SEMI_ANNUAL_END    NUMBER(6),
      YEAR               NUMBER(4),
      YEAR_START         NUMBER(6),
      YEAR_END           NUMBER(6)
    TABLE ANALYSIS_LOBS
      ANALYSIS_ID  NUMBER(10),
      LOB_TYPE_ID  NUMBER(1),
      LOB_VALUE    VARCHAR2(7 CHAR)
    TABLE ANALYSIS_BUSINESS_UNITS
      ANALYSIS_ID    NUMBER(10),
      BUSINESS_UNIT  VARCHAR2(5 CHAR)
    )Kindly let me know if there is any point where we can improve the performance.
    Regards,
    Sunny
    Edited by: k_17 on Nov 22, 2011 2:47 PM

  • Query takes much time while sum of yearly bases amount

    I have made query on the basis of joing to get payroll data it's woking fine but when we accumulate this on yearly basis while giving parameter from and to date then it takes much time, so how can we optimise this.
    please advice.

    this is query
    SELECT paa.assignment_id,MAX(EFFECTIVE_DATE) effective_date,
    paypa.business_group_id,paypa.payroll_id,
    nvl(SUM(decode(pet.element_type_id,10,decode(pivf.name,'Pay Value',TO_NUMBER(NVL(prrv.result_value, 0))))),0) AMOUNT
    FROM pay_assignment_actions paa,
    pay_payroll_actions paypa,
    pay_run_results prr,
    pay_element_types_f pet,
    pay_element_classifications pec,
    pay_run_result_values prrv,
    pay_input_values_f pivf
    where paypa.payroll_ACTION_id = paa.payroll_ACTION_id
    AND prr.assignment_ACTION_id = paa.assignment_ACTION_id
    AND paypa.action_status = 'C'
    AND paa.action_status = 'C'
    and paypa.action_type in ('Q','R')
    AND pet.element_type_id = prr.element_type_id
    AND pec.classification_id = pet.classification_id
    AND pivf.input_value_id=prrv.input_value_id
    AND prr.run_result_id = prrv.run_result_id
    AND pivf.element_type_id = pet.element_type_id
    AND paypa.effective_date BETWEEN pivf.effective_start_date AND pivf.effective_end_date
    AND paypa.effective_date BETWEEN pet.effective_start_date AND pet.effective_end_date
    AND paypa.effective_date between to_date('01-JUL-2010') AND TO_DATE('30-JUN-2011')
    group by paa.assignment_id,paypa.business_group_id,paypa.payroll_id
    any idea for this ,how can we improve performance,althoug it's woking fine without using group by function
    Edited by: oracle0282 on Mar 31, 2011 11:36 PM

  • Take more time while running report on live

    report takes more time to open on live. while running manually by connecting to live it run (means first pages generate with in 4 sec) but when i click to next page it tooks 3-4 sec.
    thers's only two formula column.
    please advice me to make it run smooth. waiting for ur response.
    Regards

    May i know which version u are using
    and hw many records does it has to fetch.?

  • Using too much memory while capturing

    I am capturing from my Panasonic deck direct to the G4 via firewire DVNTSC but after only 10 minutes or so FCP quits and it is indicated that I have used up all my 200+GB space.
    I think I'm doing something wrong with my settings somewhere because I should not be using this much memory.
    Any suggestions?

    Do this: log a 12 minute clip then do a BATCH CAPTURE of it.
    This gets around the time limit issue of Capture Now. If this still does not work, the symptoms you describe do sound a lot like what people have reported after updating to QT 7.3 with resulting problems with capturing.
    If this is the problem, the only sure solution is to erase the system drive and install OSX and your pro apps from the original disks and bring them up to date using the software updater.
    If you go this route, either clone your existing system disk or make sure you back up any data on it before you erase the disk. This process will destroy all info on the disk.
    good luck.
    x

  • How can one use the physical memory of our system rather than virtual memory while running Labview?

    We have a Windows NT system with 2 Gb of physical memory and would like to utilize the RAM fully using Labview. What usually occurs is that Labview uses a tremendous amount of page file space while a majority of the physical memory is unused. Is there a way to configure Labview (or our system) to overcome this problem? It seems that our processes would be much faster if they were mainly using the physical memory. Is it possible to trick the system, by creating a RAM disk and allocating this as virtual memory space?

    > We have a Windows NT system with 2 Gb of physical memory and would
    > like to utilize the RAM fully using Labview. What usually occurs is
    > that Labview uses a tremendous amount of page file space while a
    > majority of the physical memory is unused. Is there a way to
    > configure Labview (or our system) to overcome this problem? It seems
    > that our processes would be much faster if they were mainly using the
    > physical memory. Is it possible to trick the system, by creating a
    > RAM disk and allocating this as virtual memory space?
    LabVIEW the application doesn't know anything about physical versus
    virtual memory. LV asks the OS for general purpose memory and goes
    from there.
    Drivers like DAQ and IMAQ will have a combination of general user
    memory and page lo
    cked physical buffers.
    I'm not up on the details, but this is something that the OS is in
    control of, so that is where you need to look for the solution. One
    of the things to look at is the disk cache. By default, I think that
    NT takes a percentage of the RAM to use for disk cache. With that
    much RAM, this is probably unnecessary and is using too much.
    Similarly, the OS may be attempting to keep the working set size
    to a fraction of the total RAM to reserve space for other things.
    It doesn't make sense to me, but then I don't work for MS.
    Greg McKaskle

  • Oracle9i reports take longer time while running in web

    Hi,
    I have developed few reports in Oracle9i and I am trying to run the reports in web. Running a report through report builder takes lesser time compare to running the same report in web using web.show_document. This also depends on the file size. If my report file size(.jsp file) is less than 100KB then it takes 1 minute to show the parameter form and another 1 minute to show the report output. If my file size is around 190KB then the system takes atleast 15 minutes to show the parameter form. Another 10 to 15 minutes to show the report output. I don't understand why the system takes long time to show the parameter form.
    I have a similar problem while opening the file in reports builder also. If my file size is more than 150KB then it takes more than 15 minutes to open the file.
    Could anyone please help me on this.
    Thanks, Radha

    This problem exists only with .jsp reports. I saved the reports in .rdf format and they run faster on web now. Opening a .jsp report takes longer time(file with 600KB takes atleast 2 hours) but the same report in .rdf format takes few seconds to get opened in reports builder.

  • How much memory to run Logic 9 smoothly

    Hi all
    I'm the happy owner of a new iMac 21,5" since yesterday. Brilliant machine.
    It comes with 4GB of memory DDR3. Snow Leopard is the OS.
    I will be using it mainly to produce music, using Logic Studio 9.
    Is there any point on upgrading the memory to 8 Gigs, will that help managing big projects, or is it a waste of money?
    Thanks in advance

    I agree, I think that 4 gig should be enough to run Logic smoothly.
    Here's my question though... if you've already ordered it with 4 gig, is it even possible to upgrade it later to 8 gig? I'm sure it is possible but is feasible for the average Joe to tear apart their iMac and add additional RAM. Is it easy to get to on these new guys or would you have to send it in to Apple?

  • How to free up memory while running?

    Hello,
    i´m using a custom OPUI written in LV.
    In there i start TestStand 3.5.
    The model of Teststand then starts two parallel-sequences (as "New Execution" that are loaded in Sequence-File-Load and looping all the time.
    One parallel-sequence checks the buttons of the OPUI and the other parallel-sequence is controling a climatic chamber. When a special temperature is reched then it executes "Test UUT" of the model-sequence (also as "New Execution").
    Everything works fine but someone is eating memory. Everytime when a Test UUT is done the memory goes up. And after it is finished the memory is not released.
    So my question is: How can i free up unused memory (like garbage collector) in teststand, or in LV if there is a special action needed.
    Or perhaps the teststep-results are not removed? So that i create 100s of new executions and they all keep the results?
    I already clicked on "Disable result recording for all steps" in the two parallel-sequences and in all steps in the model. So that i think that only the Mainsequence Callback is creating results.
    Has someone any ideas what i can do?
    Thanks for everything

    If you have result collection disabled for all of your steps then the memory leak is likely due to something else. You might not be closing a reference that you should be. Try to narrow down which part(s) of your sequence are leaking the memory by either stepping through things one step at a time and looking at memory usage or perhaps by cutting out parts of your sequence until the problem goes away. Also, if it's not your sequence then it might be your custom UI that is leaking the memory, to determine this, try running your sequence in the sequence editor and/or one of the UIs that ship with TestStand and see if the problem goes away.
    Hope this helps,
    -Doug

  • Catbundle.sql taking too much time while running it for CPU-April2011

    Hi ,
    I am on oracle 11.1.0.7.0 and I am applying the CPU patch April 2011.
    OS is Solaris SPARC.
    As part of that , i am running the catbundle.sql.
    currently , for last 180 mins , the catbundle.sql is at this state :
    SQL> PROMPT Processing Oracle Java Supplied Packages...
    Processing Oracle Java Supplied Packages...
    SQL> ALTER SESSION SET current_schema = sys;
    Session altered.
    SQL> @?/rdbms/admin/initcdc.sql
    SQL> Rem
    SQL> Rem $Header: initcdc.sql 15-mar-2006.08:20:07 mbrey Exp $
    SQL> Rem
    SQL> Rem initcdc.sql
    SQL> Rem
    SQL> Rem Copyright (c) 2000, 2006, Oracle. All rights reserved.
    SQL> Rem
    SQL> Rem    NAME
    SQL> Rem      initcdc.sql - script used to load CDC jar files into the database
    SQL> Rem
    SQL> Rem    DESCRIPTION
    SQL> Rem      <short description of component this file declares/defines>
    SQL> Rem
    SQL> Rem    NOTES
    SQL> Rem      script must be run as SYS
    SQL> Rem
    SQL> Rem    MODIFIED   (MM/DD/YY)
    SQL> Rem    mbrey       03/15/06 - bug 5092790 add datapump registration
    SQL> Rem    pabingha    02/25/03 - fix undoc interfaces
    SQL> Rem    wnorcott    03/14/02 - bug-2239726 disable triggers.
    SQL> Rem    wnorcott    01/31/02 - function 'active' return 0 or 1.
    SQL> Rem    wnorcott    01/30/02 - disable CDC triggers, CREATE_CHANGE_TABLE re-enables.
    SQL> Rem    wnorcott    06/26/01 - rid trailing slash.  As per Mark Jungermann
    SQL> Rem    gviswana    05/25/01 - CREATE OR REPLACE SYNONYM
    SQL> Rem    jgalanes    11/17/00 - for Import/Export grant execute on util to
    SQL> REM                           SELECT_CATLOG_ROLE
    SQL> Rem    wnorcott    09/07/00 - new loadjava syntax for performance.
    SQL> Rem    wnorcott    07/18/00 - rid LOGMNR_UID$.clientid
    SQL> Rem    wnorcott    06/28/00 - move logmnr_dict view here
    SQL> Rem    wnorcott    03/28/00 - fix trigger install
    SQL> Rem    wnorcott    03/27/00 - Install change table triggers
    SQL> Rem    mbrey       01/26/00 - script to load CDC jars
    SQL> Rem    mbrey       01/26/00 - Created
    SQL> Rem
    SQL> call sys.dbms_java.loadjava('-v -f -r -s -g public rdbms/jlib/CDC.jar');It has run the @?/rdbms/admin/initcdc.sql script and now its not proceeding next.. I am not sure if its stuck or still running.. How do i find that..
    what should i do ?
    *PS : Ive read this note :Script Fails At Loadjava With ORA-03113 and ORA-03114 [ID 358232.1] But its when it errors out , for me its not erroring out also..*
    Thanks
    Kk
    Edited by: Kk on May 25, 2011 2:41 AM

    just an update :
    I sat watching it for 3 hours.. then i though of stopping it.. pressed CTRL-Z and boom , it just took me to SQL showing that it had completed...
    So , if someone else faces this issue , press CTRL-Z after some 5-10 minutes it will show that its running well.
    Regards
    Kk
    Edited by: Kk on May 25, 2011 3:55 AM

  • Ipad since v5 out of memory while running applications

    Since installing v5 on iPad (original 3g - 64, applications that ran OK now get out of
    memory error and screen goes dark, then back to one of the icon screens.

    Since installing v5 on iPad (original 3g - 64, applications that ran OK now get out of
    memory error and screen goes dark, then back to one of the icon screens.

  • Why do I have to run the plug-in container in my processes constantly in this version? It takes up too much memory!

    The earlier version of Firefox did not run this plug-in container. Every time I would remove it from my processes it would kill videos etc. But, it was all fine in the older version of Firefox, so why the change? So I chose not to update Firefox. Then, the other day, I saw that is was automatically downloading and I turned off my computer because it wouldn't stop and I didn't give permission. When I got home I could not use Firefox and it took me hours to figure out how to get the internet back. Then I got Firefox back and this stupid process is running again. It takes up too much memory. I don't like a bunch of extra processes running like that. So, why can't I just use the old version? Is this process absolutely necessary?

    In the past the memory usage would end up as part of the Firefox program. Now with OOPP you can see it as a separate process and that makes it more noticeable.
    You can disable OOP if you want.<br />
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r42
    # Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    I don't know if these three with different copyright dates are all needed:
    # Version 0.9.17, copyright 2008-2010 Veetle Inchttp://www.veetle.com/
    # Version 0.9.17, Copyright 2006-2009 Veetle Inchttp://www.veetle.com/
    # Version 0.9.17, copyright 2006-2010 Veetle Inchttp://www.veetle.com/

  • While running the query how much time it will taken, I want to see the time

    Hi Folks
    I would like to know ... While running the query how much time it will be taken, I want to see the time? in WEBI XI R2.....
    Plz let me know  the answer.......

    Hi Ravi,
    The time a report runs is estimated based on the last time it was run. So you need to run the report once before you can see how long it will take. Also it depends on several factors... the database server could cache some queries so running it a second time immediately after the first time could be quicker. And there is the chance of changing filters to bring back different sets of data.
    You could also schedule a report and then check the scheduled instance's status properties and view how long a report actually ran.
    Good luck

  • Is it normal to use over 9,000,000k of memory (Private Working Set) when working on 3-4 photos with approx. 10-12 layers each while running CC??

    I started using CC in December with absolutely no issues. In April, CC suddenly started crashing on me when I would run certain actions that I have used for years. My first thought was that my computer was going bad. This began a two month process of eliminating any potential computer problems. Fixes were as follows:
    Installed new SSD.
    Installed new 2T storage drive.
    Installed new video card and power source to run new video card.
    I am operating Windows 7 with 16G of RAM on a quad core, which should be more than sufficient to handle the demands of CC. It worked fine for four months, so obviously it is capable of doing the job.
    $400 later, CC still crashed while using certain actions.
    As a test, I tried running the same files with the same actions on my husband's computer, which is a year newer. CC crashed on his as well when the actions were ran. After much head banging, tears, and communication with Adobe, it was determined that it's not uncommon for older actions to not be compatible with newer versions of photoshop. As a result, I spent weeks reworking my entire workflow to redo/remove the actions I had come to rely on.
    Fast forward to today. I have fixed everything I possibly know how to fix, yet I still have to be VERY careful not to push CC too hard. I used to be able to work on 6 photos at a time, with 10-15 layers on each photo. CC NEVER crashed on me. Now, I can barely work on 2 or 3 photos and it will crash if I'm not careful about running one action at a time (instead of batching) and I have to keep my layers to a minimum. During the time I was trying to figure out my computer problems, I started paying more attention to my memory usage while CC was opened. Before all the changes, I would use 5-6,000,000k of memory with only 2 or 3 photos opened. AFTER all the fixes, I still continue to use an insane amount of memory.
    Things to consider before offering any suggestions:
    *Yes, I have re-installed CC about 5 times after my computer upgrades, mainly because I could not get my actions to populate. So I don't think a re-install will help.
    *I tried removing most of my actions from CC, and it made no difference in memory usage. Besides, when I did the test on my husband's computer, the only actions installed were the few I was trying to test.
    *I disabled auto-save and the recovery feature. Still no difference.
    So, bottom line, my question is if it is normal to use so much memory when doing such simple tasks?? Most of my layers are levels, curves, fill, and a sharpening layer and noise filter. It doesn't seem those would be considered task intensive. Not only that, but also when I did the test on my husband's computer, I checked his memory usage and he didn't even break 2,000,000k at the same time I was using 5-6,000,000k for the same task. And he only has 12G of RAM. So SOMETHING is not right! Is there a setting I need to change so that CC is not so memory intensive?? I could see if I were doing 3D graphics of something, but these are simple photo edits that I have done for years without any problems.
    Sincerely hope that somebody has some/any suggestions on how I can get the memory usage down so I can run CC as it's meant to be - fast and efficient!
    Thanks in advance for any help!!

    Thanks again for your suggestions Noel! I do hope that resetting my preferences will be a last resort. After my re-install it took me a week or two to get everything back to where I wanted it! For some reason, the way the computer techs set up my new drives, CC did not populate any of my actions/preferences/etc. I figured a round about way to get my actions to load, but it was a real pain in the butt!! I certainly hope I don't have to do that all over again. Although I will say that even before I got everything reset in photoshop, I was still having problems. The only thing I pulled into a fresh install of CC were the few actions that were giving me problems ( I worked with the defaults until I could figure out how to reconfigure everything). Before and after my changes, CC was still crashing on me and using tons of memory. Just something to keep in mind regarding my preferences being an issue.
    Here is the information you requested. Hopefully the answer lies within! I have been in tears many times since April trying to get my CC/computer back to running the way it used to. This has put me SO far behind on editing I've even had to stop taking sessions for now. So I am VERY appreciative of any and all suggestions you can offer!
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: AMD CPU Family:15, Model:1, Stepping:0 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2399 MHz
    Built-in memory: 16361 MB
    Free memory: 4728 MB
    Memory available to Photoshop: 14679 MB
    Memory used by Photoshop: 71 %
    Image tile size: 1028K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=2048
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="AMD Radeon R7 200 Series"
    gpu[0].RendererID=26131
    gpu[0].Vendor="ATI Technologies Inc."
    gpu[0].VendorID=4098
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="14.100.0.0"
    gpu[0].Driver="aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64. dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dl l"
    gpu[0].DriverDate="20140417000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.2 AMD-APP (1445.5)"
    gpu[0].CUDASupported=0
    gpu[0].OCLBandwidth=2.25491e+010
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="4.30"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[214748 3647]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[1024]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[1024]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[29]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number: 96040756894339264519
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: D:\Users\Coleen\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      E:\, 930.0G, 665.3G free
      D:\, 933.0G, 852.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/10/29-11:47:16   79.548223   79.548223
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/10/25-12:15:59   5.0.24   79.547804
       AdobePDFL.dll   PDFL 2013/10/29-11:47:16   79.508720   79.508720
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPFiles.dll   Adobe XMP Files 2013/10/29-11:47:16   79.154911   79.154911
       AdobeXMPScript.dll   Adobe XMP Script 2013/10/29-11:47:16   79.154911   79.154911
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/10/29-11:47:16   79.548223   79.548223
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.249 BuildVersion: 7.0; BuildDate: Thu Nov 14 2013 15:55:50)   1.000000
       ARE.dll   ARE 2013/10/29-11:47:16   79.548223   79.548223
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/10/29-11:47:16   79.548223   79.548223
       BIBUtils.dll   BIBUtils 2013/10/29-11:47:16   79.548223   79.548223
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/10/29-11:47:16   79.548223   79.548223
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/10/30-13:12:12   79.546835   79.546835
       FileInfo.dll   Adobe XMP FileInfo 2013/10/25-03:51:33   79.154511   79.154511
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2013/10/29-11:47:16   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/10/29-11:47:16   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/10/29-11:47:16   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.2.0.36  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/10/30-13:12:12   79.546835   79.546835
       ScriptUIFlex.dll   ScriptUIFlex 2013/10/30-13:12:12   79.546835   79.546835
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.2.1 (14.2.1 x001)
       Accented Edges 14.2.1
       Adaptive Wide Angle 14.2.1
       Angled Strokes 14.2.1
       Average 14.2.1 (14.2.1 x001)
       Bas Relief 14.2.1
       BMP 14.2.1
       Camera Raw 8.4.1
       Camera Raw Filter 8.4.1
       Chalk & Charcoal 14.2.1
       Charcoal 14.2.1
       Chrome 14.2.1
       Cineon 14.2.1 (14.2.1 x001)
       Clouds 14.2.1 (14.2.1 x001)
       Collada 14.2.1 (14.2.1 x001)
       Color Halftone 14.2.1
       Colored Pencil 14.2.1
       CompuServe GIF 14.2.1
       Conté Crayon 14.2.1
       Craquelure 14.2.1
       Crop and Straighten Photos 14.2.1 (14.2.1 x001)
       Crop and Straighten Photos Filter 14.2.1
       Crosshatch 14.2.1
       Crystallize 14.2.1
       Cutout 14.2.1
       Dark Strokes 14.2.1
       De-Interlace 14.2.1
       Dicom 14.2.1
       Difference Clouds 14.2.1 (14.2.1 x001)
       Diffuse Glow 14.2.1
       Displace 14.2.1
       Dry Brush 14.2.1
       Eazel Acquire 14.2.1 (14.2.1 x001)
       Embed Watermark 4.0
       Entropy 14.2.1 (14.2.1 x001)
       Extrude 14.2.1
       FastCore Routines 14.2.1 (14.2.1 x001)
       Fibers 14.2.1
       Film Grain 14.2.1
       Filter Gallery 14.2.1
       Flash 3D 14.2.1 (14.2.1 x001)
       Fresco 14.2.1
       Glass 14.2.1
       Glowing Edges 14.2.1
       Google Earth 4 14.2.1 (14.2.1 x001)
       Grain 14.2.1
       Graphic Pen 14.2.1
       Halftone Pattern 14.2.1
       HDRMergeUI 14.2.1
       IFF Format 14.2.1
       Ink Outlines 14.2.1
       JPEG 2000 14.2.1
       Kurtosis 14.2.1 (14.2.1 x001)
       Lens Blur 14.2.1
       Lens Correction 14.2.1
       Lens Flare 14.2.1
       Liquify 14.2.1
       Matlab Operation 14.2.1 (14.2.1 x001)
       Maximum 14.2.1 (14.2.1 x001)
       Mean 14.2.1 (14.2.1 x001)
       Measurement Core 14.2.1 (14.2.1 x001)
       Median 14.2.1 (14.2.1 x001)
       Mezzotint 14.2.1
       Minimum 14.2.1 (14.2.1 x001)
       MMXCore Routines 14.2.1 (14.2.1 x001)
       Mosaic Tiles 14.2.1
       Multiprocessor Support 14.2.1 (14.2.1 x001)
       Neon Glow 14.2.1
       Note Paper 14.2.1
       NTSC Colors 14.2.1 (14.2.1 x001)
       Ocean Ripple 14.2.1
       Oil Paint 14.2.1
       OpenEXR 14.2.1
       Paint Daubs 14.2.1
       Palette Knife 14.2.1
       Patchwork 14.2.1
       Paths to Illustrator 14.2.1
       PCX 14.2.1 (14.2.1 x001)
       Photocopy 14.2.1
       Photoshop 3D Engine 14.2.1 (14.2.1 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.2.1 (14.2.1 x001)
       Pinch 14.2.1
       Pixar 14.2.1 (14.2.1 x001)
       Plaster 14.2.1
       Plastic Wrap 14.2.1
       PNG 14.2.1
       Pointillize 14.2.1
       Polar Coordinates 14.2.1
       Portable Bit Map 14.2.1 (14.2.1 x001)
       Poster Edges 14.2.1
       Radial Blur 14.2.1
       Radiance 14.2.1 (14.2.1 x001)
       Range 14.2.1 (14.2.1 x001)
       Read Watermark 4.0
       Reticulation 14.2.1
       Ripple 14.2.1
       Rough Pastels 14.2.1
       Save for Web 14.2.1
       ScriptingSupport 14.2.1
       Shake Reduction 14.2.1
       Shear 14.2.1
       Skewness 14.2.1 (14.2.1 x001)
       Smart Blur 14.2.1
       Smudge Stick 14.2.1
       Solarize 14.2.1 (14.2.1 x001)
       Spatter 14.2.1
       Spherize 14.2.1
       Sponge 14.2.1
       Sprayed Strokes 14.2.1
       Stained Glass 14.2.1
       Stamp 14.2.1
       Standard Deviation 14.2.1 (14.2.1 x001)
       STL 14.2.1 (14.2.1 x001)
       Sumi-e 14.2.1
       Summation 14.2.1 (14.2.1 x001)
       Targa 14.2.1
       Texturizer 14.2.1
       Tiles 14.2.1
       Torn Edges 14.2.1
       Twirl 14.2.1
       Underpainting 14.2.1
       Vanishing Point 14.2.1
       Variance 14.2.1 (14.2.1 x001)
       Variations 14.2.1 (14.2.1 x001)
       Water Paper 14.2.1
       Watercolor 14.2.1
       Wave 14.2.1
       Wavefront|OBJ 14.2.1 (14.2.1 x001)
       WIA Support 14.2.1 (14.2.1 x001)
       Wind 14.2.1
       Wireless Bitmap 14.2.1 (14.2.1 x001)
       ZigZag 14.2.1
    Optional and third party plug-ins:
       Imagenomic Plug-in Console 1, 2, 0, 0
       Portraiture 2.3.3.0
    Plug-ins that failed to load: NONE
    Flash:
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

  • How much memory do lyrics take up on ur ipod?

    hi everyone.
    well the heading says it.. how much memory do lyrics take up?coz i was reading this article and it explained how to put lyrics into ur ipod.but i mean its like pictures i guess so it should have memory but how much?? just wondering and thanks in advance

    Lyrics are just text files, so I doubt they take up much space. I have both lyrics and album covers on mine, and no storage problem. In fact, I've also got the full text files of "Adventures of Sherlock Holmes" and "Journey to the Center of the Earth" on mine. Sherlock only took about 500k for the WHOLE BOOK.
    So don't worry about running out of space for lyrics...

Maybe you are looking for

  • Move negative sign (minus) to left side of value in gui_download

    Hi, While downloading data using gui_download I want to bring the negative sign to the left side of the value. Is this possible? Regrads, Madhu

  • RFC Receiver Adapter and RFC Destination -- Help

    Hi, I would like to configure the RFC Receiver Adapter for the invokation of a RFC on SAP System (Name: ALPHA) using a RFC destination provided by another system named BETA. I have set External Server as server type. My first question is: I have to q

  • I have a problem installing the new adobe!!

    Hi I was trying to update my adobe and suddenly my adobe was gone. I had tried to delete all my adobe files and redownload them again, but a message kept appearing Error 1310. Error writing to file. C:\ProgramData\Adobe\Acrobat\9.0\Replicate\Security

  • Got a new update

    My N8 received a new update today (13.0xx, and about 6.5mb).  The install was a breeze, but what exactly did this update do for the phones functionality?  The pre-download description simply stated "updates the phone and allows using all the new feat

  • Can I convert a MS Publisher 2010 doc to a PDF

    Can I convert a MS Publisher 2010 doc to a PDF?