As much as the space in HD is necessary to be able to make a Client Copy??

Hi everybody!!
As much as the space in HD is necessary to be able to make a Client Copy??
After the installation, the still servant with approximately 11 GB of free space in C (Total 30 GB) and around 100 free GB in E (Total 190 GB) , in E installed SAP  himself ECC6 along with the data base ( Oracle 10,0,2 ), when all tag aiming at the record E did installation  itself, but in a minute to make the Client Copy he remains without space in the Drive C (38,3 MB Free)
The Client Copy is for the "Client 300 Test", the Client Copy in DEV with 3 Client ( 100 DEV, 120 QA DEV, 130 Sandbox ) it could come true trouble-free
thanks
Edited by: Manuel Sandoval on Aug 18, 2008 7:16 PM
Edited by: Manuel Sandoval on Aug 18, 2008 7:20 PM

Where do the "Client Copy" goes down the process in reviewing the "TCode ST22" I find the following:
Runtime Errors         DBIF_SETG_SQL_ERROR
Date and Time          19.08.2008 06:21:19
Short text
     SQL error occurred when accessing table.
What can you do?
     Note which actions and input led to the error.
     For further help in handling the problem, contact your SAP administrator
     You can use the ABAP dump analysis transaction ST22 to view and manage
     termination messages, in particular for long term reference.
How to correct the error
     Database error text........: "ORA-03106: fatal two-task communication protocol
      error"
     Internal call code.........: "[SETG/GET /INDX_HIER ]"
     Please check the entries in the system log (Transaction SM21).
     If the error occures in a non-modified SAP program, you may be able to
     find an interim solution in an SAP Note.
     If you have access to SAP Notes, carry out a search with the following
     keywords:
     "DBIF_SETG_SQL_ERROR" " "
     "SAPLSHI2" or "LSHI2U25"
     "STREE_READ_BUFFERED_DATA_GENER"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
       To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
       Display the system log by calling transaction SM21.
       Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
       In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
System environment
    SAP-Release 700
    Application server... "mts-qua"
    Network address...... "192.168.1.48"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x Intel 80686"
    Character length.... 16 Bits
    Pointer length....... 32 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "MTS-QUA"
    Database type..... "ORACLE"
    Database name..... "ECQ"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "May 22 2007 00:14:27"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "OCI_10201_SHARE (10.2.0.1.0) "
    Patch level. 111
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
     NT 6.0"
    Memory consumption
    Roll.... 8176
    EM...... 2090448
    Heap.... 0
    Page.... 16384
    MM Used. 1943008
    MM Free. 145920
User and Transaction
    Client.............. 300
    User................ "SAP*"
    Language key........ "E"
    Transaction......... " "
    Program............. "SAPLSHI2"
    Screen.............. "SAPLSMTR_NAVIGATION 0100"
    Screen line......... 2
Information on where terminated
    Termination occurred in the ABAP program "SAPLSHI2" - in
     "STREE_READ_BUFFERED_DATA_GENER".
    The main program was "SAPLSMTR_NAVIGATION ".
    In the source code you have the termination point in line 57
    of the (Include) program "LSHI2U25".
Source Code Extract
Line  SourceCde
   27             DO_NOT_READ_DEVCLASS       = 'X'
   28        IMPORTING
   29 *          MESSAGE          =
   30             STRUCTURE_HEADER = STRUCTURE_HEADER
   31        EXCEPTIONS
   32             OTHERS           = 0.
   33 *
   34   READ TABLE BUFFER_DATA WITH KEY TREE_ID = STRUCTURE_ID.
   35   MODIFY_INDEX = SY-TABIX.
   36 *
   37   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_NODE.
   38     GET_NODES = FALSE.
   39     BUFFER_DATA-NODES_OK = FALSE.
   40   ENDIF.
   41   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_REF.
   42     GET_REFERENCES = FALSE.
   43     BUFFER_DATA-REFS_OK = FALSE.
   44   ENDIF.
   45   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_TEXT.
   46     GET_TEXTS_LANGUAGE = SPACE.
   47     BUFFER_DATA-TEXT_OK = FALSE.
   48   ENDIF.
   49 *
   50 * get nodes and/or references
   51   IF GET_NODES EQ TRUE OR GET_REFERENCES EQ TRUE.
   52     SELECT SINGLE * FROM TTREELOADS WHERE TREE_ID EQ STRUCTURE_ID.
   53     IF SY-SUBRC EQ 0.
   54       CLEAR BUFFER_NODES. REFRESH BUFFER_NODES.
   55       CLEAR BUFFER_REFS. REFRESH BUFFER_REFS.
   56       IF GET_NODES EQ TRUE AND GET_REFERENCES EQ TRUE.
