SolMan 4.0 - "Path contains reserved character"

Im installing SolMan 4.0 (Distributed System) on Win2k3 SP2 .
Installing CI on the same Host as SCS.
After reading: "Collecting information about installed SAP systems: Checking SAP service SAPEC4_00..." in the status bar, an error occurred with following message in the logfile:
FSL-02107 Path component contains reserved character ('"'): "C:
FSL-02106 Path contains reserved character ('"'): "C:usrsaEC4SYSprofileSTART_SCS00_hostname"
I already checked the environment --> no quotes !
JAVA_HOME checked also.
All installation-media on HDD c:\SAP_DISC\*
Any help or ideas are highly appreciated!
thx,Mario

Solution:
Registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SAP<SAPSID>_00:
Key "ImagePath" --> Value:
"C:\usr\sap\<SAPSID>\SCS00\exe\sapstartsrv.exe" pf="C:\usr\sap\<SAPSID>\SYS\profile\START_SCS00_<hostname>"
ToDo: Delete all quotes and restart the installation
Mario

Similar Messages

  • FSL-02106  Path contains reserved character ('"'):

    Dear all,
    I am going to uninstall a dialog instance from our IS-U system (NetWeaver 2004sSR1).  Our IS-U system is a cluster system running Microsoft Cluster Service.  Unfortunately, I received the following errors and I didn’t know what went wrong.  Does anyone can help on this?
    INFO 2007-12-13 17:05:06
    Execute step collect of component |NW_Uninstall|ind|ind|ind|ind|0|0|NW_GetSidMaybeProfiles|ind|ind|ind|ind|1|0|NW_readProfileDir|ind|ind|ind|ind|0|0.
    ERROR 2007-12-13 17:05:08
    FSL-02107  Path component contains reserved character ('"'): "
    ERROR 2007-12-13 17:05:08
    FSL-02106  Path contains reserved character ('"'): "
    cisbp103\sapmnt\BP1\SYS\profile\START_D82_cisbp199"
    ERROR 2007-12-13 17:05:08
    MUT-03025  Caught ESyException in Modulecall: Bad path component: ".
    ERROR 2007-12-13 17:05:08
    FCO-00011  The step collect with step key |NW_Uninstall|ind|ind|ind|ind|0|0|NW_GetSidMaybeProfiles|ind|ind|ind|ind|1|0|NW_readProfileDir|ind|ind|ind|ind|0|0|collect was executed with status ERROR .
    Regards,
    Ambrose Chung

    Hi,
    Go to <b>Registry</b>
    Navigate to the path:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\
    SAP<SAPSID>_< Instance number > :
    Under <b>ImagePath</b> you can find the Data as
    "C:\usr\sap\<SAPSID>\SCS00\exe\sapstartsrv.exe" pf="C:\usr\sap\<SAPSID>\SYS\profile\START_SCS00_<hostname>"
    Delete the Quotes after <b>pf</b> and start your Sapinst again it will work.
    Reward points if useful
    Regards,
    Srujana

  • \Folder path contains an invalid character. \

    I bought and Ipad plugged it into my computer and itunes said i needed the newest version of itunes to run the ipad. So i tried downloading version 10.6.1 and it said errors occurred while installing updates.If problem persists choose tools>download only and install manually. So i did that and then it said folder path contains invalid character. and it wont let me install it. I contacted itunes support and they told me to uninstall itunes which i tried doing but once again the same message poped up folder path contains invalid character. Cant get apps i had before on ipad without syncing to itunes please help.

    So i did that and then it said folder path contains invalid character. and it wont let me install it. I contacted itunes support and they told me to uninstall itunes which i tried doing but once again the same message poped up folder path contains invalid character.
    Perhaps try the following user tip:
    "not a valid short file name" and "invalid character" install errors

  • The folder path "" contains an invalid character - Can't instal Quicktime

    Every time i try to upgrade my Quicktime, or try to run iTunes, i get the error message
    'The folder path "" contains an invalid character'
    Haven't a clue as to what's causing it, or how to solve it.
    I have just installed XP again
    (Windows XP Profession BrOtHeR's Edition)

    Have a new PC now, so don't get this error.

  • I cannot open files in excel with error message "The file name or path contains invalid characters

    I cannot open files in excel with error message "The file name or path contains invalid characters

    Found the solution. The hardrive name was changed to "/" which is not a recognised file path character. So I changed the name to "Mac" then I was able to already open all files in excel and word

  • Does the . character a reserved character?

    Hi,
    I would like to search the following information in a full text index: *10.1139/f91-051* I am then submit the following query:
    select * from mytable where contains(my_column,'"10.1139/f91-051" WITHIN doi') > 0
    but it does not return any data. However, when I replace the *.* character by a _*, I can retrieve my document:
    select * from mytable where contains(my_column,'"10_1139/f91-051" WITHIN doi') > 0
    Does the *.* character a reserved character? But when I try to escape it, it does not work neither:
    select * from mytable where contains(my_column,'"10\.1139/f91-051" WITHIN doi') > 0
    What did I do wrong?
    In the same way, what query should I submit to find all the I.B.M. words from my index for exemple?
    Kind regards,
    Fred
    Edited by: user503159 on 31 juil. 2009 02:29

    I'm unable to reproduce this exactly as you've stated.
    A few things to note:
    - The double quotes in your query have no effect. There is no "phrase" operator in Oracle Text, tokens that follow each other are a phrase by default
    - The "-" character is a special operator, and needs to be escaped to be treated as a literal (you can precede it with a backslash or put braces (curly brackets) round the whole search term)
    - "\" and "/" are break characters by default.
    - "." is a join character ONLY within numbers. It's a break character within normal alphabetic text.
    Run the folliowing:
    -- drop table t;
    create table t (x varchar2(2000));
    insert into t values ('<doi>10.1139/f91-051</doi>');
    create index ti on t(x) indextype is ctxsys.context parameters ('section group ctxsys.auto_section_group');
    select token_text, decode(token_type, 0, 'Normal', 2, 'Zone Section') as "Token Type" from dr$ti$i order by token_type;The last query shows us what tokens are indexed. We should see:
    TOKEN_TEXT                                                       Token Type
    051                                                              Normal
    F91                                                              Normal
    10.1139                                                          Normal
    DOI                                                              Zone SectionSo we can run a query without the break characters
    SQL> select * from t where contains (x, '10.1139 f91 051 within doi') > 0;
    X
    <doi>10.1139/f91-051</doi>or we can run a query with the break characters in it, but with the "-" character escaped:
    SQL> select * from t where contains (x, '10.1139/f91\-051 within doi') > 0;
    X
    <doi>10.1139/f91-051</doi>The query that you claimed worked does not work for me because the "-" operator is not escaped (I'm on 11g - it's possible the behaviour is different in earlier versions, but unlikely)
    SQL> select x from t where contains(x,'"10_1139/f91-051" WITHIN doi') > 0;
    no rows selectedAs for your question about searching for "I.B.M.", you can search for "I.B.M." or "I B M" and it will find it. You can also set "." to be a SKIPJOINS character, in which case you can search for "I.B.M." or "IBM" (but not "I B M").
    Note there is a gray area for tokens which are partly numeric - "1.23ABC" will probably be indexed as a single token, whereas "ABC1.23" will probably be indexed as two tokens "ABC1" and "23". This is because for performance reasons the lexer does not backtrack - when it hits the "." in the first example it thinks it is handling a pure number and therefore treats the "." as a numeric join character.

  • Given filename or path contains Unicode or double-byte characters.Retry using ASCII characters for filename and path What does this mean? it happen when I publish an OAM

    Given file name or path contains Unicode or double-byte characters. Retry using ASCII characters for filename and path
    What does this mean? It is happening when I try to publish an OAM for Dreamweaver.
    Also: How can I specify the browser in Edge Animate? It is just going wherever. Are there no Preferences for Edge Animate?
    BTW. Just call it Edge. Seriously. Do you call it Illustrator Draw? Photoshop Retouching?

    No, my file name is mainContent.oam
    My project name is mainContent.an
    This error happens when I try to import into Dreamweaver. Sorry, I wasn't clear on that earlier.
    I thought maybe it was because I had saved my image as a png. So re-saved as a svg, still get the error.
    DO I have a setting is Dreamweaver CC that is wrong? Should I try this in Dreamweaver CS6? I might try that next.
    Why is this program so difficult? I know Flash. I know After Effects. I can work the timeline part just great. It's always in the export that I have problems.
    On a MacPro, 10.7.
    Are you an Adobe person or just a nice helper?

  • How to read text file contain chinese character ?

    Hi XI Expert,
    I have scenario to read text file contain Chinese Character using sender file adapter. but every i was check from sxmb_moni all the chinese character looks different. and also the target file also i has changes.
    Please advise me how to maintaine the chinese character in PI 7.0 SP17.
    Thank You and Best Regards
    Fernand

    Hi,
    Refer these threads..
    Receiver file adapter corrupting characters
    Problem in converting special characters in input text file
    Here is one more useful guide..
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42
    Regards,
    Sarvesh
    Edited by: Sarvesh Singh on Nov 17, 2008 3:47 PM

  • How to set a db path including chinese character?

    I used the bdb very well, but I found today c++ ENV API add_data_dir and set_data_dir have problem when the db path including chinese character.
    I noticed the help file said, it will be interpreted as a UTF-8 string, but I tried lots of time , still not working.
    for example,
    the db path is "c:\a1工",
    the code :
    m_pEnv->set_data_dir("c:\\a1工");
    m_pEnv->set_data_dir("c:\\a1&#x5DE5;");
    m_pEnv->set_data_dir("c:\\a1&#x5de5;");
    all not working.
    please help me.
    Thank you in advance.

    the blanks for view , not exist in code.
    c:\ \a1工
    c:\ \a1&#x5D E5;
    c:\ \a1&#x5d e5;

  • I am using lightroom 4 and i cant import my photos because their paths contains blackslashes (499)

    i am using lightroom 4 and i cant import my photos because their paths contains blackslashes (499)
    can yotell me what is this and why its doing this and how i can fix it

    Does the path contain a backslash. If so, change it.   It would help to show the path you are trying to import from.  You could try changing the file handling setting in Preferences to the second setting where backslash is considered illegal and is replaced.  Its probably better to just not use these characters anyway.

  • Library info directory path contains a file where a folder was expected

    Cannot reopen my Aperture library (Aperture 2) after successfully exporting a few images to desktop as jpegs and then closing Aperture. Tried to reopen Aperture and got the following message:
    Library info directory path contains a file where a folder was expected.
    The Aperture Library could not be created at “/Volumes/Data/Pictures/Aperture Library.aplibrary/Aperture.aplib”. Check the path and try again.
    No idea what has happened here. Anyone know how to fix?
    I have a referenced library on my data drive (4 drive Mac Pro) Data drive/d300 Masters folder/another sub folder/then all my images. Did nothing other than to adjust,crop and export images. Images all still there (can open in PS).

    Sounds strange.
    Did you try to double click your "Aperture Library.aplibrary"?
    Maybe trying to open backuped library...
    Or creating a new library by pressing the alt key when clicking on the Aperture Dock icon.

  • Member name contain invalid character '&'

    Hi,
    I am trying to deploy the HFM application in EPMA 11.1.2.1 and am getting the below error..
    "Member Name 'XXXX&xxxx' contains invalid character '&'"
    I thought member names support '&' character?
    Any idea?
    Thanks in advance!
    PM

    Looks like they have a catch-all down further in the HFM admin guide:
    Loading Metadata_
    When you load a metadata file, Financial Management replaces metadata with new metadata
    from the load file. Replacement is useful for making minor changes to the metadata, such as
    adding an account. For example, if your application includes a North America entity and you
    load entities from a metadata file, the attributes for the North America entity in the file replace
    the attributes for the North America entity in the application.
    Note: Do not use the ampersand ( & ) character in a metadata file. If you do, an error occurs.
    Loading large metadata files on the Web can result in a proxy timeout error. If this occurs,
    increase the Web proxy timeout setting or use the Win32 client to load the file.

  • FMLE will not install because of 1324 error, path has invalid character???

    FMLE will not install because of 1324 error, path has invalid character???
    Seems to be a somewhat common problem (by google search) for Adobe and Microsoft programs, but nothing on FMLE...
    Everything I have tried (from google'd suggestions) has not worked.
    I suspect that the installer is trying to install to an invalid path but I cannot find it in the registry or figure out why the error.  The program was previously installed and working, but after having some issues I tried to re-install and find myself here!
    Any help is greatly appreciated.
    HP Pavilllion dv6700 Laptop
    Intel Core2Duo T5450
    Vista 32-bit

    Solved!
    It would appear previous version could not be uninstalled because of invalid path {somehow over time windows had re-assigned drive letters such that previous location of install on external hard drive F: (as in registry), was now pointing to DVD drive F: and I assume generated the 1324 error, path has invalid character}.
    Used Revo Uninstaller to clear all traces of former install and "voila", fresh install of FMLE proceeded successfully.
    Hope this helps others with this error code.

  • [svn:fx-trunk] 10608: Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces

    Revision: 10608
    Author:   [email protected]
    Date:     2009-09-25 16:30:55 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-19648
    Modified Paths:
        flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

    Revision: 10608
    Author:   [email protected]
    Date:     2009-09-25 16:30:55 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Fix FB-19648: 'Terminate' action during debugging does not close the browser on Mac if path contains spaces
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-19648
    Modified Paths:
        flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

  • I want to set context path to 1 character like "/a"

              I use WLS6.1.
              I'd like to access
              http://localhost:7001/a/servletname
              to web application "a" or "a.war".
              but it doesn't seems work.
              (Returned "Http Error 404")
              Can't I set context path to 1 character,
              like "/a","/b",..."/z",etc?
              thanks for your answer.
              Kurose
              

    In this case you probably should submit this to [email protected] - it
              definitely looks like a bug. BTW, did you try 6.1sp1? This bug looks
              so obvious, so it's possible it was fixed in sp1.
              Kurose <[email protected]> wrote:
              > Thanks your reply.
              >>Maybe the problem you have is similar - does it work if you deploy
              >>aaa.war instead of a.war (and try http://localhost:7001/aaa/servletname)
              >>?
              > It works when WAR-File name is aa.war(Only 2 characters).
              > <http://localhost:7001/aa/servletname>
              > And on WLS6.02,a.war works.
              > <http://localhost:7001/a/servletname>
              > On on WLS6.1 it doesn't work.
              >>Did you application deploy successfully?
              > No exception when application was deployed.
              > But done "undeploy => deploy" on AdminConsole,
              > exception is occurring.
              > Dimitri Rakitine <[email protected]> wrote:
              >>Did you application deploy successfully? There is(was?) a bug
              >>in 6.1 using File.createTempFile which was preventing war's with
              >>archives in WEB-INF/lib with names less than 3 characters from
              >>working.
              >>
              >>Maybe the problem you have is similar - does it work if you deploy
              >>aaa.war instead of a.war (and try http://localhost:7001/aaa/servletname)
              >>?
              >>
              >>Kurose <[email protected]> wrote:
              >>
              >>> I use WLS6.1.
              >>
              >>> I'd like to access
              >>> http://localhost:7001/a/servletname
              >>> to web application "a" or "a.war".
              >>> but it doesn't seems work.
              >>> (Returned "Http Error 404")
              >>
              >>> Can't I set context path to 1 character,
              >>> like "/a","/b",..."/z",etc?
              >>
              >>> thanks for your answer.
              >>
              >>> Kurose
              >>
              >>
              >>--
              >>Dimitri
              Dimitri
              

Maybe you are looking for

  • How do I remove an app from the menubar

    I deleted an app form my lanchpad when it was requesting a password as resident on the menubar and when I try to quit it at the menubar it does not close.  How do I remove this app from the menubar?

  • Slow boot up

    hi i recently networked my computer with another to share files and the internet through a router, before i did this my boot time was around the 30 second mark with five programs at  startup, now with the same programs although the other computer is

  • Infopackage details in Update Rules

    Hi All. I need the InfoPackage name of a data mart in the update rules of the cube being updated by this data mart. There are two InfoPackages for this data mart, both updating the same cube. Depending on which one is being executed, different code w

  • TV Tuner or Video capture device for MBP

    I'm wondering if there is a device usb or expresscard34 that can allow me to watch cable TV or just a composite video input device that can be used with a cable box. I know there must be lots of devices for PPC Macs but which ones actually work on MB

  • Adobe Acrobat 8 Professional Vers.8.1.3

    Hello, I'm working with Acrobat 8 Professional Version 8.1.3 german. When using "F1" or "Help -> complete help Acrobat 8 Professional" to get the Acrobat Help Viewer it only opens a window with "html-format". How can I change ths without a complte ne