Help regding... Checking system landscape during the Project Preparation

Hello All,
While I was creating a project using SolMan, I came across the "System Landscape --> Systems" tab, where I found an option to check the system landscape by clicking on the "System Landscape" button.
By clicking on that button I was able to check whether a valid logical component is assigned to various systems like ECC, CRM, KW, etc. Initially I just had an ECC system alone in the system landscape. Hence was able to see a logical component being assigned under the ECC system.
But after some time, when I checked the system landscape using the same "System Landscape" button in the "System Landscape-->Systems" tab, I was not able to find the logical component that has been assigned to the ECC System.
But the RFC is still enabled and I was able to navigate to the ECC system from SolMan.
Am I missing something? What is this "System Landscape" button for? Please provide me some insight into this issue.
Thanks a lot in advance.
best rgds,
Alagammai.

Hi,
    The error "CASLExec" is an error reported by HP support assistant software, uninstall the HP support assistant by clicking on start search --> programs and features--> Uninstall progrmam, Update the latest version of HP support by clicking on the link
http://h71036.www7.hp.com/hho/us/en/pclc/articles/hp-support-assistant.html?lang=en&cc=us
Please try the steps mentioned in the below link for Windows 7 Service Pack 1installation error code issue.
http://windows.microsoft.com/en-US/windows7/troubleshoot-problems-installing-service-pack
Thank You.