>>>>>         IMPORT BUFFER_NODES BUFFER_REFS FROM DATABASE INDX_HIER(XX)
   58                                ID STRUCTURE_ID.
   59         BUFFER_DATA-NODES_READ = TRUE.
   60         BUFFER_DATA-REFS_READ = TRUE.
   61       ELSE.
   62         IF GET_NODES EQ TRUE.
   63           IMPORT BUFFER_NODES FROM DATABASE INDX_HIER(XX)
   64                                ID STRUCTURE_ID.
   65           BUFFER_DATA-NODES_READ = TRUE.
   66         ELSEIF GET_REFERENCES EQ TRUE.
   67           IMPORT BUFFER_REFS  FROM DATABASE INDX_HIER(XX)
   68                                ID STRUCTURE_ID.
   69           BUFFER_DATA-REFS_READ = TRUE.
   70         ENDIF.
   71       ENDIF.
   72 *     nodes[] = buffer_nodes[].
   73 *     references[] = buffer_refs[].
   74       APPEND LINES OF BUFFER_NODES TO NODES.
   75       APPEND LINES OF BUFFER_REFS  TO REFERENCES.
   76     ELSE.
Contents of system fields
Name     Val.
SY-SUBRC 0
SY-INDEX 0
SY-TABIX 1
SY-DBCNT 1
SY-FDPOS 2
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY
SY-UCOMM
SY-TITLE SAP Easy Access
SY-MSGTY E
SY-MSGID 01
SY-MSGNO 289
SY-MSGV1 SAP*
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO 0
SY-DATUM 20080819
SY-UZEIT 062116
SY-XPROG
SY-XFORM
Active Calls/Events
No.   Ty.          Program                             Include                             Line
      Name
   10 FUNCTION     SAPLSHI2                            LSHI2U25                               57
      STREE_READ_BUFFERED_DATA_GENER
    9 FUNCTION     SAPLSHI2                            LSHI2U14                               82
      STREE_READ_TOP_LINE_GENER
    8 FUNCTION     SAPLSHI1                            LSHI1U12                               73
      STREE_STRUCTURE_READ_TOP_NODE
    7 FUNCTION     SAPLSHI1                            LSHI1U14                               47
      STREE_STRUCTURE_READ_N_TOP_LEV
    6 FUNCTION     SAPLSHI6                            LSHI6U08                               38
      STREE_HIERARCHY_READ
    5 FUNCTION     SAPLSMNU_NEW                        LSMNU_NEWU02                          130
      MENU_GET_MENU_TREE_PART
    4 FUNCTION     SAPLSMTR_NAVIGATION_MODULES         LSMTR_NAVIGATION_MODULESU01           140
      NAVIGATION_LOAD_MENU_DATA
    3 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF11                    14
      HELP_FORM_LOAD_ALL
    2 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF0I                   511
      CONTROL_INITIALIZE_TREE
    1 MODULE (PBO) SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONO01                    10
      STATUS_0100
Chosen variables
Name
    Val.
No.      10 Ty.          FUNCTION
Name  STREE_READ_BUFFERED_DATA_GENER
GET_NODES
    X
    5
    8
    0
    0
GET_REFERENCES
    X
    5
    8
    0
    0
GET_TEXTS_LANGUAGE
    2
    0
    0
    0
STRUCTURE_ID
    S000
    53332222222222222222222222222222
    30000000000000000000000000000000
    00000000000000000000000000000000
    00000000000000000000000000000000
