Similar to vbuk

hi all,
is there any table to get the item level delivery status for a sales order???
Thanks&Regards,
Padma

Hi,
check this link für all Tables in SD.
http://www.erpgenie.com/abap/tables_sd.htm
Give points if usefull.
Blacky.

Similar Messages

  • Where do we control VBUK -CMGST

    Hi Gurus,
    I am presently working on Credit management and work flow.Can anyone help me where can i locate CMGST field in the sales document type.I have checked the table VBUK and was able to find cmgst filed but it is defined as Sales order Administrative data.How to find this field while configuring the sales document type.How do we control it?
    Thanks in advance,
    Ramesh.

    Hi
    The question is that you handle it with ABAP coding (as all things). The relation with ABAP for this issue is in the settings of OVA8. For instance, if you set an static check at OVA8 and you do a debugging session, you can see as this subroutine is called in function module SD_ORDER_CREDIT_CHECK.
    * static check
      IF no_check IS INITIAL AND
         bypass-static_limit IS INITIAL.
        CLEAR rkvbuk-cmpsa.
        IF t691f-cmpaa EQ true
        AND
        ( update      EQ true OR
          t691f-cecki EQ true OR
          t691f-strea CA con_error ).
          PERFORM static_credit_check USING  update
                                             xvbak-kkber
                                             xvbak-knkli
                                             flg_order
                                             flg_delivery
                                       CHANGING
                                         rc_check_a rc_check rc_warning
                                         rc_error rc_status_set
                                         rkvbuk-cmpsa.
        ENDIF.
      ENDIF.
    If the standard methods don't satisfy your requirements you have the option to define them via ABAP in the userexits, as note 1464839 says. For instance, userexit1 (at OVA8) is called here
    * user credit check 1
      IF no_check IS INITIAL AND
         bypass-user1 IS INITIAL.
        CLEAR rkvbuk-cmps0.
        IF t691f-usrpr0 EQ true
        AND
        ( update      EQ true OR
          t691f-cecki EQ true OR
          t691f-usr0rea CA con_error ).
          PERFORM user_credit_check1 USING   update
                                          xvbak-kkber
                                          xvbak-knkli
                                          flg_order
                                          flg_delivery
                                    CHANGING
                                          rc_check_0.
          PERFORM indicators_set USING    update rc_check_0 t691f-usr0set
                                                            t691f-usr0rea
                                 CHANGING rc_check rc_warning
                                          rc_error rc_status_set
                                          rkvbuk-cmps0.
        ENDIF.
      ENDIF.
    and if you do double clic on USER_CREDIT_CHECK1 it goes to LVKMPFZ1. It's a twister reasoning, I agree, but after I have used the userexits is as I remember that it works. Usually to define the userexit other subroutines (for instance include LVKMPF0A for static check is used as a template) are used, always the more similar to the requirements.
    Futhermore, I suggest you to do a debugging session with an ABAPer (if you don't know ABAP), set breakpoints before this FM and after, and check the values for Y* and X* tables (YXBUK and XVBUK) where Y is before modifications and X after.
    I hope that it is understandable and that I understand properly your question, perhaps I'm in a mistake.
    Regards
    Eduardo

  • BAPI_GOODSMVT_CREATE not updating VBUK table and field WBSTA

    Hi all,
    We post good receipt for the inbound delivery using BAPI_GOODSMVT_CREATE. Upon the successful completion of GR, however, field WBSTK & GBSTK in VBUK table and field WBSTA & GBSTA in VBUP table are not getting updated from A to C for the inbound delivery.
    Wondering anybody here has experienced the similar issue before? And so, how to get it fixed without having to switch to a BDC program?
    Thanks,
    Franc

    It seems this BAPI dose not update the VBUK  fields.
    Edited by: Franc on Aug 11, 2008 3:12 PM

  • Relation between vbuk and vbup tables?

    relation between vbuk and vbup tables?
    regards phani

    Dear Phani,
    http://help.sap.com/saphelp_erp2005/helpdata/en/70/a7853478616434e10000009b38f83b/frameset.htm
    VBUK .... Sales Document: Header Status and Administrative Data
    VBUP ....Sales Document: Item Status
    VBUK contains header status where as VBUP contains individual item status of the header. Similar to VBAK and ABAP where VBAK contains Sales Document header data and VBAP contains Sales document item data.
    Hope this will help.
    Regards,
    Naveen.

  • Questions on Merging Dis-similar Data Types...

    I am using Web-I version 11.5.8.834 (We do not use the Crystal Reports module, all of our reports are built with Web-I).
    I have two questions:
    Question 1: First I am attempting to create a report from two different universes and need to merge a dimension from each universe.  The two dimensions have similar data, but one is set up as a "string", and the other universe has the same data set up as a "number".  Our IT department creates and maintains the universes and I have requested that one of the dimension data type be changed to match the other, but I am told that other users have already set up reports using these dimensions and to change them at this point might cause a problem with their reports.  So my first question is: Can two separate dimensions be setup within a single universe, using the same data field, each having different data types (e.g., a field with numeric data be set up as a "string" and a second dimension be setup as a "number")?  If this works, I can make a recommendation to our IT department to do this and I will not have to resort to Question 2.  but just in case, here is Question 2:
    Question 2: I have two other dimensions that I might be able to use, but it requires creating a variable and "trimming" data off of each of the fields.  The first universe is a part number with three alpha characters followed by four numeric characters (PRT1234).  The second universe has a serial number, in which the first four characters match the last four characters of the other universe (1234-00111).  If I trim off the first three characters from the first universe using a variable (=right([Part_Number];4), and trim off the last six characters from the second universe using a variable (=left([Serial_Number],4), the variables will have matching data.  The second question is: Can variables be merged?  I've tried, but it isn't working so far.  If so, can someone give me some hints on how to do it?
    Edited by: Charles Norman on Aug 8, 2008 11:42 AM
    Edited by: Charles Norman on Aug 8, 2008 11:43 AM

    Charles,
    Can variables be merged?
    No, local variables cannot be merged.  The manipulation must be performed at the database level via Designer before the data comes across to the report.  As an aside, your IT deparatment can create "new" objects just for you, placed in the list under a separate sub-class that manipulates the data to your liking and will not upset other users who already built reports using the original columns of data.  I guess my point is that you can have multiple objects placed in your universe that derive from the same column in a given table -- user A has it per their flavor and user B has it per his flavor.
    Thanks,
    John

  • I have a question that I think I know the answer to, but am looking for confirmation.  I have a dell computer at home that has clip art available on it for putting pictures into documents.  Do I need to install an APP to get something similar to clip art?

    I have a question that I think I know the answer to, but am looking for confirmation.  I have a desktop computer at home that has clip art loaded onto it.  I recently got an iPad and am looking for something similar.  I assume I need to get an APP for it, and if that is correct, does anyone have one that they like?

    Sort of.  There is an app called art shop that gives you a place to park clip art.   But I don't think you really need it. 
    If you have a collection of clip art you want available, move it to the camera roll on your pad/ phone, then copy paste into your document the clip you want.
    You can get them into the camaera roll by putting them in a single event in your picture library and syncing them over,  or e mail them to your self, and save to the camera roll, or send them to drop box, and bring them down that way.
    The challenge is getting them all in one place to make it easy for you to find, which is why syncing might be the best approach in the long run.
    As near as I can tell there is not a ready made clip art collection in app format laying around.

  • Command similar to protect..endprotect in abap

    Hi All
            Is there any command similar to protect endprotect in abap list output so that salutation doesn't fragment over next page.
    or any other logic that one can use for same?
    For e.g.,
    THANKING YOU
    FOR XYZ COMPANY LTD,
    AUTHORIZED SIGNATORY.
    Regards
    Babita

    hi babita , try to use Reserve Key word for tht .
    Here is the standard help on tht  -
    Basic form
    RESERVE n LINES.
    Effect
    If there is not enough space left on the current page for at least n lines, this statement starts a new page. n can be a constant (1,2,3,...) or a variable.
    Notes
    Before starting a new page, the END-OF-PAGE processing is executed. This differs from NEW-PAGE.
    If the RESERVE statement does not trigger a new page, output is continued on the current page.
    Use BACK to return to the first line output after RESERVE.
    Note
    Performance:
    The runtime required to execute a RESERVE statement is approx. 1 msn (standardized microseconds).
    hope this will help.
    amit

  • CBO generating different plans for the same data in similar Environments

    Hi All
    I have been trying to compare an SQL from 2 different but similar environments build of the same hardware specs .The issue I am facing is environment A, the query executes in less than 2 minutes with plan mostly showing full table scans and hash join whereas in environment B(problematic), it times out after 2 hours with an error of unable to extend table space . The statistics are up to date in both environments for both tables and indexes . System parameters are exactly similar(default oracle for except for multiblock_read_count ).
    Both Environment have same db parameter for db_file_multiblock_read_count(16), optimizer(refer below),hash_area_size (131072),pga_aggregate_target(1G),db_block_size(8192) etc . SREADTIM, MREADTIM, CPUSPEED, MBRC are all null in aux_stats in both environment because workload was never collected i believe.
    Attached is details about the SQL with table stats, SQL and index stats my main concern is CBO generating different plans for the similar data and statistics and same hardware and software specs. Is there any thing else I should consider .I generally see environment B being very slow and always plans tend to nested loops and index scan whereas what we really need is a sensible FTS in many cases. One of the very surprising thing is METER_CONFIG_HEADER below which has just 80 blocks of data is being asked for index scan.
    show parameter optimizer
    optimizer_dynamic_sampling integer 2
    optimizer_features_enable string 10.2.0.4
    optimizer_index_caching integer 0
    optimizer_index_cost_adj integer 100
    optimizer_mode string ALL_ROWS
    optimizer_secure_view_merging boolean TRUE
    **Environment**
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    Note: : There are slight difference in the no of records in the attached sheet.However, I wanted to tell that i have tested with exact same data and was getting similar results but I couldn't retain the data untill collecting the details in the attachment
    TEST1     COMPARE TABLE LEVE STATS  used by CBO          
    ENVIRONMENT A
    TABLE_NAME     NUM_ROWS     BLOCKS     LAST_ANALYZED
    ASSET     3607425     167760     5/02/2013 22:11
    METER_CONFIG_HEADER     3658     80     5/01/2013 0:07
    METER_CONFIG_ITEM     32310     496     5/01/2013 0:07
    NMI     1899024     33557     18/02/2013 10:55
    REGISTER     4830153     101504     18/02/2013 9:57
    SDP_LOGICAL_ASSET     1607456     19137     18/02/2013 15:48
    SDP_LOGICAL_REGISTER     5110781     78691     18/02/2013 9:56
    SERVICE_DELIVERY_POINT     1425890     42468     18/02/2013 13:54
    ENVIRONMENT B
    TABLE_NAME     NUM_ROWS     BLOCKS     LAST_ANALYZED
    ASSET     4133939     198570     16/02/2013 10:02
    METER_CONFIG_HEADER     3779     80     16/02/2013 10:55
    METER_CONFIG_ITEM     33720     510     16/02/2013 10:55
    NMI     1969000     33113     16/02/2013 10:58
    REGISTER     5837874     120104     16/02/2013 11:05
    SDP_LOGICAL_ASSET     1788152     22325     16/02/2013 11:06
    SDP_LOGICAL_REGISTER     6101934     91088     16/02/2013 11:07
    SERVICE_DELIVERY_POINT     1447589     43804     16/02/2013 11:11
    TEST ITEM 2     COMPARE INDEX STATS  used by CBO          
    ENVIRONMENT A
    TABLE_NAME     INDEX_NAME     UNIQUENESS     BLEVEL     LEAF_BLOCKS     DISTINCT_KEYS     AVG_LEAF_BLOCKS_PER_KEY     AVG_DATA_BLOCKS_PER_KEY     CLUSTERING_FACTOR     NUM_ROWS
    ASSET     IDX_AST_DEVICE_CATEGORY_SK     NONUNIQUE     2     9878     67     147     12982     869801     3553095
    ASSET     IDX_A_SAPINTLOGDEV_SK     NONUNIQUE     2     7291     2747     2     639     1755977     3597916
    ASSET     SYS_C00102592     UNIQUE     2     12488     3733831     1     1     3726639     3733831
    METER_CONFIG_HEADER     SYS_C0092052     UNIQUE     1     12     3670     1     1     3590     3670
    METER_CONFIG_ITEM     SYS_C0092074     UNIQUE     1     104     32310     1     1     32132     32310
    NMI     IDX_NMI_ID     NONUNIQUE     2     6298     844853     1     2     1964769     1965029
    NMI     IDX_NMI_ID_NK     NONUNIQUE     2     6701     1923072     1     1     1922831     1923084
    NMI     IDX_NMI_STATS     NONUNIQUE     1     106     4     26     52     211     211
    REGISTER     REG_EFFECTIVE_DTM     NONUNIQUE     2     12498     795     15     2899     2304831     4711808
    REGISTER     SYS_C00102653     UNIQUE     2     16942     5065660     1     1     5056855     5065660
    SDP_LOGICAL_ASSET     IDX_SLA_SAPINTLOGDEV_SK     NONUNIQUE     2     3667     1607968     1     1     1607689     1607982
    SDP_LOGICAL_ASSET     IDX_SLA_SDP_SK     NONUNIQUE     2     3811     668727     1     2     1606204     1607982
    SDP_LOGICAL_ASSET     SYS_C00102665     UNIQUE     2     5116     1529606     1     1     1528136     1529606
    SDP_LOGICAL_REGISTER     SYS_C00102677     UNIQUE     2     17370     5193638     1     1     5193623     5193638
    SERVICE_DELIVERY_POINT     IDX_SDP_NMI_SK     NONUNIQUE     2     4406     676523     1     2     1423247     1425890
    SERVICE_DELIVERY_POINT     IDX_SDP_SAP_INT_NMI_SK     NONUNIQUE     2     7374     676523     1     2     1458238     1461108
    SERVICE_DELIVERY_POINT     SYS_C00102687     UNIQUE     2     4737     1416207     1     1     1415022     1416207
    ENVIRONMENT B
    TABLE_NAME     INDEX_NAME     UNIQUENESS     BLEVEL     LEAF_BLOCKS     DISTINCT_KEYS     AVG_LEAF_BLOCKS_PER_KEY     AVG_DATA_BLOCKS_PER_KEY     CLUSTERING_FACTOR     NUM_ROWS
    ASSET     IDX_AST_DEVICE_CATEGORY_SK     NONUNIQUE     2     8606     121     71     16428     1987833     4162257
    ASSET     IDX_A_SAPINTLOGDEV_SK     NONUNIQUE     2     8432     1780146     1     1     2048170     4162257
    ASSET     SYS_C00116157     UNIQUE     2     13597     4162263     1     1     4158759     4162263
    METER_CONFIG_HEADER     SYS_C00116570     UNIQUE     1     12     3779     1     1     3734     3779
    METER_CONFIG_ITEM     SYS_C00116592     UNIQUE     1     107     33720     1     1     33459     33720
    NMI     IDX_NMI_ID     NONUNIQUE     2     6319     683370     1     2     1970460     1971313
    NMI     IDX_NMI_ID_NK     NONUNIQUE     2     6597     1971293     1     1     1970771     1971313
    NMI     IDX_NMI_STATS     NONUNIQUE     1     98     48     2     4     196     196
    REGISTER     REG_EFFECTIVE_DTM     NONUNIQUE     2     15615     1273     12     2109     2685924     5886582
    REGISTER     SYS_C00116748     UNIQUE     2     19533     5886582     1     1     5845565     5886582
    SDP_LOGICAL_ASSET     IDX_SLA_SAPINTLOGDEV_SK     NONUNIQUE     2     4111     1795084     1     1     1758441     1795130
    SDP_LOGICAL_ASSET     IDX_SLA_SDP_SK     NONUNIQUE     2     4003     674249     1     2     1787987     1795130
    SDP_LOGICAL_ASSET     SYS_C004520     UNIQUE     2     5864     1795130     1     1     1782147     1795130
    SDP_LOGICAL_REGISTER     SYS_C004539     UNIQUE     2     20413     6152850     1     1     6073059     6152850
    SERVICE_DELIVERY_POINT     IDX_SDP_NMI_SK     NONUNIQUE     2     3227     660649     1     2     1422572     1447803
    SERVICE_DELIVERY_POINT     IDX_SDP_SAP_INT_NMI_SK     NONUNIQUE     2     6399     646257     1     2     1346948     1349993
    SERVICE_DELIVERY_POINT     SYS_C00128706     UNIQUE     2     4643     1447946     1     1     1442796     1447946
    TEST ITEM 3     COMPARE PLANS     
    ENVIRONMENT A
    Plan hash value: 4109575732                                             
    | Id  | Operation                       | Name                   | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |                                             
    |   0 | SELECT STATEMENT                |                        |    13 |  2067 |       |   135K  (2)| 00:27:05 |                                             
    |   1 |  HASH UNIQUE                    |                        |    13 |  2067 |       |   135K  (2)| 00:27:05 |                                             
    |*  2 |   HASH JOIN                     |                        |    13 |  2067 |       |   135K  (2)| 00:27:05 |                                             
    |*  3 |    HASH JOIN                    |                        |     6 |   900 |       |   135K  (2)| 00:27:04 |                                             
    |*  4 |     HASH JOIN ANTI              |                        |     1 |   137 |       |   135K  (2)| 00:27:03 |                                             
    |*  5 |      TABLE ACCESS BY INDEX ROWID| NMI                    |     1 |    22 |       |     5   (0)| 00:00:01 |                                             
    |   6 |       NESTED LOOPS              |                        |     1 |   131 |       | 95137   (2)| 00:19:02 |                                             
    |*  7 |        HASH JOIN                |                        |     1 |   109 |       | 95132   (2)| 00:19:02 |                                             
    |*  8 |         TABLE ACCESS FULL       | ASSET                  | 36074 |  1021K|       | 38553   (2)| 00:07:43 |                                             
    |*  9 |         HASH JOIN               |                        | 90361 |  7059K|  4040K| 56578   (2)| 00:11:19 |                                             
    |* 10 |          HASH JOIN              |                        | 52977 |  3414K|  2248K| 50654   (2)| 00:10:08 |                                             
    |* 11 |           HASH JOIN             |                        | 39674 |  1782K|       | 40101   (2)| 00:08:02 |                                             
    |* 12 |            TABLE ACCESS FULL    | REGISTER               | 39439 |  1232K|       | 22584   (2)| 00:04:32 |                                             
    |* 13 |            TABLE ACCESS FULL    | SDP_LOGICAL_REGISTER   |  4206K|    56M|       | 17490   (2)| 00:03:30 |                                             
    |* 14 |           TABLE ACCESS FULL     | SERVICE_DELIVERY_POINT |   675K|    12M|       |  9412   (2)| 00:01:53 |                                             
    |* 15 |          TABLE ACCESS FULL      | SDP_LOGICAL_ASSET      |  1178K|    15M|       |  4262   (2)| 00:00:52 |                                             
    |* 16 |        INDEX RANGE SCAN         | IDX_NMI_ID_NK          |     2 |       |       |     2   (0)| 00:00:01 |                                             
    |  17 |      VIEW                       |                        | 39674 |   232K|       | 40101   (2)| 00:08:02 |                                             
    |* 18 |       HASH JOIN                 |                        | 39674 |  1046K|       | 40101   (2)| 00:08:02 |                                             
    |* 19 |        TABLE ACCESS FULL        | REGISTER               | 39439 |   500K|       | 22584   (2)| 00:04:32 |                                             
    |* 20 |        TABLE ACCESS FULL        | SDP_LOGICAL_REGISTER   |  4206K|    56M|       | 17490   (2)| 00:03:30 |                                             
    |* 21 |     TABLE ACCESS FULL           | METER_CONFIG_HEADER    |  3658 | 47554 |       |    19   (0)| 00:00:01 |                                             
    |* 22 |    TABLE ACCESS FULL            | METER_CONFIG_ITEM      |  7590 | 68310 |       |   112   (2)| 00:00:02 |                                             
    Predicate Information (identified by operation id):                                             
       2 - access("METER_CONFIG_HEADER_SK"="METER_CONFIG_HEADER_SK")                                             
       3 - access("NETWORK_TARIFF_CD"="NETWORK_TARIFF_CD")                                             
       4 - access("SERVICE_DELIVERY_POINT_SK"="TMP"."SERVICE_DELIVERY_POINT_SK")                                             
       5 - filter("ROW_CURRENT_IND"='Y' AND ("NMI_STATUS_CD"='A' OR "NMI_STATUS_CD"='D'))                                             
       7 - access("ASSET_CD"="EQUIP_CD" AND "SAP_INT_LOG_DEVICE_SK"="SAP_INT_LOG_DEVICE_SK")                                             
       8 - filter("ROW_CURRENT_IND"='Y')                                             
       9 - access("SERVICE_DELIVERY_POINT_SK"="SERVICE_DELIVERY_POINT_SK")                                             
      10 - access("SERVICE_DELIVERY_POINT_SK"="SERVICE_DELIVERY_POINT_SK")                                             
      11 - access("SAP_INT_LOGICAL_REGISTER_SK"="SAP_INT_LOGICAL_REGISTER_SK")                                             
      12 - filter("REGISTER_TYPE_CD"='C' AND (SUBSTR("REGISTER_ID_CD",1,1)='4' OR                                              
                  SUBSTR("REGISTER_ID_CD",1,1)='5' OR SUBSTR("REGISTER_ID_CD",1,1)='6') AND "ROW_CURRENT_IND"='Y')                                             
      13 - filter("ROW_CURRENT_IND"='Y')                                             
      14 - filter("ROW_CURRENT_IND"='Y')                                             
      15 - filter("ROW_CURRENT_IND"='Y')                                             
      16 - access("NMI_SK"="NMI_SK")                                             
      18 - access("SAP_INT_LOGICAL_REGISTER_SK"="SAP_INT_LOGICAL_REGISTER_SK")                                             
      19 - filter("REGISTER_TYPE_CD"='C' AND (SUBSTR("REGISTER_ID_CD",1,1)='1' OR                                              
                  SUBSTR("REGISTER_ID_CD",1,1)='2' OR SUBSTR("REGISTER_ID_CD",1,1)='3') AND "ROW_CURRENT_IND"='Y')                                             
      20 - filter("ROW_CURRENT_IND"='Y')                                             
      21 - filter("ROW_CURRENT_IND"='Y')                                             
      22 - filter("ROW_CURRENT_IND"='Y' AND "CONROL_REGISTER"='X')                                             
    ENVIRONMENT B
    Plan hash value: 2826260434                                   
    | Id  | Operation                            | Name                   | Rows  | Bytes | Cost (%CPU)| Time     |                                   
    |   0 | SELECT STATEMENT                     |                        |     1 |   181 |   103K  (2)| 00:20:47 |                                   
    |   1 |  HASH UNIQUE                         |                        |     1 |   181 |   103K  (2)| 00:20:47 |                                   
    |*  2 |   HASH JOIN ANTI                     |                        |     1 |   181 |   103K  (2)| 00:20:47 |                                   
    |*  3 |    HASH JOIN                         |                        |     1 |   176 | 56855   (2)| 00:11:23 |                                   
    |*  4 |     HASH JOIN                        |                        |     1 |   163 | 36577   (2)| 00:07:19 |                                   
    |*  5 |      TABLE ACCESS BY INDEX ROWID     | ASSET                  |     1 |    44 |     4   (0)| 00:00:01 |                                   
    |   6 |       NESTED LOOPS                   |                        |     1 |   131 |  9834   (2)| 00:01:59 |                                   
    |   7 |        NESTED LOOPS                  |                        |     1 |    87 |  9830   (2)| 00:01:58 |                                   
    |   8 |         NESTED LOOPS                 |                        |     1 |    74 |  9825   (2)| 00:01:58 |                                   
    |*  9 |          HASH JOIN                   |                        |     1 |    52 |  9820   (2)| 00:01:58 |                                   
    |* 10 |           TABLE ACCESS BY INDEX ROWID| METER_CONFIG_HEADER    |     1 |    14 |     1   (0)| 00:00:01 |                                   
    |  11 |            NESTED LOOPS              |                        |     1 |    33 |   116   (2)| 00:00:02 |                                   
    |* 12 |             TABLE ACCESS FULL        | METER_CONFIG_ITEM      |     1 |    19 |   115   (2)| 00:00:02 |                                   
    |* 13 |             INDEX RANGE SCAN         | SYS_C00116570          |     1 |       |     1   (0)| 00:00:01 |                                   
    |* 14 |           TABLE ACCESS FULL          | SERVICE_DELIVERY_POINT |   723K|    13M|  9699   (2)| 00:01:57 |                                   
    |* 15 |          TABLE ACCESS BY INDEX ROWID | NMI                    |     1 |    22 |     5   (0)| 00:00:01 |                                   
    |* 16 |           INDEX RANGE SCAN           | IDX_NMI_ID_NK          |     2 |       |     2   (0)| 00:00:01 |                                   
    |* 17 |         TABLE ACCESS BY INDEX ROWID  | SDP_LOGICAL_ASSET      |     1 |    13 |     5   (0)| 00:00:01 |                                   
    |* 18 |          INDEX RANGE SCAN            | IDX_SLA_SDP_SK         |     2 |       |     2   (0)| 00:00:01 |                                   
    |* 19 |        INDEX RANGE SCAN              | IDX_A_SAPINTLOGDEV_SK  |     2 |       |     2   (0)| 00:00:01 |                                   
    |* 20 |      TABLE ACCESS FULL               | REGISTER               | 76113 |  2378K| 26743   (2)| 00:05:21 |                                   
    |* 21 |     TABLE ACCESS FULL                | SDP_LOGICAL_REGISTER   |  5095K|    63M| 20245   (2)| 00:04:03 |                                   
    |  22 |    VIEW                              |                        | 90889 |   443K| 47021   (2)| 00:09:25 |                                   
    |* 23 |     HASH JOIN                        |                        | 90889 |  2307K| 47021   (2)| 00:09:25 |                                   
    |* 24 |      TABLE ACCESS FULL               | REGISTER               | 76113 |   966K| 26743   (2)| 00:05:21 |                                   
    |* 25 |      TABLE ACCESS FULL               | SDP_LOGICAL_REGISTER   |  5095K|    63M| 20245   (2)| 00:04:03 |                                   
    Predicate Information (identified by operation id):                                   
       2 - access("SERVICE_DELIVERY_POINT_SK"="TMP"."SERVICE_DELIVERY_POINT_SK")                                   
       3 - access("SERVICE_DELIVERY_POINT_SK"="SERVICE_DELIVERY_POINT_SK" AND                                    
                  "SAP_INT_LOGICAL_REGISTER_SK"="SAP_INT_LOGICAL_REGISTER_SK")                                   
       4 - access("ASSET_CD"="EQUIP_CD")                                   
       5 - filter("ROW_CURRENT_IND"='Y')                                   
       9 - access("NETWORK_TARIFF_CD"="NETWORK_TARIFF_CD")                                   
      10 - filter("ROW_CURRENT_IND"='Y')                                   
      12 - filter("ROW_CURRENT_IND"='Y' AND "CONROL_REGISTER"='X')                                   
      13 - access("METER_CONFIG_HEADER_SK"="METER_CONFIG_HEADER_SK")                                   
      14 - filter("ROW_CURRENT_IND"='Y')                                   
      15 - filter("ROW_CURRENT_IND"='Y' AND ("NMI_STATUS_CD"='A' OR "NMI_STATUS_CD"='D'))                                   
      16 - access("NMI_SK"="NMI_SK")                                   
      17 - filter("ROW_CURRENT_IND"='Y')                                   
      18 - access("SERVICE_DELIVERY_POINT_SK"="SERVICE_DELIVERY_POINT_SK")                                   
      19 - access("SAP_INT_LOG_DEVICE_SK"="SAP_INT_LOG_DEVICE_SK")                                   
      20 - filter((SUBSTR("REGISTER_ID_CD",1,1)='4' OR SUBSTR("REGISTER_ID_CD",1,1)='5' OR                                    
                  SUBSTR("REGISTER_ID_CD",1,1)='6') AND "REGISTER_TYPE_CD"='C' AND "ROW_CURRENT_IND"='Y')                                   
      21 - filter("ROW_CURRENT_IND"='Y')                                   
      23 - access("SAP_INT_LOGICAL_REGISTER_SK"="SAP_INT_LOGICAL_REGISTER_SK")                                   
      24 - filter((SUBSTR("REGISTER_ID_CD",1,1)='1' OR SUBSTR("REGISTER_ID_CD",1,1)='2' OR                                    
                  SUBSTR("REGISTER_ID_CD",1,1)='3') AND "REGISTER_TYPE_CD"='C' AND "ROW_CURRENT_IND"='Y')                                   
      25 - filter("ROW_CURRENT_IND"='Y')Edited by: abhilash173 on Feb 24, 2013 9:16 PM
    Edited by: abhilash173 on Feb 24, 2013 9:18 PM

    Hi Paul,
    I misread your question initially .The system stats are outdated in both ( same result as seen from aux_stats) .I am not a DBA and do not have access to gather system stats fresh.
    select * from sys.aux_stats$
    SNAME     PNAME     PVAL1     PVAL2
    SYSSTATS_INFO     STATUS     NULL     COMPLETED
    SYSSTATS_INFO     DSTART     NULL     02-16-2011 15:24
    SYSSTATS_INFO     DSTOP     NULL     02-16-2011 15:24
    SYSSTATS_INFO     FLAGS     1     NULL
    SYSSTATS_MAIN     CPUSPEEDNW     1321.20523     NULL
    SYSSTATS_MAIN     IOSEEKTIM     10     NULL
    SYSSTATS_MAIN     IOTFRSPEED     4096     NULL
    SYSSTATS_MAIN     SREADTIM     NULL     NULL
    SYSSTATS_MAIN     MREADTIM     NULL     NULL
    SYSSTATS_MAIN     CPUSPEED     NULL     NULL
    SYSSTATS_MAIN     MBRC     NULL     NULL
    SYSSTATS_MAIN     MAXTHR     NULL     NULL
    SYSSTATS_MAIN     SLAVETHR     NULL     NULL

  • Problemas com o CURSOR_SHARING = SIMILAR

    Olá,
    Sou DBA de uma empresa que utiliza o Oracle 10G, e recentemente realizei uma alteração (para efeito de teste) do parâmetro CURSOR_SHARING. Alterei ele do seu valor default "EXACT" para o valor "SIMILAR".
    Com a alteração, a taxa de hard parse diminuiu, e obtive um alto índice de reuso de query (ou scripts de modo geral).
    Os testes estavam indo bem, quando és que surge uma consulta semelhante a seguinte:
    select 'teste' as campo, 'Y' as tipo from dual
    union
    select 'teste1', 'N' from dual;
    Com o parâmetro alterado, essa consulta foi interpretada como:
    select '"SYS_B_0"' as campo, '"SYS_B_1"' as tipo from dual
    union
    select '"SYS_B_2"' as campo, '"SYS_B_3"' as tipo from dual;
    Até então, tudo ocorreu conforme esperado, porém na aplicação que faz uso dessa base existia um teste:
    <%
    'Código ASP
    if cstr(rs.fields("tipo")) = "Y" then
    << fazer algo >>
    else
    << fazer algo >>
    end if
    %>
    Mesmo quando o retorno da consulta era = "Y", nunca entre no if (e eu testei a consulta e ela realmente retornava Y).
    Quando fui verificar o retorno pela aplicação, o campo "tipo" retornava "Y ¢¥¥├ò", ou seja, com um lixo após o valor.
    Rodei a mesma consulta pelo sqlplus, e realmente o valor do retorno era apenas "Y".
    Tentei alterar o provider da string de conexão do banco para ver se era esse o problema, mas o mesmo persistiu. O Oracle Client no servidor da aplicação é o 10G.
    Não consegui entender o erro, e em todas as documentações e livros que pesquisei, os problemas oriundos da alteração desse parâmetro acarreta apenas em queda de performance (devido a por exemplo reutilizar um plano NÃO otimizado para uma consulta).
    Esse problema inviabilizou a alteração que se comportara muito bem em outros aspectos.
    Entendo que quando pensamos em reuso através de bind variables, associamos apenas à alterações dos parâmetros na seleção dos dados e não na projeção como é o caso citado.
    Alguém tem alguma ideia sobre o que pode ser e se tem alguma alteração que possa ser feita para conseguir o ganho da performance dos "soft parses"?
    Grato desde já.

    Hi,
    I'm a DBA for a company that uses Oracle 10G (release 10.2.0.3), and recently realized a change (for the purpose of testing) on parameter CURSOR_SHARING. I changed it to value "SIMILAR".
    With the change, the rate decreased hard parse, and got a high degree of reuse of query (and scripts in general).
    The tests were going well, when the query below arose:
    select 'test' as campo, 'Y' as tipo from dual
    union
    select 'test1', 'N' from dual;
    With the changed parameter, this query was interpreted as:
    select '"SYS_B_0"' as campo, '"SYS_B_1"' as tipo from dual
    union
    select '"SYS_B_2"', '"SYS_B_3"' from dual;
    Until then, everything went as expected, but the application that uses the database has a test:
    <%
    'ASP code
    if CStr (rs.Fields ("tipo")) = "Y" then
    << something >>
    else
    << something >>
    end if
    %>
    Even when the query was returning = "Y", never executed the if clause (and I tested the query and it really returned "Y").
    When I check the return by the application, the field "tipo" returned "Y ¢ ¥ ò ¥ ├", with a dirty code after.
    I execute the same query through sqlplus, and really the value of the return was only "Y".
    I tried changing the provider in the string connection of the database to see if that was the problem, but it persisted. The Oracle Client on the application server is 10G.
    I could not understand the error, and all documentations and books I researched, the problems arising from the change of this parameter causes only drop in performance (eg due to reuse a NOT optimized plan for a query).
    This problem prevented the change that had behaved very well in other respects.
    I understand that when we think of reuse through bind variables, only associate the changes of the parameters in the selection of the data and not in the projection as in the case cited.
    Anyone have any idea about what can be and if you have any changes that may be made to achieve the performance gain of the "soft parses"?
    Thankful now.
    <<< Sorry for my english >>>

  • Unable to retrieve data in VBUK

    Hi Experts,
    We're in an upgrade project. Now, we have this scenario where there is a data in standard table VBUK using filter as VBELN but we cannot retrieve in the program without the leading zeros.
    Here's the scenario:
    eg. in our program we have this statement:
      SELECT SINGLE * FROM VBUK INTO BF_VBUKVB WHERE VBELN = I_VBELN.
    I_VBELN = 40000467 and this document number has an entry in VBUK but the data was not retrieve by the statement above as I_VBELN must have leading  zeros (it should be 0040000467). And the problem is I can't code my Conversion for leading zeros as it is a standard program.
    Now, I want to ask if there is an OSS note for this.
    Thanks and Regards,
    Drans

    Dranreb Cardosa wrote:
    > eg. in our program we have this statement:
    And the problem is I can't code my Conversion for leading zeros as it is a standard program.
    Hi Dranreb Cardosa,
    yes there is an OSS note. SAP Note 1484771 publishes a list of frequently asked questions that relate to the installation or upgrade.
    I think this matches exactly your program.
    Regards,
    Clemens

  • B2B, multiple customers, and 'similar apps' limitations?

    Hey Folks,
      I have an app that is currently distributed via the B2B store. We have another customer coming online and we also want to distribute to them via the B2B store. There are a couple of concerns though. First, the two seperate companies will have different connection settings and different branding. Second, the iOS app has server dependencies, so a client can not upgrade until their company's server is upgraded. And both customers have different testing cycles and lead times. So having a single B2B app isn't going to fit our needs well.
    In the past we have worked around the issue for testing by working with our first customer directly. They have an IT staff and enrolled in the Enterprise program, so we can send them the code base and they can build and distribute it to their testing team. Our next company (and likely many of the others to follow) don't have nearly as robust IT staffs and won't be able to manage building and distributing the app internally.
    Our thought then, was to create 2 seperate B2B apps for each customer. So we could publish a test version (tied to the server/version of their testing environment) and a production version. This gives us complete control over when each customer takes a new version of the iOS application into testing or production. It gives us the ability to ensure that their servers are on the correct version and that the environments are good to go. Along with managing the branding and other customer-specific aspects of the application.
    The concern though, is that with even just a pair of customers, we will have 4 copies of our application that are almost identical. Will this run afoul of the 'similar apps' rule? Is there another option? Are there better ways? Anyone else run into something like this before?
    Thanks,
    -Rick

    Hey Folks,
      I have an app that is currently distributed via the B2B store. We have another customer coming online and we also want to distribute to them via the B2B store. There are a couple of concerns though. First, the two seperate companies will have different connection settings and different branding. Second, the iOS app has server dependencies, so a client can not upgrade until their company's server is upgraded. And both customers have different testing cycles and lead times. So having a single B2B app isn't going to fit our needs well.
    In the past we have worked around the issue for testing by working with our first customer directly. They have an IT staff and enrolled in the Enterprise program, so we can send them the code base and they can build and distribute it to their testing team. Our next company (and likely many of the others to follow) don't have nearly as robust IT staffs and won't be able to manage building and distributing the app internally.
    Our thought then, was to create 2 seperate B2B apps for each customer. So we could publish a test version (tied to the server/version of their testing environment) and a production version. This gives us complete control over when each customer takes a new version of the iOS application into testing or production. It gives us the ability to ensure that their servers are on the correct version and that the environments are good to go. Along with managing the branding and other customer-specific aspects of the application.
    The concern though, is that with even just a pair of customers, we will have 4 copies of our application that are almost identical. Will this run afoul of the 'similar apps' rule? Is there another option? Are there better ways? Anyone else run into something like this before?
    Thanks,
    -Rick

  • My iphone doesnt show up in my itunes. It shows up when i plug it into another laptop. Similarly, when i use someone else's iphone, that shows up in my itunes. Obviously my itunes wont recognise my iphone. Please help

    My iphone doesnt show up in my itunes. It shows up when i plug it into another laptop. Similarly, when i use someone else's iphone, that shows up in my itunes. Obviously my itunes wont recognise my iphone. Please help

    Hello ashbyy123,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    2. Check the USB cable
    3. Verify that Apple Mobile Device Support is installed
    4. Restart the Apple Mobile Device Service
    5. Verify that the Apple Mobile Device USB Driver is installed
    6. Check for third-party software conflicts
    Have a nice day,
    Mario

  • Folder similar to Res folder in OBIEE 11g

    Hi
    There is res folder in OBIEE 10g in OracleBI/web/app which acts as the source for all images on dashboards. Similar to res folder in OBIEE 10g, what is the respective folder in OBIEE 11g that acts as the source for all images on the dashboards. Please, also mention the location of the folder in OBIEE 11g.
    Thanks.

    Hi,
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
    Thanks,
    Balaa...

  • Re: I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I am having similar problems here is my etrecheck:
    EtreCheck version: 1.9.15 (52)
    Report generated September 18, 2014 10:54:44 PM EDT
    Hardware Information: ?
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 4000 - VRAM: 512 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.8.5 (12F45) - Uptime: 0 days 4:57:11
    Disk Information: ?
      APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      disk0s1 (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 499.25 GB (472.13 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information: ?
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Problem System Launch Daemons: ?
      [failed] com.apple.coresymbolicationd.plist
    Problem System Launch Agents: ?
      [failed] com.apple.accountsd.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
    Launch Daemons: ?
      [failed] com.adobe.fpsaud.plist Support
      [running] com.fitbit.galileod.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.prosofteng.DriveGenius.locum.plist Support
    User Launch Agents: ?
      [loaded] com.google.keystone.agent.plist Support
      [running] com.prosofteng.DGMonitor.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ?
      Spotify
      Fitbit Connect Menubar Helper
      Google Chrome
    Internet Plug-ins: ?
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.1
      JavaAppletPlugin: Version: 14.6.0 - SDK 10.8 Check version
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
    Safari Extensions: ?
      Searchme
      Amazon Shopping Assistant
      Ebay Shopping Assistant
      Slick Savings
    Audio Plug-ins: ?
      AirPlay: Version: 1.7 - SDK 10.8
      iSightAudio: Version: 7.7.1 - SDK 10.8
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.8
    3rd Party Preference Panes: ?
      Flash Player  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          17% mds
          5% Google Chrome
          2% Google Chrome Helper EH
          1% WindowServer
          0% ps
    Top Processes by Memory: ?
      209 MB Google Chrome Helper EH
      160 MB Google Chrome
      89 MB Google Chrome Helper
      63 MB mds
      57 MB Dock
    Virtual Memory Information: ?
      301 MB Free RAM
      1.87 GB Active RAM
      640 MB Inactive RAM
      1.21 GB Wired RAM
      2.95 GB Page-ins
      52 KB Page-outs

    Here are some of the results from console:
    9/19/14 11:12:45.808 AM UserEventAgent[11]: Captive: en1: Not probing 'busecure' (protected network)
    9/19/14 11:12:45.811 AM configd[16]: network changed: v4(en1!:149.125.79.239) DNS Proxy SMB
    9/19/14 11:12:46.168 AM netbiosd[233]: name servers down?
    9/19/14 11:31:11.536 AM spindump[937]: Google Chrome [285] timed out, and it's responsive
    9/19/14 11:33:30.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=946[GoogleSoftwareUp] clearing CS_VALID
    9/19/14 11:47:00.954 AM mdwrite[962]: [ERROR] [0.000s] com.apple. UBItemStatusNotification.c:805 _do_UBItemStatusNotificationRegisterURLs() can't find realpath for "/Users/paolocuyno/Library/Mobile Documents/com~apple~system~spotlight/mdlabels", was blocked at "/Users/paolocuyno/Library/Mobile Documents": 2 (No such file or directory)
    9/19/14 11:47:00.955 AM mdwrite[962]: [ERROR] [0.001s] com.apple. UBItemStatusNotification.c:805 _do_UBItemStatusNotificationRegisterURLs() can't find realpath for "/Users/paolocuyno/Library/Mobile Documents/com~apple~system~spotlight/mdlabels", was blocked at "/Users/paolocuyno/Library/Mobile Documents": 2 (No such file or directory)
    9/19/14 11:47:43.656 AM WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    9/19/14 11:47:57.656 AM WindowServer[89]: disable_update_likely_unbalanced: UI updates still disabled by application "Finder" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    9/19/14 11:48:10.259 AM WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "Finder" after 27.60 seconds (server forcibly re-enabled them after 1.00 seconds)
    9/19/14 11:48:33.043 AM coreaudiod[139]: Disabled automatic stack shots because audio IO is active
    9/19/14 11:48:33.049 AM coreaudiod[139]: Enabled automatic stack shots because audio IO is inactive
    9/19/14 11:49:36.887 AM WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    9/19/14 11:49:47.244 AM WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "Finder" after 11.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    9/19/14 11:50:23.926 AM WindowServer[89]: CGXDisableUpdate: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    9/19/14 11:50:37.713 AM WindowServer[89]: reenable_update_for_connection: UI updates were finally reenabled by application "Finder" after 14.79 seconds (server forcibly re-enabled them after 1.00 seconds)
    9/19/14 12:29:26.072 PM com.apple.launchd.peruser.501[149]: (com.apple.printtool.agent[557]) Exited: Killed: 9
    9/19/14 12:29:26.000 PM kernel[0]: memorystatus_thread: idle exiting pid 557 [printtool]
    9/19/14 12:30:25.000 PM kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    9/19/14 12:30:26.000 PM kernel[0]: macx_swapon SUCCESS
    9/19/14 12:32:12.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1006[GoogleSoftwareUp] clearing CS_VALID
    9/19/14 12:33:06.523 PM spindump[1007]: Google Chrome [285] timed out, and it's responsive
    9/19/14 12:34:18.901 PM coreaudiod[139]: Disabled automatic stack shots because audio IO is active
    9/19/14 12:34:22.799 PM coreaudiod[139]: Enabled automatic stack shots because audio IO is inactive

  • I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck. Please can someone help me with what it all means.
    Thanks in advance.
    EtreCheck version: 1.9.15 (52)
    Report generated 19 September 2014 08:07:14 GMT+8
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:4:29
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (147 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.4 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.4 - SDK 10.4) Support
      [loaded] com.sophos.kext.sav (9.1.55 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.1.50 - SDK 10.8) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents: ?
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [running] com.sophos.uiserver.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.music.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
    User Login Items: ?
      iTunesHelper
      TomTomHOMERunner
      AdobeResourceSynchronizer
      Dropbox
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OVSHelper: Version: 1.1 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions: ?
      Ultimate
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Perian  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 297.29 GB Disk used: 160.38 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 99
      Oldest backup: 2012-04-20 17:05:32 +0000
      Last backup: 2014-09-18 23:49:25 +0000
      Size of backup disk: Excellent
      Backup size 2 TB > (Disk size 297.29 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          6% InterCheck
          5% iCalExternalSync
          3% WindowServer
          2% CalendarAgent
          2% SystemUIServer
    Top Processes by Memory: ?
      152 MB SophosScanD
      147 MB InterCheck
      106 MB SophosAntiVirus
      66 MB Dropbox
      57 MB com.apple.iTunesLibraryService
    Virtual Memory Information: ?
      161 MB Free RAM
      1.55 GB Active RAM
      1.41 GB Inactive RAM
      902 MB Wired RAM
      611 MB Page-ins
      0 B Page-outs

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

Maybe you are looking for

  • Problem in Inbound delivery creation

    Hi all, While creating Inbound delivery for a scheduling agreement in VL31N while saving the document i am getting the following error Item does not exist. and its getting terminated. Regards, Ram.

  • CF11 install linux failure...Launching installer...  JRE libraries are missing or not compatible....

    CF11 install linux failure Expected: bundled JRE should work on Ubuntu 13.1 Launching installer... JRE libraries are missing or not compatible.... # java -version java version "1.7.0_55" OpenJDK Runtime Environment (IcedTea 2.4.7) (7u55-2.4.7-1ubuntu

  • High usage in memory

    Dear All, I have a situation here that high usage of system memory, When i check in st22  i cud see only short dump relating to it. I checked in st06, 80 % of my memory is being used, only 20 % left. When i check the same in sm37 and there are only t

  • URL parameters in combination with RRI

    Hi BW people, I have two web templates. Template 2 should use the same variables of the variable screen shown for Template 1 (without showing a secons veriable screen). That is why I use a RRI. In the first template there are sevaral buttons that red

  • Hyperlink from a button.

    I want to have a hyperlink but from a normal button, can I do this?