Assertion Failed with switching between editing mode of table view

I'm writing an app that can switching between edit mode of a table view
- in edit mode a new line appear at the bottom
- out edit mode this line will disappear
I used insertRowsAtIndexPath and deleteRowsAtIndexPath to achieve this effect, but then during testing, if I switching edit mode too frequently, I got an assertion failure
Assertion failed: (cache->size >= g->size), function evictglyph_entry_fromcache, file Fonts/CGFontCache.c, line 836.
It seems someone has also encountered this before, but I have found no solution yet. Anyone know how to fix it or work around it?

Hi,
Please check if you have entries on the table RSTRANRULE with:
GROUPID   =  'space'
GROUPTYPE =  'space' or 'S'
REF_RULE  <> 'space'
If there are inconsistent entries in the RSTRANRULE table such as:
       TRANID         *
       OBJVERS        *
       RULEID         *
       SEQNR          *
       GROUPID        00
       GROUPTYPE      space  or  GROUPTYPE    'S'
       RULETYPE       space
       REF RULE       *
Delete these entries from the table.
Activate the affected transformations.
More info check the note 998730.
9987300-ASSERTION_FAILED when calling or changing groups, group 00.
Thanks,
Walter Oliveira.

Similar Messages

  • MSI R9 290 How to switch between Gaming Modes?

    Hi, I just got a MSI R9 290... with Afterburner installed. This card has 3 preset modes that are supposed to be easy to switch between OC Mode 1007Mhz, Gaming 974Mhz, Silent 947Mhz... How do I switch between modes? I just tried to up the MHz in Afterburner and must have done something wrong, becuase I froze everything instalntly and had to reboot. Can someone please advise me how to switch between these modes? Do I have the right software installed, Afterburner or is there another suite specificly for this card? I did not install the card, and sorry I am a noob when it comes to OC. . . Noob to gaming in general, but I am getting some pretty bogus 30FPS on a 2012 game, LA Noire, which shouldnt even be demanding for t

    Quote from: kris.meaney on 07-March-15, 18:45:04
    This card has 3 preset modes that are supposed to be easy to switch between OC Mode 1007Mhz, Gaming 974Mhz, Silent 947Mhz... How do I switch between modes?
    You need the Gaming APP for switching (not Afterburner): http://download.msi.com/uti_exe/gamingApp.zip
    Afterburner is for manual overclocking (for advanced users) if not using the modes.

  • Desktop Story fails to switch to online mode...

    I have Story Pro and work on a Windows 7 PC. Since the update last night, the desktop app won't connect online. I have tried to uninstall it and reinstall it. I still dosen't work. I can access the Web version just fine. Here is the error message I keep getting:
    Failed to switch to online mode. Please try again.
    Please help with how to fix this problem. I'm trying to get everything ready to roll out story to our copywriters and editors.
    Thanks In advance for everyone's help!

    Can you Sign out from the AIR application and then sign back in? Once login happens try going online.
    It would be great if your system is connected to internet while performing above steps.
    If this doesn’t work out then we can have a quick connect session to debug the issue.
    Send me your availability please so that I can setup the meeting.
    Thanks
    Ratnesh

  • Timeline window missing button to switch between frame mode and timeline mode

    I'm using Photoshop CS6 Extended.
    This is what my timeline looks like now.
    In tutorials they refer to a button that should be to the left of the drop menu that says "forever". The button is supposed to allow you to switch between frame mode and timeline mode.
    this is what the timeline window looks like in timeline mode and with the button that allows you to switch.
    I've already tried reinstalling and upgrading to CS6 extended, as some forums suggested.
    Please help. Animation is the core reason that I need photoshop and without this button I'm extremely limited. Thanks.

    OK. This should work. Copy and past the below script into Script Editor, save it as an AppleScript application to the Desktop. Double-click it and it should change to grayscale. Double-click it again and it'll toggle back.
    tell application "System Preferences" to activate
    delay 1
    tell application "System Events"
    tell process "System Preferences"
    click the menu item "Universal Access" of the menu "View" of menu bar 1
    click the radio button "Seeing" of the first tab group of window "Universal Access"
    click the checkbox "Use grayscale" of tab group 1 of window "Universal Access"
    end tell
    end tell
    tell application "System Preferences" to activate
    delay 1
    tell application "System Events"
    tell process "System Preferences"
    click the menu item "Universal Access" of the menu "View" of menu bar 1
    click the radio button "Seeing" of the first tab group of window "Universal Access"
    click the checkbox "Use grayscale" of tab group 1 of window "Universal Access"
    end tell
    end tell
    tell application "System Preferences" to quit

  • Switch between Edit and Display mode in an input layout?

    Hi,
    I want to create a button in my planning layout which is input ready,  that makes it able to change between display mode and edit mode.
    I'm on BI 7.0. And I am using Analyzer/Workboook.
    Is this possible using 'SET_DATA_ENTRY_MODE' command?
    If Yes,  Where should I put this  command ? I can't  find this in Button Properties.
    Please explain in detail.
    Thanks,
    Srini.

    Hi,
    This is the correct command. In the button properties, you need to select 'command via command wizard'. There you should select this command and customize it according to your requirement (on/off).

  • Slow/unpredictable response when switching between editing different TextFlows

    Hi All,
    Our (AIR) app requires multiple textFlow objects contained in groups over the app desktop. The user should be able to begin editing any one of these by clicking on the text, then beginning editing. I have been doing this by switching an EditManager in and out based on mouse click events, but I notice there is some delay that appears arbitrary after the mouse click, before editing is possible. The MXML and AS3 code below gives an example. You have a desktop with two text elements. When you mouse over one and click on the text, it will usually enter edit mode (with an I-bar cursor) pretty quickly. But when you click on the second text group the I-bar (and edit functionality) often doesn’t appear until you mouse out and mouse in again. On other occasions the I-bar will appear after just moving the cursor about in the group a bit. Clicking on the desktop and then on the text elements gives similar behaviour. Either way, we really need to get more responsive click to editing!
    From tracking through it seems that there is some hidden sequence of events between assigning the interactionManager to the textFlow, and the events being captured and handled by the ContainerController / EditManager. Is there some way I can know this has occurred, or force it to happen immediately?
    Thanks!
    Darryl
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                            xmlns:s="library://ns.adobe.com/flex/spark"
                            xmlns:mx="library://ns.adobe.com/flex/mx"
                            xmlns:ns1="*"
                            width="800"
                            height="600"
                            click="clickHandler(event)">
          <fx:Script>
                <![CDATA[
                      protected function clickHandler(event:MouseEvent):void
                      var targ:DisplayObject = DisplayObject(event.target);
                      while ( targ && !(targ is Group ) ) {
                            targ = targ.parent;
                      text1.canEdit = (targ == text1);
                      text2.canEdit = (targ == text2);
                ]]>
          </fx:Script>
          <s:Group width="800" height="600" id="baseGroup">
                <ns1:TextGroup left="80" top="200" width="240" height="200" id="text1" text="This is text group 1"/>
                <ns1:TextGroup left="480" top="200" width="240" height="200" id="text2" text="This is text group 2"/>
          </s:Group>
    </s:WindowedApplication>
    package
          import flash.events.MouseEvent;
          import flashx.textLayout.container.ContainerController;
          import flashx.textLayout.conversion.TextConverter;
          import flashx.textLayout.edit.EditManager;
          import flashx.textLayout.elements.TextFlow;
          import flashx.undo.UndoManager;
          import spark.components.Group;
          import spark.core.SpriteVisualElement;
          import spark.utils.TextFlowUtil;
          public class TextGroup extends Group
                protected var _textFlow:TextFlow=null;
                protected var _editManager:EditManager=new EditManager(new UndoManager());
                protected var _container:SpriteVisualElement = new SpriteVisualElement;
                protected var _controller:ContainerController;
                public function TextGroup()
                      super();
                      this.addElement(_container);
                      _container.percentHeight = 100;
                      _container.percentWidth = 100;
                      _controller = new ContainerController(_container,this.width,this.height);
                      this.addEventListener(MouseEvent.MOUSE_OVER,eventHandler);
                      this.addEventListener(MouseEvent.MOUSE_OUT,eventHandler);
                public function set text(txt:String):void {
                      _textFlow=TextConverter.importToFlow(txt, TextConverter.PLAIN_TEXT_FORMAT);
                      _textFlow.flowComposer.addController(_controller);
                      _controller.setCompositionSize(this.width,this.height);
                      _textFlow.flowComposer.updateAllControllers();
                public function get text():String {
                      return _textFlow.getText();
                public function set canEdit(b:Boolean):void {
                      if (b && !_textFlow.interactionManager) {
                            _textFlow.interactionManager = _editManager;
                      } else if (!b && _textFlow.interactionManager ) {
                            _textFlow.interactionManager = null;
                protected function eventHandler(event:MouseEvent):void
                      switch(event.type) {
                            case (MouseEvent.MOUSE_OVER):
                                  this.opaqueBackground = 0xc4c4c4;
                                  break;
                            case (MouseEvent.MOUSE_OUT):
                                  this.opaqueBackground = null;
                                  break;

    I put some trace() in TLF and finally found that TLF cannot get any events before the cursor firstly goes out of the TextLine (Flash.text.engine.TextLine) on your custom component. It seems a Flex bug.

  • I need software that enables me to switch between different modes/profiles on my Mac

    I need software the allows me to switch between modes with a click on my computer.
    For example:
    Mode 1:      Disables the screen saver
                      Changes power settings
                      Changes the wallpaper
    Mode 2:      Sets everything to standard

    http://startly.com/products/quickeys/mac/4/

  • AS: how to switch between screen modes?

    hi @ all,
    does anybody know how to switch between the 4 screen modes in ps cs3?
    - standard
    - maximized
    - full screen with menubar
    - full screen
    I looked around but could not find anything discribing a way doing this by applescript.
    the only thread I found
    http://www.adobeforums.com/webx/.3bc85cba/0
    refers to javascript but I was not able to adopt it.
    thanks for any help
    Claus

    To do it with AS only, you need to simulate the "f" key with System Events:
    tell application "System Events"
      tell process "Adobe Photoshop CS3" to keystroke "f"
    end tell
    That will loop thought the screen modes as if you did it manually.
    To run the JS from the other thread, you need to use the "do javascript" command. Remember to escape all the quotes in the JS:
    tell application "Adobe Photoshop CS3"
      do javascript "var screenModeOptions = new Array(4);
         screenModeOptions[0] = \"screenModeStandard\";
         screenModeOptions[1] = \"screenModeMaximized\";
         screenModeOptions[2] = \"screenModeFullScreenWithMenubar\";
         screenModeOptions[3] = \"screenModeFullScreen\";
         applyScreenMode(screenModeOptions[0]);
         function applyScreenMode(mode){
          var desc = new ActionDescriptor();
          var ref = new ActionReference();
          var menuID = stringIDToTypeID( mode );
          ref.putEnumerated( charIDToTypeID( \"Mn  \" ), charIDToTypeID( \"MnIt\" ), menuID );
          desc.putReference( charIDToTypeID( \"null\" ), ref) ;
          executeAction( charIDToTypeID( \"slct\" ), desc, DialogModes.NO );
    end tell
    The JS is the better solution if you wanted to skip directly to the desired screen mode without looping through the others.
    Carl.

  • IPhoto corrupts the view of my Nikon D800 photos when zooming or switching to edit mode

    I am viewing RAW files from a Nikon D800.  Initially the files show correctly but after a while the views starts corrupting when I zoom in and sometimes when I enter the edit mode.  The files themselves are ok, it is just the preview that corrupts.
    Once this has happened the only way to restore normality is to reboot the iMac.  Closing and reopening iPhoto does not fix it.
    I am using iPhoto 9.5.1 on OSX 10.9.4 (iMac 21.5-inch, Mid 2010).
    I have a Nikon D7000 as well and editing these photos I have no problems.  Perhaps it is the larger file size...?
    Example of the corruption attached.

    That could be an issue with the graphics card.
    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    If it is, switch to another user account and repeat the test there.

  • Sync failed with error between ADAM to OID using DIP

    Hi,
    I have configured DIP between ADAM and OID. Adam is the source.
    Error while enableing Sync profile from UI "The profile named "ADAM2OID" could not be enabled due to validation errors in the profile. Edit the profile to view/correct the errors. "
    Also tried from Command line :
    [labuser@rhel5-oid1-amway bin]$ ./manageSyncProfiles validateProfile -h Host-p 7005 -pf ADAM2OID -D weblogic
    [Weblogic user password]
    Connection parameters initialized.
    Connecting at Host:7005, with userid "weblogic"..
    Connected successfully.
    Profile ADAM2OID has following Error(s) and/or Warning(s):
    Attribute "orclodipcondirurl" has invalid value "ADAM-AMWAY.persistent.co.in:1389".
    Profile Info :
    dn: orclodipagentname=ADAM2OID,cn=subscriber profile,cn=changelog subscriber,cn=oracle internet directory
    orclodipagentconfiginfo: [INTERFACEDETAILS]
    Reader: oracle.ldap.odip.gsi.ActiveChgReader
    CheckAllEntries: false
    SkipErrorToSyncNextChange: false
    UpdateSearchCount: 100
    SearchDeltaSize: 500
    orclodipsynchronizationmode: IMPORT
    orclodipprofilemetric;success_count: 0
    orclodipsynchronizationstatus: Agent Execution Successful, Mapping/IMPORT operation Failure
    orclaci: access to entry by group="cn=odisgroup,cn=DIPAdmins,cn=Directory Integration Platform,cn=products,cn=oraclecontext" (browse,proxy)
    orclaci: access to attr = (*) by group="cn=odisgroup,cn=DIPAdmins,cn=Directory Integration Platform,cn=Products,cn=oraclecontext" (read,write,search,compare)
    orclversion: 4.0
    objectclass: orclODIPProfilewithReconcile
    objectclass: orclODIProfile
    objectclass: top
    orclodipautoprovisioninginfo;control: DISABLE
    orclodipinterfacetype: LDAP
    orclodipprofiledebuglevel: 0
    orclodipcondiraccessaccount: deba@<domain>
    orclodipprofilemetric;failure_count: 0
    orclodipattributemappingrules: DomainRules
    dc=test,dc=com:dc=test,dc=com:
    DomainExclusionList
    AttributeRules
    cn:: :container: cn: :orclcontainer:
    dc:: :domain: dc: :domain:
    description:: :group:description: :groupofuniquenames:
    cn:: :group:cn: :groupofuniquenames:
    managedby:: :group:owner: :groupofuniquenames:
    member:: :group:uniquemember: :groupofuniquenames:
    departmentnumber:: :inetorgperson:departmentnumber: :inetorgperson:
    telephonenumber:: :organizationalperson:telephonenumber: :inetorgperson:
    mobile:: :organizationalperson:mobile: :inetorgperson:
    facsimiletelephonenumber:: :organizationalperson:facsimiletelephonenumber: :inetorgperson:
    ou:: :organizationalunit:ou: : organizationalunit:
    cn:: :person:cn: :person:
    cn:: :person:orclsamaccountname: :orcladuser:
    cn:: :person:sn: :person:
    objectguid::binary:top:orclobjectguid:string:top:bin2b64(objectguid)
    distinguishedname:: :top:orclsourceobjectdn: :orcladobject:
    physicaldeliveryofficename:: :user:physicaldeliveryofficename: :organizationalperson:
    title:: :user:title: :organizationalperson:
    employeeid:: :user:employeenumber: :inetorgperson:
    l:: :user:l: :organizationalperson:
    userprincipalname:: :user:mail: :inetorgperson:
    givenname:: :user:displayname: :inetorgperson:
    objectsid::binary:user:orclobjectsid:string:orcladobject:bin2b64(objectsid)
    userprincipalname:: :user:uid: :inetorgperson:userprincipalname
    userprincipalname:: :user:orcluserprincipalname: :orcladuser:userprincipalname
    AttributeExclusionList
    orclodipagentname: ADAM2OID
    orclodipcondirurl: Host:1389
    orclodipschedulinginterval: 60
    orclodipsyncretrycount: 5
    orclodiplastexecutiontime: 20120411132624
    orclodipreconciliationtimeinterval: 0
    orclodipagentcontrol: DISABLE
    orclodipsynchronizationerrors: Agent Execution Successful, Mapping/IMPORT operation Failure
    orclodipbootstrapstatus: NOT APPLICABLE
    orclodipcondirlastappliedchgnum: 0
    orclodipcondiraccesspassword: ******
    orclodipcondirtype: ADAM
    orclodipvalidationerrors: INVALID_ATTRIBUTE_VALUE:orclodipcondirurl:ADAM-AMWAY.persistent.co.in:1389
    orclodipcondirmatchingfilter: searchfilter=(|(objectclass=group)(objectclass=organizationalunit)(&(objectclass=user)(!(objectclass=computer))))
    orclodipoidmatchingfilter: orclObjectGUID
    Need help to get rid of it...
    Please let me know if you have face this issue , and proposed soultion.
    Regards
    Deba

    This is most probably because the defaultNamingContext attribute does not exist i.e. a value has not been set for the msDS-DefaultNamingContext attribute of the ADAM's nTDSDSA object
    Hope this helps,
    Sagar

  • EHP1: Switching to EDIT mode

    Hi experts,
    I was told on a conference that in EHP1 all assignment blocks can be setup to jump into "Edit Mode" when editing the head of an object and vice versa. We upgraded to EHP1 now but this functionality doesn't work for us even if we turn off all enhancements.
    Is there any note to implement for this or such? any help is appreciated.
    Thank you and BR
    Matthias

    Hi Mathias
    Please do the following.
    1). Check in SAPGUI in SU3 if the user parameter CRM_UIU_OLD_UIC is set --> if yes, please remove it
    2). Goto the Personalization of the page and once select RESET TO DEFAULT.
    Regards
    Leon
    Edited by: Leon Limson on Dec 9, 2011 11:17 AM

  • Cancel the edit mode of Table

    I have an editable table in which each row has some mandatory fields. Now i want to give user a flexibility to cancel the editing mode e.g. user enters one or two fields in new row and then he wants to cancel new row. How i can do it? Moreover, i also wants to cancel the update mode i.e. user wants to update a row and while editing, he/she things to cancel it and i want to revert his/her changes for only that particular row

    Add a Cancel button to your panel which has the table. Add the following code to the actionListener of the Cancel button:
      public void onCancel(ActionEvent ae) {
                BindingContext bcx =
                DCUtil.getBindingContext((HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest());
            JUFormBinding bindings = (JUFormBinding)bcx.getCurrentBindingsEntry();
        DCIteratorBinding iterBinding =
                bindings.findIteratorBinding("View1Iterator");
            ViewObject vo = iterBinding.getViewObject();
        Row currentRow = vo.getCurrentRow();   
        currentRow.refresh(Row.REFRESH_REMOVE_NEW_ROWS | Row.REFRESH_WITH_DB_FORGET_CHANGES);
            OperationBinding operationBinding =
                bindings.getOperationBinding("Commit");
            operationBinding.execute();
      }Add this button id to the partialTrigger property of the table.
    Regards,
    ~Krithika

  • How to make a single row as editable in a table view?

    Hello Friends,
    As per the requirement,i have created a new table view with table row level actions. But I am able to achieve the delete functionality. But for edit action, if i lock the corresponding entity also it is not becoming as edit.
    Let me know any ideas to achieve this??
    Thanks in Advance.
    Regards,
    Ravi

    Hi Raviteja,
    In your row level buttons if you want to edit a row you have to fallow this steps..
    1) get the selected record by using index.
    2) get the action mean which action you want to perform ( edit or delete like).
    3) lock the current entity.
    4) get the custom or comp controller instance based on get the current record.
    5) edit the row..
    sample code for this..
    DATA:
         lv_index          TYPE int4,
         lr_current        TYPE REF TO if_bol_bo_property_access,
         lr_entity         TYPE REF TO cl_crm_bol_entity,
         lv_event          TYPE string,
         lv_dummy          TYPE string,
         lr_core           TYPE REF TO cl_crm_bol_core,
         lv_one_click_lock TYPE sysubrc,
         lr_col            TYPE REF TO if_bol_bo_col,
         lr_coco           TYPE REF TO component ctrl class name (impl class),
         lr_cuco           TYPE REF TO custom cntrl class name ( impl.)
       CALL METHOD cl_thtmlb_util=>get_event_info
         EXPORTING
           iv_event = htmlb_event_ex
         IMPORTING
           ev_index = lv_index.
       CHECK lv_index IS NOT INITIAL.
    * Get the current entity
       lr_entity ?= me->typed_context->urcnode->collection_wrapper->find( iv_index = lv_index ).
       CHECK lr_entity IS BOUND.
    * Get the action clicked on
       SPLIT htmlb_event_ex->event_defined AT '.' INTO lv_event lv_dummy.
    * Try to lock the current entity
       lv_one_click_lock = cl_crm_uiu_bt_tools=>set_one_click_lock( me->typed_context->cnode->collection_wrapper ).
       CASE lv_event.
    *   Edit the current Partner
         WHEN 'EDIT'.
           IF lv_one_click_lock <> 2 AND lr_entity->is_send_active( ) = abap_true.
             lr_coco ?= me->comp_controller.
             CHECK lr_coco IS BOUND.
             lr_current = lr_coco->typed_context->cnode->collection_wrapper->find( iv_bo = lr_entity ).
    *       if entity is not yet there: add it to component controller collection
             IF lr_current IS NOT BOUND .
               lr_coco->typed_context->cnode->collection_wrapper->add( lr_entity ).
               lr_current = lr_coco->typed_context->cnode->collection_wrapper->find( iv_bo = lr_entity ).
             ENDIF.
             CHECK lr_current IS BOUND.
             lr_cuco ?= me->get_custom_controller( 'compname/cnameCuCo' ). "#EC NOTEXT
             lr_cuco->typed_context->cnode->on_new_focus( lr_current ).
             me->set_editable( ).
           ENDIF.
    if this is not work then go through this link..
    OCA edit button problem
    Thanks & Regards,
    Srinivask

  • Webauth url redirection fail with firewall between host and switch

    Hi All,
    I noticed some old posts (2012) on this specific issue (thanks Tarik) - this is exactly our problem.  Web auth redirect URL gets dropped if stateful firewall is between webauth host and switch management interface.  Aaron at Cisco live london kinda hinted about maybe Cisco working on this ?  We can't disable stateful inspection
    Is there any other solutions or workarounds ?
    "Although this approach introduces additional hops in the return path from the switch to the host, it produces negligible load on the default router and intervening infrastructure since only the WebAuth traffic from the switch to the host follows this path. In campus designs that do not use SVIs on the data VLAN,6 a default route is typically already configured. In this case, no additional configuration is required to support WebAuth. However, problems may arise in the case in which traffic to the default router is bridged through a stateful firewall. The original SYN packet in the TCP handshake is consumed by the access switch, so the first packet that the firewall sees is the SYN-ACK packet from the access switch. Stateful firewalls typically drop SYN-ACK packets if they have not seen the original SYN packet.
    In this case, you will need to turn off stateful inspection for ports 80 and 443 on the firewall."
    http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6586/ps6638/app_note_c27-577494.html
    Cheers
    Peter.                

    There is  workaround i haven't tested which is available from 15.0 i think, which is the option to create svi's on your access layer switches for the guest/user vlans, without actually enabling routing between them, it sounds weird, but i have been told that this combined is a possible woraround, that will cause the switch to use the svi interfaces when responding with the SYN-ACK, thus not being sent to its ip default-gateway.

  • MSI R9 270x and problems with switching power-saving modes

    hi,I bought this video card but now I began to twitch screen sometimes when switching video card power saving modes
    it all happens in a game, or at the sites but not on the desktop
    how to disable power saving mode so that it always runs at maximum frequency?
    or how to disable Perf Level 0

    Ok, sorry about that.
    Currently seem to have a Grey Screen whenever I boot the desktop with the graphics card installed.
    1. I tried system restore to see if it was a program causing the grey screen, but same problem.
    2. Tried installing the cd version of the AMD drivers same problem.
    3. Installed the latest version of the driver, as well as, beta version same problem.
    4. Removed the graphics card and put it back in booted up, same problem.
    5. Also tried the Molex Cables that came in the box to different power supply on the PSU, same problem.
    PSU:
    Main Board: MSI Z77A-G45
    Bios Version:Version: V2.12, (9/29/2013)
    Video Card Driver Version:13.250.18.0
    Video Card BIOS Version:113-C6310100-X15:
    Video Card: msi R9 270X Hawk
    Video Card S/N: 602-V303-02SB1309098658
    PSU: 650W TX650 V2 PSU 80 PLUS Bronze  
    12v rail Rating of listed PSU: +12V_53A, -12V_0.8A
    CPU: Intel Core i5-3570K CPU @ 3.40GHz, LGA 1155, 77W
    Memory: Corsair Vengeance 16GB (2x8GB) DDR3 1600 MHz (PC3 12800)
    SSD/ HDD: 120GB SSD, 1TB HDD, 150GB HDD
    CPU COOLER: Cooler Master Hyper 212 EVO
    OC:No
    Operating System: Win 8 Pro 64bit

Maybe you are looking for