NODES[]
    Table IT_235[0x1102]
    \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=INEXTLEVEL[]
    Table reference: 44
    TABH+  0(20) = 00000000800EC451000000002C000000EB000000
    TABH+ 20(20) = 000000004E040000FFFFFFFF046C0000F0080000
    TABH+ 40( 8) = 08000000C1248001
    store        = 0x00000000
    ext1         = 0x800EC451
    shmId        = 0     (0x00000000)
    id           = 44    (0x2C000000)
    label        = 235   (0xEB000000)
    fill         = 0     (0x00000000)
    leng         = 1102  (0x4E040000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000033
    occu         = 8     (0x08000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    collHook     = 0x00000000
    ext2         = 0x30F6BC51
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xC013B251
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
REFERENCES[]
    Table IT_236[0x516]
    \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=REFERENCES[]
    Table reference: 45
    TABH+  0(20) = 00000000C0F6BC51000000002D000000EC000000
    TABH+ 20(20) = 0000000004020000FFFFFFFF046C000020120000
    TABH+ 40( 8) = 10000000C1248001
    store        = 0x00000000
    ext1         = 0xC0F6BC51
    shmId        = 0     (0x00000000)
    id           = 45    (0x2D000000)
    label        = 236   (0xEC000000)
    fill         = 0     (0x00000000)
    leng         = 516   (0x04020000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000082
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    collHook     = 0x00000000
    ext2         = 0x78F6BC51
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x0014B251
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
TEXTS[]
    Table[initial]
SY-REPID
    SAPLSHI2
    5454544322222222222222222222222222222222
    310C389200000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
UP_NAME_USER_EXIT_2
    USER_EXIT_2
    5545545455322222222222222
    5352F5894F200000000000000
    0000000000000000000000000
    0000000000000000000000000
REF_TABLE_NAME
    2222222222222222
    0000000000000000
    0000000000000000
    0000000000000000
I_TNODET[]
    Table[initial]
TTREELOADS
    S000                            20060927073108G
    53332222222222222222222222222222333333333333334
    30000000000000000000000000000000200609270731087
    00000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000
NODE_TYPE_STEXT_F_MODULE
    STREE_NODE_TYPE_GET_STEXT_XXXX
    555445444455554544555545555555
    34255FEF45F4905F754F34584F8888
    000000000000000000000000000000
    000000000000000000000000000000
SY-SUBRC
    0
    0000
    0000
BUFFER_NODES
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
BUFFER_NODES[]
    Table[initial]
BUFFER_REFS
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
BUFFER_REFS[]
    Table[initial]
TRUE
    X
    5
    8
    0
    0
SYST-REPID
    SAPLSHI2
    5454544322222222222222222222222222222222
    310C389200000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
INDX_HIER
    XXS000                            ############################################################
    5553332222222222222222222222222222000000000000000000000000000000000000000000000000000000000000
    8830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
INDX_HIER-CLUSTR
    0
    00
    00
GLOBAL_TREE_REF_TYPE_STXT
    STREE_GET_STEXT_FOR_RTYPE_XXXX
    555445445555455544555555455555
    34255F754F34584F6F2F24905F8888
    000000000000000000000000000000
    000000000000000000000000000000
PROPERTY_OWN_LONGTEXT
    1
    3
    1
    0
    0
NODE_TYPES_WITH_OWN_LONGTEXT[]
    Table[initial]
TRTYPEH
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
%_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
%_DUMMY$$
    2222
    0000
    0000
    0000
No.       9 Ty.          FUNCTION
Name  STREE_READ_TOP_LINE_GENER
DISPLAY_MODE
    D
    4
    4
    0
    0
FILTER_ID
    22222222222222222222222222222222
    00000000000000000000000000000000
    00000000000000000000000000000000
    00000000000000000000000000000000
STRUCTURE_ID
    S000
    53332222222222222222222222222222
    30000000000000000000000000000000
    00000000000000000000000000000000
    00000000000000000000000000000000
TABLE_NAME
    TMENU01
    544453322222222
    4D5E50100000000
    000000000000000
    000000000000000
MESSAGE
                         000
    2222222222222222222223332222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
PARENT_NODE
    22222222222222222222222222222222
    00000000000000000000000000000000
    00000000000000000000000000000000
    00000000000000000000000000000000
STRUCTURE_TOP_LINE[]
    Table IT_233[0x1234]
    \FUNCTION=STREE_STRUCTURE_READ_N_TOP_LEV\DATA=STRUCTURE[]
    Table reference: 42
    TABH+  0(20) = 0000000030F1C151000000002A000000E9000000
    TABH+ 20(20) = 00000000D2040000FFFFFFFF04640000900E0000
    TABH+ 40( 8) = 08000000C1248001
    store        = 0x00000000
    ext1         = 0x30F1C151
    shmId        = 0     (0x00000000)
    id           = 42    (0x2A000000)
    label        = 233   (0xE9000000)
    fill         = 0     (0x00000000)
    leng         = 1234  (0xD2040000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000063
    occu         = 8     (0x08000000)
    access       = 1     (ItAccessStandard)

Similar Messages

  • Hi, can I move my iTunes library to an external hardrive without having to consolidate it as my prehistoric computer just doesn't have the space even though I have deleted everything possible to make room? Please help :(

    Hi, can I move my iTunes library to an external drive without having to consolidate it as my prehistoric computer just doesn't have enough space even though I have deleted everything possible to make room? Please help

    Hi, do you know if this works if I then want to move my library to a new computer as that is my main intention bacause my old computer hasn't got enough space for me to add new albums so I want to ditch the computer (its got to be about 100 years old and doesn't seem to cope well with modern technology!!) and start using my laptop for my iTunes. I am at the point now where i'm ready to throw both my computer and iPod out the window!!!! I might point out as well that in trying to clear space on my computer I accidently deleted the Bonjour programme which is aparently needed to use the home share option, oops!!!!
    Thanks, Kerry

  • I use XP. When I open Itunes a mewssage comes up saying, Itune drivers are missing ,please reinstall. I reinstall and I get the same message. I use to be able to use Itunes for copying ,etc. but now I can't.

    I have Itunes on my PC. I used it to burn and copy music which I had on Itunes.  I had some work done on my PC. Now when I open it a message comes up saying, that Itune drivers are missing,
    reinstall Itunes.
    I did that and I still get the same message. What am I doing wrong
    Paul

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • I am in the merchant services business.  Need to be able to have my clients sign a document.

    with a stylus or their finger.  Is there an app that does this?

    Adobe Reader Touch for Windows 8 does not support it yet.
    Adobe Reader for iOS/Android supports Freehand drawing and Signatures as part of the Commenting tools.
    Since you are in the merchant services business, I assume that you are looking for electronic signatures that are secure and legally enforceable.  Adobe EchoSign offers the service.
    Adobe EchoSign Plans and Features
    Once you subscribe to the service, you can use Adobe EchoSign for iOS on an iPad and have your clients sign PDF documents.  Sorry, no Adobe Reader products on Windows support signatures using a stylus or finger.
    You may be able to find some other non-Adobe apps in the Windows Store.  But I am not aware of any others.

  • HT3574 on the new iPAD 4G Verizon has anyone been able to make the Hotspot work with the USB Cable to a Windows 7 PC ?

    On the new Ipad 4G (Verizon) - I am unable to Hotspot it with the USB Cable. I can do it with Wi-Fi and Blue Tooth just fine - but not directly connected from the iPad3 to a Windows 7 PC. It detects, it even opens up the Folder os that I can see the DCIM but no internet on the PC (but works fine using Wi-Fi or Blue Tooth hotspot). Any ideas ?

    Attach the cable to your iPad and then to the USB, than go to settings chose the third option "personal hot spot" turn it on, a notification will pop up asking you if you want to use wifi or Bluetooth just select no and automatically work.

  • The master extreme does not seem to be able to accept wireless clients.

    I have a roaming network setup with several extremes/express devices. The probem I am having is the master extreme which is in the garage does not want to accept new wireless clients. I have 3 other devices which work just fine. They hand off clients as you move around the house. You can see the wireless network on your device and when you select it you get a pop up window prompting you for the password??? You enter the passwork/key and nothing seems to happen.

    Yes all of my base stations have the same network name, same password and same security setting. I have Comcast as my network provider. I have the latest airport extreme connected directly to the cable modem in the garage. I have 2 other base stations of the previous verison in house. One in my office and one in the living room. If I am moving around in the house I can use the airport utilitiy to look at those base stations and see which wireless clients they have. If I go out into the garage and try and connect to the wireless network the device appears to be trying (spinning dial icon) and then comes back with the pop up requesting a password. I have tried entering it and again it will appear to try and connect for a few seconds and then the pop up will appear again. I I walk into the house the device will connect with one of the other base stations.
    Also all of the base stations are connected via ethernet cable to the main base station in the garage. They are connected directly with no switch or router between them.

  • Unable to make the Client Copy

    Hi Team ,.
                 I am trying to make a client Copy after SCCL transaction is performed when we check the status
    in SCC3 it's throwing an error
    Error :
    Client 200 logon locked
    Client Copy probably cancelled
    The Client could be the source client of a copy
    Reset Lock        Keep Lock      Cancel
    Please help
    Regards ,
    Madhu

    I went through this Document
    Client copy error :
    RFC destination for client copy in systems with Financials Basis
    (FINBASIS) component.
    The system could not find any suitable RFC destination for processing
    for client 001.
    This note also appears if an RFC destination was found but this does not
    work.
    o   RFC destination: 001
    o   Error text:
    Proceed as follows to eliminate this error:
    1.  Start the wizard to create a new RFC connection
    or perform the following steps manually:
    1.  Create an RFC destination with the target ZK>source client of client
         copy (in this case 001).
    2.  Check whether the RFC destination works in transaction SM59.
         To avoid errors when assigning the password or the authorizations of
         the RFC user, use the authorization test Test -> Authorization.
    3.  Enter the RFC destination:
         -   Transaction: FINB_TR_DEST (Destinations for Transport Methods of
             the Financials Basis)
         -   Client: 001
    4.  Start the client copy again.
    SOLUTION:
    Login to client 001
    Go to sm59, create rfc connection type 3, give the rfc destination : FINBASIS_001
    Logon and security--> give user id and password (of any user in client 000)(user should be a service user or communication user so as to avoid password lock situation)
    Check Test connection: test ---à authorization test.
    Login in to new client: 800
    Run the tcode: FINB_TR_DEST
    Click on new entries:
    Give the client: 001 and destination as FINBASIS_001 and save .
    Run Tcode: sccl
    Source: 001
    Target: 800
    Run as background job.  Go to sm37 & check the status.

  • When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    OmniDiskSweeper is a free utility that checks HD space.
    FreeSpace cost $1 or is a free utility that checks HD space.
    SpaceControl is a free utility that checks HD space.

  • How can one find out how much hard drive space the apps and media are using?

    how can one find out how much hard drive space the apps and media are using?

    See Here  >  Where did my Disk Space go?
    And Here  >  The Storage Display

  • I cannot update my software because I have too much 'other' GB space. Does anyone know what the 'other' is and how do I get rid of it?

    I cannot update my software because I have too much 'other' GB space. Does anyone know what the 'other' is and how do I get rid of it?

    COPirateDad wrote:
    I have been trying to figure out what ... is occupying over 1.4 GB of memory on my iPhone
    Other is usually around 1 GB...
    See Here  >   maclife.com/how_remove_other_data_your_iphone
    More Info about ‘Other’ in this Discussion
    https://discussions.apple.com/message/19958116

  • Not able to view the Spaces home page; getting Page not found message

    Hello All,
    I seem to have a problem trying to access the Spaces Welcome page. I get a page not found message trying to access.
    When I look into the logs -
    [2010-07-08T08:32:32.137-04:00] [WLS_Spaces] [ERROR] [] [oracle.webcenter.webcenterapp] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Factory Finder is already initialized, hence quitting
    [2010-07-08T08:32:32.152-04:00] [WLS_Spaces] [ERROR] [] [oracle.webcenter.webcenterapp.internal.view.webapp] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Cannot locate the document 'oracle/webcenter/webcenterapp/extendingspaces/extending-spaces-properties.xml'.
    [2010-07-08T08:32:32.347-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.spaces.search] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] MDS_QUERY: List size: 0, forAdmin true, isTemplate true, rowsRestricted false, Time Taken : 192
    [2010-07-08T08:32:32.376-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.webcenterapp] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Found the scope spacetemplate/Basic is viewable to authenticated role, setting the flag to true and returning.
    [2010-07-08T08:32:32.402-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.webcenterapp] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Found the scope spacetemplate/CommunityOfInterest is viewable to authenticated role, setting the flag to true and returning.
    [2010-07-08T08:32:32.430-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.webcenterapp] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Found the scope spacetemplate/ProjectSpace is viewable to authenticated role, setting the flag to true and returning.
    [2010-07-08T08:32:32.431-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.spaces] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Templates Application Regions initalized Sucessfully. Templates list has 3 Published Templates list has 3Initalization took 277 ms
    [2010-07-08T08:32:32.550-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.page] Relationship Service is already registered: oracle.webcenter.page, ignoring...
    [2010-07-08T08:32:32.601-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.collab.calendar.personal] Relationship Service is already registered: oracle.webcenter.collab.calendar.personal, ignoring...
    [2010-07-08T08:32:32.611-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.collab.calendar.community] Relationship Service is already registered: oracle.webcenter.collab.calendar.community, ignoring...
    [2010-07-08T08:32:32.616-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.list] Relationship Service is already registered: oracle.webcenter.list, ignoring...
    [2010-07-08T08:32:32.618-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.list.data] Relationship Service is already registered: oracle.webcenter.list.data, ignoring...
    [2010-07-08T08:32:32.666-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.doclib] Relationship Service is already registered: oracle.webcenter.doclib, ignoring...
    [2010-07-08T08:32:32.695-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.collab.announcement] Relationship Service is already registered: oracle.webcenter.collab.announcement, ignoring...
    [2010-07-08T08:32:32.714-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.note] Relationship Service is already registered: oracle.webcenter.note, ignoring...
    [2010-07-08T08:32:32.727-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.relationship.url] Relationship Service is already registered: oracle.webcenter.relationship.url, ignoring...
    [2010-07-08T08:32:32.751-04:00] [WLS_Spaces] [WARNING] [WCS-04202] [oracle.webcenter.relationship.internal.model.ServiceFactory] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] [arg: oracle.webcenter.collab.forum] Relationship Service is already registered: oracle.webcenter.collab.forum, ignoring...
    [2010-07-08T08:32:32.983-04:00] [WLS_Spaces] [WARNING] [] [oracle.webcenter.framework.service.EclipseLinkLogger] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] 2010-07-08 08:32:32.982--ServerSession(7507840)--PersistenceUnitInfo ServiceFrameworkPUnit has transactionType RESOURCE_LOCAL and therefore jtaDataSource will be ignored
    [2010-07-08T08:32:32.986-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.framework.service.EclipseLinkLogger] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] 2010-07-08 08:32:32.986--ServerSession(7507840)--EclipseLink, version: Eclipse Persistence Services - 1.2.0.v20091016-r5565
    [2010-07-08T08:32:32.989-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.framework.service.EclipseLinkLogger] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] 2010-07-08 08:32:32.989--ServerSession(7507840)--webcenter-oracle.webcenter.framework login successful
    [2010-07-08T08:32:33.618-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.adf.mbean.share.connection.ConnectionsMXBeanImpl] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] Registering Connection Runtime MBean
    [2010-07-08T08:32:35.174-04:00] [WLS_Spaces] [WARNING] [ADF_FACES-30163] [oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] The application is running with the new window detect flag off. It is highly recommended that this flag be turned on to ensure proper functioning of your application when new browser windows are launched. In web.xml set the context parameter oracle.adf.view.rich.newWindowDetect.OPTIONS to 'on'.
    [2010-07-08T08:32:38.963-04:00] [WLS_Spaces] [WARNING] [] [oracle.webcenter.collab.forum.internal.model.gateway.ForumGatewayManager] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] oracle.webcenter.collab.forum.ForumException: no connections available for: Discussion Forum
    [2010-07-08T08:32:39.435-04:00] [WLS_Spaces] [WARNING] [] [oracle.webcenter.collab.forum.internal.model.gateway.ForumGatewayManager] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] oracle.webcenter.collab.forum.ForumException: no connections available for: Discussion Forum
    [2010-07-08T08:32:39.951-04:00] [WLS_Spaces] [WARNING] [] [oracle.webcenter.collab.forum.internal.model.gateway.ForumGatewayManager] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2juNFw000jzwkno1Bskt^0000HD,0] [APP: webcenter] oracle.webcenter.collab.forum.ForumException: no connections available for: Discussion Forum
    [2010-07-08T08:33:10.320-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.webcenterapp.internal.view.webapp] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2tI_Fw000jzwkno1Bskt^0000HE,0] [APP: webcenter] Spaces request : #Request URL = http://192.168.0.140:1527/webcenter/spaces #QueryString = null #Encoding = UTF-8 #lang = null
    [2010-07-08T08:33:10.321-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.webcenter.webcenterapp.internal.view.webapp] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000Iam2tI_Fw000jzwkno1Bskt^0000HE,0] [APP: webcenter] Spaces request : #Request URL = http://192.168.0.140:1527/webcenter/spaces #QueryString = null #Encoding = UTF-8 #lang = null
    [2010-07-08T08:33:10.633-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.jbo.uicli.mom.CpxUtils$Visitor] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 0000Iam2tI_Fw000jzwkno1Bskt^0000HE,0] [APP: webcenter] jar:file:/wbc/web_logic/user_projects/domains/kbace_domain/servers/WLS_Spaces/tmp/_WL_user/oracle.webcenter.framework.view/9rmhle/WEB-INF/lib/conference-view.jar!/oracle/webcenter/collab/rtc/conference/view/DataBindings.cpx
    [2010-07-08T08:33:10.926-04:00] [WLS_Spaces] [NOTIFICATION] [] [oracle.adf.model.servlet.HttpBindingContext] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 0000Iam2tI_Fw000jzwkno1Bskt^0000HE,0] [APP: webcenter] Application error handler: oracle.webcenter.webcenterapp.internal.view.error.WCErrorHandlerImpl
    Any help would be appreciated on this.
    Thanks in advance.
    Nachi

    Hi All,
    I am facing this peculiar issue.
    Post installation of webcenter, I can access the Webcenter Spaces homepage.
    I log into webcenter as admin and configure a Mail Connection. I start and stop the Webcenter Spaces deployment. Now I don't see the Webcenter spaces Home page.
    Error on page -
    Page Not Found...
    The page you requested is not found.
    Click here to go to home
    Click here to go to list of accessible pages
    When I check the Logs on the server; I see -
    #SEARCH_CRITERIA
    #     START_TIME: 2010-07-29T05:12:22.740-04:00
    #     END_TIME: 2010-07-29T06:12:22.740-04:00
    #     MESSAGE_TYPES:INCIDENT_ERROR, ERROR, UNKNOWN
    #SELECTED_TARGETS_LIST
    #     /Farm_base_domain/base_domain/WLS_Spaces/webcenter:oracle_webcenter
    [2010-07-29T06:09:27.910-04:00] [WLS_Spaces] [ERROR] [] [oracle.webcenter.webcenterapp] [host: kbace-hpbs0201.kbace.com] [nwaddr: 127.0.0.1] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000IcTfOu8Fw000jzwkno1CK78x00003V,0] [APP: webcenter] Factory Finder is already initialized, hence quitting
    [2010-07-29T06:09:27.933-04:00] [WLS_Spaces] [ERROR] [] [oracle.webcenter.webcenterapp.internal.view.webapp] [host: kbace-hpbs0201.kbace.com] [nwaddr: 127.0.0.1] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 0000IcTfOu8Fw000jzwkno1CK78x00003V,0] [APP: webcenter] Cannot locate the document 'oracle/webcenter/webcenterapp/extendingspaces/extending-spaces-properties.xml'.
    #MESSAGE_COUNT: 2
    Any light in this regard is much appreciated.
    Thanks in Advance.
    Nachi

  • How do I create my own favorite template for DVD slideshows? I used to be able to select this from pulldown menu, but cannot now do so. I am directed straight to templates, which take more memory. I have a large slideshow, and need all the space I can get

    First, how do I create my own favorite theme template for DVD slideshows? I used to be able to select this from pulldown menu, but cannot now do so. I am directed straight to already existing themes, which take more memory. I have a large slideshow, and need all the space I can get. I just want to use a picture as my DVD cover, and then insert a slideshow. Also, when I try to burn my 8.5gb double sided slideshow, all that burns is the music. It is a large slideshow, a memorial on the life of my now deceased brother. This means a lot to me and to my family, and I am having so much trouble trying to burn it. I have gone into Project View and selected appropriately. The bar shows I have room to burn this DVD, but it does not burn.  I have burned so many DVDs in the past, but this one just will not burn. I am so confused at this point. I will say this is the first 8.5gb I have attempted to create and burn. My specs list a 7.7gb or 4.7gb as operable....but there are no 7.7gb dvds. I had to purchase 8.5gb. Help? What am I doing wrong? I have spent so much time on this, and just cannot figure it out.

    Final Cut is a separate, higher end video editor.  The pro version of iMovie.
    Give iPhoto a look at for creating the slideshow.  It's easy to assemble the photos in an album in iPhoto, put them in the order you want and then make a slideshow of them.  You can select from various themes and transitions between slides and add music from your iTunes library.
    When you have the slidshow as you want use the Export button at the bottom of the iPhoto window and export with Size = Medium or Large.
    Save the resulting Quicktime movie file in your Movies folder.
    Next, open iDVD, choose your theme and drag the QT movie file into the menu window being careful to avoid any drop zones.
    Then follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    The reason I suggest iPhoto is that I find it much easier to use than iMovie (except for the older iMovie 6 HD version).  Personal preferences showing here.

  • Why do none of the links that I put in my outgoing yahoo emails no longer underline themselves and become live when I finish typing them and hit the space bar?

    Previously, when I typed my email address in an outgoing email or cut and pasted a link from my browser bar the link would become 'live' when I hit the space bar or 'enter' key. The link would turn blue and underline itself and the person receiving the email could just click on that live link and be taken to the site. Now the link does not turn blue or underline itself and the receiver must cut and paste the link into their browser bar to use it.
    Why? I did not change anything in Yahoo or Mozilla.
    I have deleted and reinstalled Java to no effect. I am using html in Yahoo.

    As it turns out, many others have been having similar issues on other browsers. It seems that maybe Yahoo! is taking a much longer time to load or something like that. Either way, its been working on and off all week, and the same issue even showed up yesterday with IE 8 instead of FF. It still loads faster than IE 8, but again is spotty. Some people think the issue may be with mail.yimg.com or s.yimg.com, which I could see was the loading url in the left corner whenever Yahoo! Mail was refusing to work. A couple of people said blocking it caused the issue. Alternatively, some people suggested blocking it to solve the problem. Does anyone have any information on that? Again, I have no add-ons that would be blocking any urls, and my firewall hasn't any records of it. I really don't want to do anything to mess up my browsers more than they may have already been. Thanks for all of your help so far!

  • I was playing with my ipad settings (it's an older model) and noted in the advanced settings of Safari there was a place to view website databases.  When I clicked on this I saw websites.  How do these get there and what does the space amount mean?

    I was playing with my ipad settings and noted in he advanced settings of Safari there was a place to view "website databases".  When I selected this I saw a multitude of websites.
    Can anyone tell me how these get there?  Can a website be posted even if it was never went to?  What does the space amount mean?  For example, 1.5 kb...is this quite a bit?  Would it indicate someone has gone to a site multiple times?
    I share my ipad with my teenage daughter and I'm trying to find out if she's lying to me.  Obviously she's swearing that she has "no idea" how these got there and I'm trying to keep her safe (she's only 14).
    Thanks everyone.
    Concerned Mom

    Think of your PC and the 'temporary internet folder' where it keeps cached copies of web pages or elements off a web page for 'quicker display the next time you visit'. That's pretty much what that folder is. 1.5K is tiny. Probably just a basic page with some text on it. (you might be confusing 1.5K with 1.5 megabyte....megabyte is large...it's roughly 1000 kilobytes, so the 1.5K is a tiny file)
    As far as I know, the only way info gets into that folder is if the browser has been to that site.
    if you have a concern there are browsers out there, McGruff is one i've seen recommended, that allow some degree of parental control and supervision. That or you could passcode lock the iPad or enable the restrictions to turn off some parts of the device to have some control.

  • Mercury Engine in After Effects CS5.5? Or, why is After Effects so much slower the Premiere Pro?

    Take this quote :
    "by Todd Kopriva on Apr 25, 2010 at 8:08:14 am
    'Mercury' is a marketing name for these performance improvements in Premiere Pro: - multiprocessing
    - multithreading
    - 64-bit application
    - use of CUDA to to some processing on supported hardware 
    The first three of these are in After Effects CS5. (The first two have been in After Effects for much longer.)"
    However, if I drop my Canon 5D Mark II footage (h264) into Premiere Pro it plays back SO MUCH better then the exact same footage in After Effects. Why is that? I DO NOT have an NVideo card and I have NOT applied any effects or scaling to the clip, just raw footage dropped into each program.
    I do notice that After Effects has to render to play back (green bar being generated above footage). But it does slow very slowly, like 9fps. Premier Pro seems to cruise right along at near realtime. This is 24fps 1080p footage. One other point of interest, I have encoded the clip into Cineform codec as well. On Premier Pro I can tell a difference, the cineform scrubs a lot smoother then the original H264 clip. But, again, in After effects both the h264 and Cineform clips are very slow to render and scrub.
    Any improvements along these lines for CS5.5?
    Am I just missing something obvious?
    Thanks for any info,
    --greg.

    Gregory Seattle wrote:
    I think the problem is that hitting the space bar and hitting '0' (ram preview) both draw that green bar, and both seem to use it if it is already there. I guess the real difference is how that green bar gets generated. It does seem to get generated faster when I ram preview as opposed to hitting the space bar. Using both cores I have I guess (early 2009 24" iMac).
    When you hit the space bar, AE TRIES to play back as it renders each frame.  Imagine what happens if it's a comp with 120 3D layers that all accept lights and cast shadows.  That's why you don't use the space bar.
    In a RAM Preview, AE fills up the memory available to it with rendered frames, then plays them back from RAM.  Depending on processor speed, dimensions of comp & frame rate, this may or may not be real time, but there are ways to get real time.  With the space bar, you don't stand a chance at real time.
    Gregory Seattle wrote:
    From what I hear new iMacs are due out soon with the new Thunderbolt (!) and Sandy Bridge processors/chipsets. Should be a LOT faster then what I have now.
    For AE work I'd say maybe yes, maybe no.  To make AE REALLY speedy, you need a lot of processor cores and a boatload of RAM.  iMacs aren't known for either of those things.

Maybe you are looking for

  • Deskjet 3050 J610 will not install on Mavericks or new Router

    I have had a deskjet 3050 J610 for a couple years and it has worked fine with our MacBook Pro (with the exception of updates) .  We recently restored our MacBook and added Mavericks.  We also have a new netgear modem/router.  We can not connect the p

  • Cant hear anything in my macbook pro

    i cant hear anything just when i move something to the trash

  • Flash CS5 locks settings for new AS3 document

    New install of Flash CS5.5, and I just opened it up after three weeks and the latest update.  I create a new AS3 document, 940 X 226 with a black background, and work on several animations. I close the document, and click File>New, and choose a new A

  • Differentiate between DND and "Off Hook" status

    We have several directors and assistants on staff where it would be helpful to the assistant if their phone displayed and differentiated between off hook or dnd. Currently, both off hook status and dnd report the same indicator for the assistant. UC5

  • Personnel number data disappears in Identification tab of BP

    Hi Team, In GUI while creating employee(BUP003) personnel number field's data disappears the first time after clicking save. This happens in quality, working fine in dev. Please help me out to fix this. Regards Muneera