Similar Messages

  • ChaRM - possible to have 2 different system landscapes in one project?

    Hi,
    can anyone tell me if it is possible to have 2 different system landscapes in one project. One landscape for developing and testing the Change Requests and another one for developing and testing the Bugfixes.
    Thanks,
    Martin

    As Rick, mentions, there's no default way.
    Having said that, there's nothing stopping you from doing it yourself. You can add a kind of language selector to the layout and set that for every html5 output. With some JavaScript, you can have the user switch between your outputs. It would look like content categories, but you'll have build it yourself.

  • Installing the new update for OSX has stopped my trackpad from swiping between pages in Safari. Whenever I try it Safari freezes and I have to quit. I have checked system preferences and the option is checked.

    ave to quit. I have checked system preferences and the option is still checked. Is anyone having the same problem?

    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Preferences/com.apple.driver.AppleBluetoothMultitouch.trackpad.plist.
    Move the .plist to your desktop.
    Log out/in and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it from, overwriting the newer ones.
    Thanks to leonie for some information contained in this.
    You might need to redo the View settings after an update.

  • Defining System Landscape in Implementation Project

    Hi
    I want to ask about defining System Landscape of an implementation project in solution manager.
    I have assigned the logical Component in Systems tab.
    I want to ask about creating the IMG Project in Sstems Landscape tab,, Is it compulsory to create IMG project for the new Implementation Project??? Why we create IMG Project?? Is it compulsory??
    Please guide
    Regards
    Sidra Hasan

    Hi,
    Implementation Project u2013 A project to implement SAP solution as a part of regular implementation or a roll out. This is considered for single-site implementations. Predefined scenarios can be selected from template projects.
    It is not compulsory to create these projects in solution manager that depends upon your implementation strategy.
    Thanks
    Sunny

  • System pauses during the drainOverflow() method

    Hello,
    We are running into a condition that causes our system to pause when we increase the load. We have a 2 machine cluster sharing a replicated cache. When we increase our load to around 25 "puts" per second on each machine the system will pause after around 2 minutes. If we stop pumping data the system recovers. The size of the object we are caching is small (approximately 245 bytes).
    We took a thread dump during one of the pauses and it looks like it is caused by the following:
    "Cron Daemon Pool1" prio=1 tid=0x0000002b2db4f300 nid=0x1ae0 waiting on condition [0x0000000041263000..0x0000000041263c30]
         at java.lang.Thread.sleep(Native Method)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher.drainOverflow(Service.CDB:16)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.send(Service.CDB:14)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.poll(Service.CDB:12)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.poll(Service.CDB:1)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$BinaryMap.put(DistributedCache.CDB:32)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$BinaryMap.put(DistributedCache.CDB:1)
         at com.tangosol.util.ConverterCollections$ConverterMap.put(ConverterCollections.java:1317)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$ViewMap.put(DistributedCache.CDB:1)
         at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
         at com.webmethods.sc.caching.impl.CommonCacheImpl.put(CommonCacheImpl.java:272)
         at com.wm.app.b2b.server.SessionManager.cacheSession(SessionManager.java:159)
         at com.wm.app.b2b.server.SessionManager.run(SessionManager.java:597)
         - locked <0x0000002aa59997f0> (a java.util.Hashtable)
         at com.wm.util.pool.PooledThread.run(PooledThread.java:112)
         - locked <0x0000002aa45bf7a8> (a com.wm.util.pool.PooledThread)
         at java.lang.Thread.run(Thread.java:595)
    This method goes into a sleep and it holds a lock that is causing our other threads to wait.
    Has anyone seen this behavior before or does anyone have more information on how to prevent this method from going to sleep()?
    Here's our environment:
    Coherence version: v3.2.2b371
    Java Version 1.5.0_15
    OS: Linux Version 2.6.9-67.0.15.ELsmp on the amd64 platform
    Thanks,
    Paul

    Patrick,
    Thanks for your help.
    For anyone who is interested in the resolution....
    The purpose of drainOverflow is to throttle threads that are adding data to the cache when the event dispatch queue is backed up (by default this limit is set to 1024 events.) This is meant to prevent OutOfMemoryErrors due to the
    queue growing unbounded.
    We have a thread that is writing to the cache and it is holding a lock on an internal hashtable. We also have a listener thread that is our coherence event listener. At certain points in our listener thread we are trying to obtain a lock on the same internal hashtable. This introduced a deadlock because drainOverflow() is waiting for the event queue to drain but our event listener is waiting on a lock held by the drainOverflow() thread.

  • Checks on vendors during the creation of PO with ME21N

    Hi all,
    i have this problem:
    during the creation of a Purchase Order, for some types of them i have to bypass some checks that are made by standard on the Vendor.
    Is it possibile to do? if it is, how can i do it?
    Thanks
    Lello

    Hi
    If they are standard controls, probably it'll mean to change the standard program: if your SAP release is ECC 6.00 u can try to use the Implicit Enhancement in order to change the standard else u need to register the standard to OSS in order to get the access key for modification.
    Max

  • Premiere cs6 unknown error during the project manager operation

    It appears this is an ongoing issue that needs to be addressed by Adobe. 
    I remember back in CS3 this was an issue and it still appears to be unresolved.  I'm using a Windows 7, HP Z workstation with Quadro FX graphics card, plenty of Ram, with an efficient RAID system. I need to provide a complete project (with files folder & assets in a central folder - maybe even trimmed assets) to my clients.  The Project Manager create Trimmed Project continually fails, as well as Collect files and Copy to New Location.  Following the Adobe instructions, no screensaver, turn off Premiere Autosave, don't use other programs that will impact machine usage - the results are still the same - unknown error - PLEASE ADDRESS THIS ISSUE ADOBE ! ! ! ! So my question is, When will Adobe address this issue?

    This forum is mostly other users, with a "few" Adobe employees
    You may need to contact Adobe directly... if some other user does not have a solution
    Adobe contact information - http://helpx.adobe.com/contact.html

  • Is there a way to help Apple check rights clearances at the time of submission

    I am in the final stages of producing three iBooks, have images, audio and video from various sources. I have the rights to reproduce them, signed contracts with all the copyright holders.
    My question is, it would see that when the book is being vetted by Apple, they would see all of this conent from various souces and want to verify that I actually have the rights to the content.  Is this something that could hold the approval process up? Is there a way to assist them in vetting the rights clerances, perhaps a form to submit that I am not aware of?
    Is this something that happens during the upload preperation in producer?

    CaptnKrunch wrote:
    I was mostly wondering if checking for rights clerances was causing some of the delays people are talking about.
    I think that's unlikely. If your book contains media for which you do not have rights, the copyright violation is made by you, not by Apple. The only requirement Apple places on you is to add an appropriate copyright notice to your book:
    Publisher shall provide an appropriate copyright notice in the Content File, or as reasonably requested by Apple, which Apple shall display for each eBook.
    So, there is no need for Apple to check the rights for each and every image in a book. (If they did that, it would take much longer for books to make it into the store than it does now, not to mention the cost of such an exercise.)
    Michi.

  • Help need on Migration Monitor during the OS migration

    Dear Guru,
    I need some helps to start the export with migration monitor tools.
    First I want to start the export on the source system and then move the file by myself to the source system.
    I can start the export in client mode? (I try already but it is just hang there)
    Then, I try to start the export with server mode, but I got the error below:
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (DB) INFO: Export without hintfile
    Alternate NameTab for type "BAPIPAREX_HELP" was missing and has been simulated.
    (GSI) INFO: dbname   = "BWT20030708040756                                                                                "
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "HSEA-PDC-S015                                                   "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "HSEA-PDC-S015"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 2"
    (GSI) INFO: machine  = "4x AMD64 Level 6 (Mod 15 Step 6)"
    (BEK) ERROR: SAPSYSTEMNAME not in environment
    my export properties are as below:
    Export Monitor options
    Server operating mode
    server
    Client operating mode
    #client
    Exchange mode: ftp | net
    #ftp
    net
    Common options
    List of export directories, separator on Windows ; on UNIX :
    exportDirs=V:\sap_inst_temp\export
    Installation directory
    installDir=C:\Program Files\sapinst_instdir\NW04\COPY\EXPORT\ABAP\COPY\NUC\DBEXP
    Package order: name | file with package names
    orderBy=name
    DDL control file, default is DDL<DB_TYPE>.TPL
    ddlFile=
    File with mapping between DDL files and package names
    ddlMap=
    Monitor timeout in seconds
    monitorTimeout=30
    R3load options
    Optional path of R3load executable
    r3loadExe=
    Generation of task files: yes | no
    tskFiles=yes
    Code page for data files
    dataCodepage=
    Additional R3load arguments for TASK phase
    taskArgs=yes
    Additional R3load arguments for LOAD phase
    loadArgs=
    Number of parallel export jobs
    jobNum=3
    Network options
    Network exchange directory
    netExchangeDir=V:\sap_inst_temp\export\netExchange
    FTP options
    Remote FTP host
    ftpHost=
    Name of remote FTP user
    ftpUser=
    Password of remote FTP user
    ftpPassword=
    List of remote FTP directories for export dump, separator : or ;
    ftpExportDirs=
    Remote FTP exchange directory
    ftpExchangeDir=
    Number of parallel FTP jobs
    ftpJobNum=3
    Socket options
    #socket
    Server hostname
    host=
    Server port number
    port=
    Trace option
    Trace level
    trace=all
    E-mail options
    SMTP server
    mailServer=
    "From" email address
    mailFrom=
    "To" email address
    mailTo=
    If anyone can share the document base on the migration monitor, It will be helpful.
    Thank you and Best Regards,
    Rapheephan

    > Then, I try to start the export with server mode, but I got the error below:
    >
    > (DB) INFO: connected to DB
    > (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    > (DB) INFO: Export without hintfile
    > Alternate NameTab for type "BAPIPAREX_HELP" was missing and has been simulated.
    > (GSI) INFO: dbname   = "BWT20030708040756                                                                                "
    > (GSI) INFO: vname    = "ORACLE                          "
    > (GSI) INFO: hostname = "HSEA-PDC-S015                                                   "
    > (GSI) INFO: sysname  = "Windows NT"
    > (GSI) INFO: nodename = "HSEA-PDC-S015"
    > (GSI) INFO: release  = "5.2"
    > (GSI) INFO: version  = "3790 Service Pack 2"
    > (GSI) INFO: machine  = "4x AMD64 Level 6 (Mod 15 Step 6)"
    > (BEK) ERROR: SAPSYSTEMNAME not in environment
    Did you execute it as <sid>adm user?
    Markus

  • Warnings found during the project validation.

    Hi folks...i'm new with idvd. I had 8 .avi films...and I converted them using FFX to .mov files. ex: filename.avi.ff.mov quicktime opens them and runs them no problems.
    So I took all 8 films put them into idvd, made some fancy buttons..etc.. when I went to burn, I get the above message. Now if I click on 'continue' I then get this message
    "Your project exceeds the maximum content duration. To burn this project, remove some content."
    So I thought there were to many movies for idvd to handle..but that isn't the case, as A) I removed most of them and still no go, and secondly, when I click on my desktop folder where all 8 files are located and select "get info", they are only 360KB all together. These files are small...so why am I getting these messages?
    Thanks

    Now..each film is about one hour in length..about 60
    minutes or so..some are a bit longer. These are .mov
    files, and the comp. keeps telling me that I have to
    'fix' the problem, but doesn't tell me how. It tells
    me in order to burn the file content must be reduced.
    How do I reduce file content????
    If they are "about 60 minutes or so..some are a bit longer", you should be OK if you select the 'Best Quality' mode before you start your project.
    Also... is there a better format I could have
    converted them into, other than .mov?
    .mov is just a 'wrapper'. .mov files may be compressed with many different CODECs.
    iMovie and iDVD are really designed for DV stream video content.
    And..do I have to convert them individually from .avi
    to .mov, or can I drop .avi files into idvd, and
    allow it to convert them?
    Does idvd convert .avi's????
    Most probably NOT. When I have to convert files, I use ffmpegX and go to DV stream video. Please keep in mind that DV stream content runs about 13 GB per hour, so you will need lots of hard disk space!

  • Did Lion eliminate the finger gestures for show the previous page and show the next page?  I've checked system settings for the track pad and it looks like the got rid of one of my favorite finger gestures when browsing the internet.  How do I get it back

    I've upgraded to LION. It looks like LION eliminates the finger gestures within internet browsing that used to yield navigating to the previous page or navigating to the next page.  I think it was a 3 finger swipe to the left and a 3 finger swipe to the right.  It looks like this has been eliminated.  I've gone into the system preferences and went through all the new settings for the track pad finger gestures.  I've not found a combination that allows me to swipe on the track pad to do the page forward / page back function.
    How to I get this back?  I was my favorite one and now I can't get there!

    For going back to the previous page try a 2-finger gesture. Two fingers in the other direction will take you back.
    cornelius

  • Editing the system landscape

    Hello all, I have 3 questions that I am posting separately. 
    1. Why can I no longer edit the system landscape from the project administration transaction as of release 3.2? And also, soes anyone have a clear explanation of how a Solution relates to a Project? I have been able to deduce a bit of this from the functions and behavior of the landscape transactions(e.g. you can maintain one system landscape for multiple projects), but would like to know what is the official intention of a Solution.

    Thanks Juergen,
    I see the point you are making, however, I still would prefer to select the logical components directly in the project administration transaction. The way you have to skip around the screens is cumbersome and confusing. If the logical component -> system assigment were done by the system administrator, then the project administrator could just pick the logical component. Anyway, this is the way it is designed...
    Do you have any insight into the second part of my question - what a "Solution" is meant to encompass and where it is used? I know the Service Desk uses it as well as the project system landscape.
    Regards, 
    Marcel

  • 5 system landscape

    Dear all
    we are palning to impliment 5 system landscape during the core project implimentation.
    we have 3 system landscape running on ECC 6.0 with FI, MAM,MSD modules.
    Now we would like to impliment core modules with out disturbing current setup until Go live pase.
    please suggest me how can we setup the landscape.
    the main problem is transports between the systems.
    Help??
    Ravi

    Hi
    in the SDN you find excellent planning aids: http://www.sdn.sap.com/irj/sdn/landscapedesign
    regards,
    Andreas Rudolph

  • The Firefox checking system says that Shockwave Flash 10.1.82.76 (10.1.r82) is VULNERABLE and I should immediately update it. When updating I can find no higher version of Shockwave Flash that is compatible with my system. What should I do ?

    1. I have an eMac running Mac OS 10.5.8
    Processor Name: PowerPC G4 (3.3)
    Processor Speed: 1 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 256 KB
    Memory: 1 GB
    Bus Speed: 133 MHz
    2. I use Firefox 3.6.24 as my browser
    3. The Firefox checking system says that the version of Shockwave Flash that I have installed, namely 10.1.82.76 (10.1.r82), presents a security VULNERABILITY and that I should immediately update it or disable it. On attempting to find an update I cannot locate a higher/more advanced version of Shockwave Flash that is compatible with my system. What should I do ?
    Thankyou for any assistance.

    The latest version for your system seems to be Flash 10.1 r102
    Flash Player 10.1 Release Notes: (latest version for Mac PPC)
    * http://kb2.adobe.com/cps/838/cpsid_83808.html
    See (Released 11/04/2010) Flash Player 10.1.102.64 and 9.0.289.0 (126 MB)
    * http://kb2.adobe.com/cps/142/tn_14266.html Archived Flash Player versions

  • I cant install iTunes to my Sony laptop i have error  occurred during the installation of assembly 'Microsoft .VC8O.CRT.type =win32" .version "8.050727.6195" .public key token="1fc8b9a1e18e3b".processorArchitecture="X86"" . please refer to help and s

    i cant install iTunes to my Sony laptop i have this message
    error  occurred during the installation of assembly 'Microsoft .VC8O.CRT.type =win32" .version "8.050727.6195" .public key token="1fc8b9a1e18e3b".processorArchitecture="X86"" . please refer to help and supp 

    error  occurred during the installation of assembly
    'Microsoft .VC8O.CRT.type =win32" .version "8.050727
    .6195" .public key token="1fc8b9a1e18e3b".processo
    rArchitecture="X86"" . please refer to help and support for more information . HRESULT:0x80070005

Maybe you are looking for