Where to set UserID and Password for NFS file share in Central File Adapter

Hi All,
Does anyone know if/where it is possible to set the userID and password if you want to connect to an NFS fileshare with the central XI30 file adapter?
Cheers,
Frank

Hi Frank,
The file adapter uses user ID SAPSERVICE... with the addition of the system ID of your SAP XI system. So if your system ID is EXD the user id which needs read/write access should be SAPSERVICEEXD.
Have fun

Similar Messages

  • How set  UserName and Password for HTTP Basic Authentication for a servlet

    Hi..
    How set UserName and Password for HTTP Basic Authentication for a servlet in JBoss server?
    Using Tomcat i can do it .(By setting roles in web.xml, and user credintails in tomcat-user.xml).
    But i dont know how do it in JBOSS..
    I am using Netbeans and Eclipse IDEs.. Can we do it by using them also!?
    Thank u

    Hi Raj,
    You can do this by creating a Login screen for the users and check the authentication of each user in PAI i.e. PROCESS AFTER INPUT.
    Store the user information in a database table and check the username and password when the user enters it.
    You can display password as *** also. For this double click on input box designed for password and goto Display tab. Select Invisible in the list and check it.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN <fcode for submit>.
          SELECT SINGLE uname pwd
           FROM <DB table>
           INTO (user, pass)
           WHERE username = user AND
                   password = passwd.
          IF sy-subrc = 0.
    <Go to next screen for further processing>
          ELSE.
    <Display Error message and exit>
          ENDIF.
      ENDCASE.
    Regards,
    Amit
    Message was edited by:
            Amit Kumar

  • UserID and password  for DBA

    I installed SQL Developer but I do not know what is the userID and password for DBA

    Pl post your OS details, along with a link to what you downloaded and installed. SQL Developer is a client developer tool - it does not include a database. Did you install any database software and create a database ? Or already have a database that you can connect to ?
    HTH
    Srini

  • BSP - UserId and Password for Internal Users - Anonymous for other users

    Hello,
    We developed an application via BSP's. This application can be accessed by two kind of users.
    1. External Users, with should access the page without using a userId and password.
    2. Internal Users, they will have more authorisation and need to specify their userId and Password.
    How can we accomplish this? I tried internal aliases, but can't get it to work properly.
    In the first service 'zbsp' I didn't specify a userId and password in sicf.
    Then I created an internal alias 'zbsp' referring to this 'zbsp'. In this alias I specified a userId and Password, but the system still asks for a userId and Password. (and after logging in the system gives the following error: The application name in URL .../bc/bsp/sap/zbsp2/uat_report.htm is invalid.)
    What did I do wrong? Or are there other ways to accomplish this?
    Greetings,
    Bart

    Take a look at the following mesaages that discussed the whole SSO and SSO2 ticket logins.
    As for a way to handle the two different login types. Well first and formost - active the SSO Tickets on your system.  Set your BSP up for that.
    Then create a new starting page with an alias to the pöublic section for BSP's in your system. On this page make two links.
    For your external users - one that redirects to your BSP passing the user and password in the url for the "read only external user" - that's the sap-user=name here&sap-password=passwordhere.
    For your internal people give them simply the link to the BSP which when they click it will see no user name and password and redirect them to the BSP login.
    Make sure you setup the BSP login according to SAP note 517860 and follow the instructions from http://help.sap.com/saphelp_nw04/helpdata/en/1d/13c73cee4fb55be10000000a114084/frameset.htm using the supplied SYSTEM_PUBLIC)
    It's a bit basic but it works, we do it
    Oh and setting up the system for the SSO (transaction sso2) is very very simple!!

  • Losing ftp userid and password for all sites

    DW CS5 Version 11 Build 4913 on Snow Leopard 10.6.3. My Dreamweaver was updated yesterday I believe. Today, all my sites lost their ftp userids and passwords. I put information back in and now, once again, the information is missing. I don't know what to make of this. Is the problem related to the update or is it just post hoc ergo sum. I have a slight suspicion that Skype (one release behind) might have something to do with this.
    What would you do?
    Thanks in advance,
    Tom

    I think the  problem may be solved. I cleaned out the Mac keychain of related entries, and updated Skype. Interestingly, the Skype keychain entry  had information for one of the web sites. Hmmm.

  • Logged in thru facebook now cant set username and password for PS3

    I signed up a year ago. Logged in thru facebook. Now i see a spotify app has been added to my PS3... Im trying to login but its asking for a username / password. I got to my account and am given a # of 126681961 as my user name and i attempt to activate a password, it says an email has been sent to the hotmail account associated with my facebook account but I have not recieved any email and have attempted mulitple times. How do I set my username and Password without all the frustration or by changing my FB info??? thank you

    I'm not sure about the status of that bug in 2.2.5, but it has been
    resolved in our internal 2.3 builds.
    I think that you can work around this problem by enumerating your
    persistent types in system.prefs instead of in the data store. See our
    documentation for more information on how to do this.
    Basically, if I recall correctly, the problem is when retrieving the
    list, but not when connecting to the data store for other purposes.
    -Fred
    Weidong <[email protected]> wrote:
    We are using KODO 2.2.5 right now and We have business requirement that we
    should not keep database user name and password in system.prefs. I
    followed the instructions that you wrote in Feb 12 2002 post. But it still
    has the error that exactly like Bug #76. When we leave the user name and
    password out of system.prefs, we get the error.
    Is this bug(#76) fixed for 2.2.5? And how can we work around it?--
    Fred Lucas
    SolarMetric Inc.
    202-595-2064 x1122
    http://www.solarmetric.com

  • How to set username and password for a tcode ?

    Dear Gurus,
              Greets..................
    Pls provide me solution for my scenario. My program is module pool program.It has been assigned by a Tcode.when the end user enter the tcode in command box,I should display a small screen with username and password(****).If username and password is correct,it should allow the end user to execute that particular tcode.If not i should display warning message that he is not eligible to access that program.
    Thanks & Regards.
    Raj

    Hi Raj,
    You can do this by creating a Login screen for the users and check the authentication of each user in PAI i.e. PROCESS AFTER INPUT.
    Store the user information in a database table and check the username and password when the user enters it.
    You can display password as *** also. For this double click on input box designed for password and goto Display tab. Select Invisible in the list and check it.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN <fcode for submit>.
          SELECT SINGLE uname pwd
           FROM <DB table>
           INTO (user, pass)
           WHERE username = user AND
                   password = passwd.
          IF sy-subrc = 0.
    <Go to next screen for further processing>
          ELSE.
    <Display Error message and exit>
          ENDIF.
      ENDCASE.
    Regards,
    Amit
    Message was edited by:
            Amit Kumar

  • SECURITY ISSUE! Userid and password for email stored as raw text in dump file!

    If you have set up email notifications, the dump for the ix2, possibly others as well, lists your email address, username, and password in readable text in the \procs\ps.out file.  This is a blatent security violation and needs to be fixed immediately!

    Interesting...I have not been able to duplicate the issue.  I have reconfigured email notifications multiple times and collected a dump and do not see the info in the ps.out log.  However, it was in the very first dump I collected off of the ix2.  Here is a screenshot of what was in there...I have of course blacked out secure info.
    Its possible that the smtpsend process was hung and thats why it showed up in this log.  I also tried to duplicate this by unchecking/checking the send email notification box and clicking apply multiple times while a dump was being generated.  I no longer see what I saw before...I suppose it was a fluke, but this really should be looked into.

  • Where to set creationPolicy and borderThickness for s:Group?

    I'm porting a Flex 3.1 application to Flex4.5.
    Here is the Flex 3.1 code:
    <mx:Canvas creationPolicy="auto" borderThickness="0" ...>
         <mx:HBox >
              <mx:Image .... />
         </mx:HBox >
    </mx:Canvas >
    This is the Flex 4.5 code I got so far:
    <s:Group ...>
        <s:layout >         
             <s:HorizontalLayout ..... />
        </s:layout >    <mx:Image ...  />
    </s:Group>
     ~I could not find the place to set createPolicy and borderThickness with Flex 4's s:Group. Is Flex 3's mx:Canvas equivalen to s:Group in Flex4?
    I know s:Panel has the creationPolicy, but I do not want to use Panel. Any suggestions? Thanks.

    Group's aren't skinnable.  I think the intent is that they're job is  simply to manage layout, so if you want a border, you wrap your group in  another component like BorderContainer.
    As for  creationPolicy, I'm guessing that you're Canvas was being used in one of  the mx Navigator classes (TabNavigator, Accordion, etc.).  You can wrap  your BorderContainer in a NavigatorContent component to manage creation  policy.
    <s:TabNavigator>
        <s:NavigatorContent>
             <s:BorderContainer>
                 <s:Group>
                 <s:Group>
             </s:BorderContainer>
        <s:NavigatorContent>
    </s:TabNavigator>
    Message was edited by: -Hob

  • How to find/create  SSO userid and password for oracle forms

    hi all,
    I have applied sso to one of my forms application by creating entries in the formsweb.cfg file.
    ssoMode=true
    ssoDynamicResourceCreate=true
    now single-sign-n has been applied to the forms application.What will be the user-id password that must be entered at the sso-login page.
    Do i need to create a separate sso user in metadata repository to login to this forms application?If so , please tell me how to do it.
    Thanx:)

    There are two types of orcladmin accounts. The first (cn=orcladmin) which is typically used to login to Directory Manager, is the superuser. He has rights into all parts of OID. The second type is the realm orcladmin user (cn=orcladmin,cn=Users,<your_realm>). There will be one of these for each realm .
    Login in to Oracle Diectory Manager as orcladmin , and :
    Navigate to Entry Management > your_realm > cn=Users > cn=orcladmin
    A sample realm would be dc=com > dc=oracle > dc=us
    Scroll on the right side to "userpassword" and edit the value
    Save changes and :
    Retry logging in to OIDDAS as orcladmin

  • How do I specify a particular Proxy Server, port, user-ID and password for file downloads

    We are attempting to deploy Creative Cloud trial applications to a couple of users for testing purposes.
    This is a corporate environment where we need to specify a particular proxy server by IP address, and port with a User-ID and password for identification in order to download files.
    The Creative Cloud app appears to be ignoring the proxy settings in the browsers installed on the machine used to attempt a download. The Adobe Application Manager Enterprise Edition wants you to already have the files available.  All technical support had is a white list, no help on how to specify a particular proxy server.  Do we have to obtain media from Adobe, or is there a way to download these?
    Thanks

    Creative Suite Enterprise Deployment | Adobe Developer Connection

  • How to recover the userid and password with out losing data in c drive

    Hi, i have ibm server and installed windows server 2008 r2 standard. i forgot the userid and password for login so i used the password crack tool after that try to login but it shows " The login credentials are in correct" so how to login to
    system and get the c drive data safely with out loose.

    Hi,
    According to your description, I assume you have forgotten the administrator’s password. If you have another administrator account, you can use it to reset the password.
    If you don’t have another administrator account, then there is no Microsoft recommended way to reset passwords due to security considerations.
    Here are some similar threads below I suggest you refer to:
    Forgot Password for Windows Server 2008 R2
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/cc3a6a12-66e9-4a06-97fd-2a5c89d627bc/forgot-password-for-windows-server-2008-r2?forum=winservergen
    forgot windows server 2008 r2 admin password
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ab435f7e-3927-4fda-a991-80f42e18089b/forgot-windows-server-2008-r2-admin-password?forum=winservergen
    Best Regards,
    Amy Wang

  • SSO Configuration not working - Still asking for Userid and password

    Hi Guys,
    I have configured Portal to use with backend server. Configured WAS & ITS and created System Alias.
    For Testing SSO I did following steps on portal:
    System Administration > Support > SAP Appliction > SAP Transaction
    Selected system Alias and tcode se12. Selected SAPGUI for HTML. Pressed Go.
    Instead of SE12 screen, I get Logon Screen asking for USERID and password.
    I should be getting SE12 screen directly without entering USERID and PASSWORD.
    I tested with Transaction iView (SE12)  and getting the same logon screen. After entering userid/password  it displays SAP Easy Access menu instead of displaying SE12
    Please help.
    Thanks a lot.
    mini

    Hi Sandeep.
    Thanks for your reply. Here are the answers to your questions:
    1. Is the username same in the portal and the backend that you are trying to connect, ensure that there is the same username that exists in the system you want to connect to. YES
    2. The ticket is imported properly- check the ACL and Certificate list in Tcode STRUSTSSO2.
    Ticket is valid from 01 Jan 2009 to 14 Mar 2012.
    3. Check for the parameters in place login_accept_ticket = 1 and login_create_ticket = 2 and icm_hostname_full is set to FQDN. 
    In RZ10 it has 3 parameters:
    login/accept_sso2_ticket = 1
    login/create_sso2_ticket = 2
    icm/host_name_full = sapecc6.tri.com 
    4. What is the result when you test the system connection?
    WAS & ITS Connections are successful.
    Connection test for Connectors is giving following results:
    Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    My Connectors Details:
    Application Host : sapecc6
    Gateway Host : sapecc6.tri.com
    Gateway Host : 3301
    SAP Client : 800
    SAP Client : EC7
    SAP System Number : 01
    Server Port: 3201
    System Type: SAP_R3
    I am using same userid for Portal and backend.
    5. Are the 2 systems that you want to configure SSO in the same domain?
    I am trying to connect R3 to Portal.
    Please give me directions to fix the problem.

  • My laptop (HP Pavilion) will not allow me to upgrade or download Firefox without logging in as Administrator, and I don't recall ever setting up a password for Administrator...I'm the only user of the laptop. How can I get around this?

    I was trying to upgrade to the newest version of Firefox, and when I downloaded it, and clicked on run, it took me to a login box, where I had to choose whether to continue as current user or login as Administrator. When I clicked on continue as current user, nothing happened. When I tried logging on as Administrator, I used all the passwords I could think of that I use and nothing was accepted. Id on't recall ever setting up a password for Adminstrator on this computer, so I don't know what to do. I even deleted the older version of Firefox thinking that might help, but it didn't work either, and now I don't even have that! Help!

    What iPhone do you have? You can check in settings>>general>> about.
    If you have a 3G you cannot update beyond iOS 4.2.1. The 3G is over 4 years old an was discontinued over 2 1/2 years ago. You need the latest ios to run the latest versions of some apps. If you have a 3GS you can update.
    If your phone is not responding, reset it by pressing and holding down both the home button ad lock/ sleep button simultaneously until the Apple logo appears.

  • How to set username and password when using Proxy class for SOCKS5?

    Hi all,
    I use the proxy class for SOCKS5, so need to set username and password, I don't find where can I set the value. whether the API support it.
    Thanks in advance!

    System.getProperties().put("proxySet", "true");That does nothing. Remove.
    System.getProperties().put("proxyHost", getProxyHost());
    System.getProperties().put("proxyPort", getProxyPort());You should be setting socks.proxyHost and socks.proxyPort here.
    System.setProperty("java.net.socks.username", getSOCKSUsername());
    System.setProperty("java.net.socks.password", getSOCKSPassword());
    Authenticator.setDefault(new ProxyAuth(getSOCKSUsername(), getSOCKSPassword()));You either need the first two lines or the third, not both. See the last link posted above.
    1. After I set the value, I connect internet by proxy, how the proxy server knows the values?Because Java tells it during the SOCKS handshake.
    2. In my app, I just set the values in the system properties, then JVM does remaining work? Remaining work is not concerned?Should be OK unless you have to connect to a different SOCKS proxy from the same JVM, but that kind of thing is problematic anyway due to the curious Authenticator design which is set globally, not per connection as you might expect.

Maybe you are looking for

  • Nokia c5-03 defects

    hi all, I m from india. I bought my nokia c5-03 in april 2011. Initially i started getting error "sd card not detected". I had to reseat the sd card to get it detected. This error went away permanently after i upgrded the available software & reforma

  • InfoSet with more than one cube

    Has anyone created an infoset with more than one cube? Are there any hints for to pay attention? Regards Chäsitzer

  • Hardware load balancing for 9iAS Release 1 (1.0.2.2.2)?

    Hello - we are hoping to deploy a Forms 6i application (SungardSCT Internet Native Banner) with on a group of Solaris V490s behind a pair of F5 BigIP 1500s using SSL. Have done several searches and can only find info for 9iAS Rel 2 and 10g. Can anyon

  • Use of Activate anyway

    Hello all, While activating any object (say a function module or report), if the code has some syntax errors , a popup comes with 3 options : Activate anyway , process errors , cancel. I want to know what is the use of "activate anyway". thanks in ad

  • How to display format mask as hint to user

    Dear all how can i display format mask as hint to user in concurrent program parameter run-time window? value set type is fnd_date i.e From Date |________| DD-Mon-YYYY thanks Roman