Client&user

hi sap guys..
I crated a new clinet 007 n i gave user name,n password...
my question is when i'am loging with new client..when i'am type t-codes...it showing you are nt authorized to use transaction...plz explain step by step,,i'am beginner only..
plzzz help me guys...
Thanxs&Regard
Srikanth Reddy

Dear Srikanth Reddy,
From your post what i can guss is that you have created a client 007.
did u follow the below steps after creating the new client:
1. Login to any other client and check the parameter "login/no_automatic_user_sap* to value 0"
2. Now login to the new client using sap* and password: pass
3. Local client copy from (SSCL) from source client to the newly created client with required profile
4. Post processing has to be done in SCC7
5. Now you can start using your client.
"And never give sap_all or sap_new to any user in a productive landscape"
reward if its useful.

Similar Messages

  • Creating NEW CLIENT,USER and PASSWORD Please

    Hi ..
    I am having this problem ,I am from SD-module. I am trying to work with sending and receiving IDOC's . Here i have problem with creating another logical system.could u please assist me in creating another client/user/password on my existed system.so that i can be able to send an idoc from one logical system to another logical system.i would appreciate your efforts.
    regards,
    SURIYA.

    Hi
    You can create a client using transaction code SCC4. Then you need to perform a client copy, use transcation SCCL to perform a local client copy from client 000 using SAP_ALL/SAP_CUST profile.
    Once you are done with you need to check whether the parameter login/no_automatic_user_sapstar is set to false (0). This can be achived in transaction code RZ10. You will have to restart the SAP server if the parameter value is altered(if not already 0).
    Once the parameter is set then u can login to the client using user SAP* and password "pass". For performing client copy u will log into the destination client that is the client newly created and using SCCL perform the client copy.
    Using BD54 u can create a logical system and in transaction SCC4 you can assign this logical system to the new client.
    Once you are done with client copy then DDIC user will also be there with the master password given during installation time.
    Using transaction SU01 you can create new users according to ur need and assign the roles/profiles as required.
    Once this is done you can peform the IDOC sending and recieveing activity in between those clients.
    If any more queries feel free to ask.
    Regards
    Sumit Jain
    [reward with points if the answer is useful]

  • CREATING CLIENT/USER/PASSWORD -EMERGENCY

    Hi ..
    I am having this problem ,I am from SD-module. I am trying to work with sending and receiving IDOC's . Here i have problem with creating another logical system.could u please assist me in creating another client/user/password on my existed system.so that i can be able to send an idoc from one logical system to another logical system.i would appreciate your efforts.
    regards,
    SURIYA.

    Hi,
    To set up a new client, from the SAP standard menu choose:
    Tools - Administration -Administration - Client administration - Client maintenance
    But usually the creation of the clients is taken care of by the basis administrators.
    Basis Components - Distribution (ALE) -  Sending and Receiving Systems -Logical Systems
    To define the logical systems in the distribution environment, choose Define Logical System.
    My advice is contact basis, coz they deal with realtime administration
    Regards,
    Sridevi
    <i><b>* Pls. assign points, if useful</b></i>

  • Client user ID

    I am using the 5.0 version of the VPN client. We are connecting to a 3030 concentrator. Once the client has connected is there any way to determine the user name that was used to log in?

    Refer to Configuration Information for an Administrator of VPN client configuration guide for more details
    http://www.cisco.com/en/US/products/sw/secursw/ps2308/products_administration_guide_chapter09186a008015cfd8.html#1130777
    Use the Configuration | User Management | Users | Add or Modify screen to configure a VPN Client user:
    Step 1 Enter a User Name, Password, and Verify Password. VPN Client users need a user name and password to authenticate when they connect to the VPN Concentrator; see "Gathering Information You Need" in Chapter 2 of the VPN Client User Guide for your platform.
    Step 2 Under Group, select the group name you configured under the section "Creating an IPSec Group."
    Step 3 Carefully review and configure other attributes under General and IPSec. Note that if you are adding a user, the Inherit? checkboxes refer to base-group attributes; if you are modifying a user, the checkboxes refer to the user's assigned-group attributes.
    Step 4 Click Add or Apply, and save the configuration.

  • Get the current client-user password

    Hello,
    I implement the following code:
      IWDClientUser user = WDClientUser.getCurrentUser();
      String name = user.getFirstName() + " " + user.getLastName();
    that works without any problems.
    But I need also the password of the current client-user.
    Is it possible to get the password?
    Patrick

    Patrick,
    you mean a "login"? the hash-value won't help you, because as Dominik already mentioned: it's a <b>one-way</b> has, that means you can derive the hashcode from the password and not vice versa.
    your solution would be e.g. to implement a saplogonticket authentication in your second web-server.
    kr, achim

  • The version of the ADF Essentials Client user library, 12.1.3.0.41.140521.1008, does not match ADF facet version 11.1.1.

    Hi,
    I downloaded the latest OEPE Pack 12.1.3 and the latest adf-essentials-client libs.
    I tried to create a new ADF-Project in Eclipse with Glassfish.
    I added the essentials-client libs and then i get this error:
    The version of the ADF Essentials Client user library, 12.1.3.0.41.140521.1008, does not match ADF facet version 11.1.1.
    br.
    Andy

    Andy,
    ADF Essentials 12.1.3 only support GF 3.1 officially. So please plan on using GF 3.1 version
    ~Shabari

  • I want to get desktop path for client user using webutil

    oracle database 11g
    oracle forms 10 g
    client windows
    i want to get desktop path for client user using webutil
    as i want to save file in this path

    To get the user's path to their Desktop is a two step process.  First, you have to echo the %USERPROFILE% to a output file and secondly, read the directory from the output file in to Forms.  The code would look similar to the following:
    /* When-Button-Pressed trigger */
    DECLARE
      v_temp_path VARCHAR2(250);
      v_temp_file VARCHAR2(12) := 'webutil.log';
      f_file Client_Text_IO.File_Type;
    BEGIN
      Client_Host('cmd /c echo %USERPROFILE%\Desktop > c:\'||v_temp_file);
      f_file := Client_Text_Io.FOpen('c:\'||v_temp_file, 'R');
    Client_Text_Io.Get_Line(f_file,v_temp_path);
    Client_Text_Io.FClose(f_file);
       b_dummy := WebUtil_File.Delete_File('C:\'||v_temp_file);
      --At this point, you have the path stored in the v_temp_path variable.
      --You can assign this variable to a block item or reference it directly in your code.
    END;
    When you reference the value of the v_temp_path, don't forget to wrap the value in double-quotes (" ") becuase the path will have spaces.  Since your plan is to write a file to the user's desktop, your call to FOPEN will look  like this:
    f_file := Client_Text_Io.FOpen('"'||v_temp_file||'"','W');
    Hope this helps,
    Craig...

  • Disable Data Connectivity of Client User

    i need some help from u fellows. how can i disable the data connectivity of client users.

    In oracle to make a connection every user needs a username & password, and if you lock that user accout as Eric mentioned then he/she would not be able to make connection through any program like sqlplus or ODBC. By sitting in oracle you cant prevent a user to use MS-Access but in order to import the data from oracle to Access they need the login credentials in oracle to get the data and if you block that then they cant have access to the oracle data.
    Daljit Singh

  • Solaris 10 NIS Client user account home directory

    Hi all,
    I am newbie of NIS in solaris and i am setting up NIS(central authentication of user) ,So related to this i have setup and server and client but
    i am getting problem while accessing user account in client side.
    in client side i can login user which i have created in server but it is not able to find its home dir .even though i added user with the -m option on server and home dir of user is created in server side .
    *(No directory! Logging in with home=/)*which i have created in NIS server.
    also i am not able to create any directories or files in the client system it says.
    bash-3.00$ mkdir a
    mkdir: Failed to make directory "a"; Permission deniedBoth the server and client have same domainname and NIS service is also running properly.
    on the server side this is the entry of the /etc/auto_home
    # Copyright 2003 Sun Microsystems, Inc. All rights reserved.
    # Use is subject to license terms.
    # ident "@(#)auto_home 1.6 03/04/28 SMI"
    # Home directory map for automounter
    +auto_home
    * SS09:/export/home/&here SS09 is the NIS server name and i can see it both server and client side .
    bash-3.00$ ypwhich
    SS09
    bash-3.00$
    bash-3.00$
    bash-3.00$ svcs nis/client
    STATE          STIME    FMRI
    online         11:53:05 svc:/network/nis/client:defaultSo please help me regarding this ...
    Thanks
    anuj
    Edited by: anuindia on Apr 16, 2009 11:02 PM
    Edited by: anuindia on Apr 16, 2009 11:03 PM

    Look over on http://docs.sun.com for the NIS guide for your version of Solaris.
    alan

  • Mac OS X Server 10.4.10-11 client user problems

    It appears that since updating to Mac OS X Server 10.4.10 (and now 10.4.11), running on an XServe G4 with 2GB of RAM, QuarkXPress Passport 6.5 (and also 6.52) crashes at the splash screen when newly created network users launch it on client computers running OS X 10.4.8, 10.4.10 and 10.4.11. QuarkXPress runs fine when logged in as the computer owner with administrator rights.
    Users created under Mac OS X Server 10.4.8 do not have this problem and are able to launch QuarkXPress 6.5 or 6.52 without a problem on these same computers.
    Quark license verification is supplied by a QLA 4.5 server running on a seperate computer to the OS X Server system.
    Can anyone give me any pointers as to what may be causing the crash? A couple of extracts from the crash log are listed below - the full log is available if anyone can decipher it:
    Date/Time: 2007-12-05 14:02:19.702 +0000
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuarkXPress
    Path: /Applications/QuarkXPress 6.5/QuarkXPress Passport.app/Contents/MacOS/QuarkXPress
    Parent: WindowServer [53]
    Version: QuarkXPress version 6.52 (6.51)
    PID: 238
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000009
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x90003ba0 szone_malloc + 616
    1 libSystem.B.dylib 0x90003600 malloc + 632
    2 com.quark.QuarkXPress 0x00670a0c operator new(unsigned long) + 64
    3 com.quark.QuarkXPress 0x00616c98 std::basic_string<char, std::char_traits<char>, std::allocator<char> >::init(char const*, char const, std::allocator<char> const&, std::randomaccess_iteratortag) + 96
    4 com.quark.QuarkXPress 0x0062f7ec std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basicstring[in-charge](std::basicstring<char, std::char_traits<char>, std::allocator<char> > const&) + 56
    5 com.quark.QuarkXPress 0x00645408 std::_vector_imp<std::basicstring<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, (bool)0>::insert(std::basic_string<char, std::char_traits<char>, std::allocator<char> >*, unsigned long, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 872
    6 com.quark.QuarkXPress 0x0045eccc PPDPath::SetPPDPath(char**, unsigned char) + 216
    7 com.quark.QuarkXPress 0x0045555c PPDMergeOSXAndClassic(char**, char**) + 340
    8 com.quark.QuarkXPress 0x004556bc PPDUpdate(unsigned char) + 328
    9 com.quark.QuarkXPress 0x004557b4 PPDInit() + 56
    10 com.quark.QuarkXPress 0x00016214 initialize() + 19176
    11 com.quark.QuarkXPress 0x0048a8e4 main + 224
    12 com.quark.QuarkXPress 0x000038d0 _start + 380
    13 com.quark.QuarkXPress 0x00003750 _code_start_ + 48
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090003ba0 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x84004444 xer: 0x0000000020000004 lr: 0x0000000090003a00 ctr: 0x0000000090003938
    r0: 0x0000000000000008 r1: 0x00000000bfffec70 r2: 0x00000000fffffffe r3: 0x0000000002000038
    r4: 0x0000000000000000 r5: 0x0000000005f66510 r6: 0x00000000ffffffff r7: 0x0000000000000001
    r8: 0x0000000000000001 r9: 0x0000000000000001 r10: 0x0000000002000054 r11: 0x00000000020000d0
    r12: 0x0000000090003938 r13: 0x000000000522d97c r14: 0x0000000000011740 r15: 0x0000000000010032
    r16: 0x0000000000000019 r17: 0x000000000000000a r18: 0x00000000bb1a85b2 r19: 0x00000000007cb618
    r20: 0x00000000a0003948 r21: 0x00000000ffffffff r22: 0x0000000000000002 r23: 0x0000000000000024
    r24: 0x00000000a0003390 r25: 0x0000000005f6653c r26: 0x0000000002000000 r27: 0x0000000005f6653c
    r28: 0x0000000000000003 r29: 0x00000000a0003390 r30: 0x0000000005f76d50 r31: 0x0000000090003948

    Hi
    Have you tried repairing privileges and permissions on the affected clients?
    You could also try creating a new admin account on the affected clients and logging in with that. Launch Quark and see if it behaves the same way. If it does not then its more likely some damaged/corrupted plist or preference in the primary admin account’s Home/Library/Preferences folder.
    It could also be down to a damaged/corrupted font or Xpress Preferences file. Running the 10.4.10/11 update could be a red herring and its just coincidence that the issues you are seeing happened after the update. Generally an application crashes on launch or when opening a file because its had a problem building the font list or trying to access/load a font when the file has been requested. If your Font Management system is Suitcase remove the Suitcase Preferences folder from /Users/Home/Library/Preferences and restart the mac. Hopefully Quark should now launch. Redefine font sets from there. Quark keeps its Preferences file in /Users/Home/Library/Application Support/Quark.
    Of course it could be none of these in which case start looking at drive/directory issues or possibly system issues. You may be looking at an Archive/Reinstall of the OS or Reinstall of the application. Don’t rule out a rebuild either.
    Hope this helps, Tony

  • CE 7.2 NWDS wdp ws client user authentication error

    Hello CE 7.2  experts !
    I am running a CE 7.2 sp 01 env with NWDS. In my landscape I have some webservices running on PI 7.1.
    I am trying to develop a webdynpro webservice client. When run gets user authentication errors.
    I have configured the Service Groups, provider systems, http destinations etc for this webservice.
    After I have successfully build and deployed the wdp app I am getting error on the wdp gui screen like this:
    Exception on execution of web service with WSDL URL 'http://xxxxxxx.lxx.xxxx.xxx:50000/dir/wsdl?p=sa/595aaad7bedb3cf89546e4651ea9954d' with operation 'GetBudgetRequest_out' in interface 'GetBudgetRequest_out'
    And in log trace:
    Invalid Response code (401). Server <http://xxxxxxx.lxx.xxxx.xxx:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=SLF&receiverParty=&receiverService=&interface=GetBudgetRequest_out&interfaceNamespace=http%3A%2F%2Fsfso.no%2Fagresso%2Fslf> returned message <Unauthorized>. Http proxy info:  none
    [EXCEPTION]
    com.sap.engine.services.webservices.espbase.client.bindings.exceptions.TransportBindingException: Invalid Response code (401). Server <http://xxxxxxx.lxx.xxxx.xxx:50000/XISOAPAdapter/MessageServlet?senderParty=&senderService=SLF&receiverParty=&receiverService=&interface=GetBudgetRequest_out&interfaceNamespace=http%3A%2F%2Fsfso.no%2Fagresso%2Fslf> returned message <Unauthorized>. Http proxy info:  none
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.handleSOAPResponseMessage(SOAPTransportBinding.java:561)
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call_SOAP(SOAPTransportBinding.java:1316)
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.callWOLogging(SOAPTransportBinding.java:952)
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call(SOAPTransportBinding.java:907)
    at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DInterfaceInvokerImpl.invokeOperation(DInterfaceInvokerImpl.java:76)
    at com.sap.tc.webdynpro.model.webservice.model.WSGenericModelClassExecutable.execute(WSGenericModelClassExecutable.java:73)
    at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModelClassExecutable.execute(WSTypedModelClassExecutable.java:49)
    at com.sap.demo.wd_slf_proj.wd.comp.slf_getbalancecomp.SLF_GetBalanceCustom.executeRequest_GetBudgetRequest_Out(SLF_GetBalanceCustom.java:189)
    at com.sap.demo.wd_slf_proj.wd.comp.slf_getbalancecomp.wdp.InternalSLF_GetBalanceCustom.executeRequest_GetBudgetRequest_Out(InternalSLF_GetBalanceCustom.java:153)
    at com.sap.demo.wd_slf_proj.wd.comp.slf_getbalancecomp.SLF_GetBalanceCompView.onActionSendReq(SLF_GetBalanceCompView.java:187)
    at com.sap.demo.wd_slf_proj.wd.comp.slf_getbalancecomp.wdp.InternalSLF_GetBalanceCompView.wdInvokeEventHandler(InternalSLF_GetBalanceCompView.java:165)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:142)
    at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:75)
    at com.sap.tc.webdynpro.clientserver.phases.ProcessingEventPhase.doHandleActionEvent(ProcessingEventPhase.java:159)
    at com.sap.tc.webdynpro.clientserver.phases.ProcessingEventPhase.execute(ProcessingEventPhase.java:94)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequestPartly(WindowPhaseModel.java:162)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doProcessRequest(WindowPhaseModel.java:110)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:97)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:514)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:55)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doExecute(ClientApplication.java:1652)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1466)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingStandalone(ApplicationSession.java:884)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessing(ApplicationSession.java:856)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:343)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:315)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
    at com.sap.tc.webdynpro.serverimpl.wdc.DispatcherServlet.doContent(DispatcherServlet.java:76)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doPost(AbstractDispatcherServlet.java:62)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:152)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:38)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:400)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:203)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:438)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:427)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:80)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:268)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:54)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:447)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:264)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:315)
    Any help / hits are appreciated.
    Hope to get a prompt solution.
    best regards,
    Ajeet Phadnis

    Hi,
    I hope please upgrade SP01 to SP05.
    Please look at these two forums
    [forum1|Error executing webservice in BPM; and [forum2|Call to sr.esworkplace fails;
    Hope this is help full for u
    Regards
    Vijay

  • 10.5.4 Server/10.3.9 Client user home mounting issue

    Hi all, hopefully someone can help me out with this. I know this might be an AFP issue but if you read on you'll see why I think it might be Open Directory's "fault".
    I'm the admin at a school running Leopard Server with Leopard, Tiger, and Panther clients. The server is running Open Directory and is the home for all user accounts.
    Leopard and Tiger clients can log in fine. Panther clients begin to login, and between the visual acceptance of the password and actually showing the user's desktop, something goes wrong. It informs me that the user cannot log in at this time because an error occurred, and that the home directory is on an AFP or SMB share.
    It's an AFP share, but I don't understand why the Leopard and Tiger clients are kosher and the Panther ones are not.
    Advice?
    I've already tried turning Kerberos on/off, etc. I have also discovered that I can mount AFP volumes just fine if I log in locally and then connect to the user's account manually via Go-->Connect to Server.
    Thanks!

    Oops, While playing around I had restricted the service access to just 2 accounts that were not the ones i was testing network logons from. doh!

  • ADR3 on MacBook cannot see clients' user name

    I have just installed ARD 3.2 admin on a MacBook running 10.4.10, and it cannot access two servers on our network, one running 10.3.9 and the other with 10.4.9. Both have the 3.2.1 client installed. The admin console sees the clients but shows that they do not have ARD user names or passwords available, and so is unable to connect to clients. Yet I also have ARD 2.2 admin running on a different, older Mac (10.4.10) on the same network in another building, and it allows me to connect to these two servers without any problem. On both admin computers, I log in locally with the exact same account name (both full and shortcut names) and password, so they should be recognized the same on the client machines. Tried deleting clients from list on the MacBook, quitting, and relaunching--no effect.

    Sorry - let me start over...
    Computer 1 has internal HD, and 2 external FW HDs each with 3 partitions. When everything is fired up, I have 7 volumes mounted on the desktop of Computer 1. Computer 1 has User 1, the only account on that machine. Computer 1 is connected to Airport extreme base station via ethernet.
    Computer 2 has user 2, the only account on that machine. It is wirelessly connected to the airport extreme.
    I used to be able to connect from Computer 2 to Computer 1 using User 1's account info, and then chose one of the 7 volumes AND user 1 (total of 8 items listed) to mount on the desktop of Computer 2 as a network item. I could mount as many as I wanted.
    Now, when I apple-K to connect from Computer 2 to Computer 1 and use user 1's account info, I am presented with a list of 2 items to mount: user 1 and a folder called postfix (for which I have no permissions).
    I think this situation is exactly the same as Roastaman's problem entitled "No HD volumes, just users. What's up?"

  • Migrate local client users to OD users

    Good afternoon.
    In the last year I have been hired at a company with over 140 client machines and numerous intel xserves. The problem (and the nightmare) is that they have never set up the client machines and users as part of the OD.
    For the obvious reasons of management, single sign on, and security I would like to implement an OD company-wide with replicas. The main hurdle right now is how do I migrate the local user accounts on each client to OD accounts and keep the local user home folders? I do not need to make these users portable users, just want them to authenticate against the OD.
    Also how do I handle authentication for users with laptops when they are offsite?
    Thanks!

    Hi Brian,
    What we did is create the user with the same name in OD. We set their home folders to /users so that the home folder would point to their local hard drive. We then removed the local user, but did not remove their home folder. The home folder gets renamed, so you need to rename it back, and assign permissions to the OD user. Login as the network user and it works.
    For laptop users, we set them up as mobile users. They sync their network home folder (in /users) to their local home folder (also /users) therefore there is no real sync. They can then authenticate offline.
    All the best,
    Robert

  • BCC will not show recipients in Mail app - for IMAP client user

    Our office iMac was just upgraded to Mavericks.  The Apple mail app (which we use via IMAP to receive our gmail) will not show BCC recipients on sent mail.  Not sure what other info you might need.
    Yes it did work prior to Mavericks upgrade --lots of other quirks that are just user preference issues but this is by far a concern because we need to keep track of school sent emails.  So far the only solution has been to use the gmail client via web interface -- hoping there is a different solution!
    Thanks for any help
    Joanne Bartolotti
    ST Robert School
    San Bruno

    John -- Thank you for your reply. 
    When we send the email we (our user end) can see the recipients in the BCC field (good)
    When the email is delivered they (the recipient) cannot see all the other emails (good)
    "Susie" (who was on our original BCC list as a recipient) calls and says I did not get the email - We go to our sent folder and click on the sent email to verify the email address we used but (and here's the issue) it says "No recipients"
    Prior to installing OSX Mavericks -- it listed ALL the recipients in our sent folder copy of the email (this was very helpful to us)
    To date the ONLY solution has been to use the web version of gmail -- My question is (and please know I have done a number of checks on this process) Why did it work BEFORE upgrading to Mavericks and why does it not work NOW?  Our school secretary is convinced it is "my fault" for upgrading the system -- I am convinced there is a user error since she NEVER lists anyone in the TO field
    She will NOT use the web interface because it takes "too much time" -- for this my response is -- then fix it yourself! (Sorry 10 days left of school -- tech coordinator frustration creeping in -- tired of id10t erros -- should have waited to upgrade until no one was around and NOT tell them!)
    Joanne

Maybe you are looking for

  • How to delete users listed in Maintenance

    Just ran across an archived query with this exact problem, and a pointer to how to discover the answer, so I thought I'd add some details: When you have created and removed user accounts, the mail accounts end up stuck in the Cyrus database. Here's h

  • I want a notification sound when I receive a new email

    I have the sound turned on Windows 7 Enterprise, and I have checked in my Outlook 2010 to make a notification sound when I receive a new email, but no sound is made when I receive an email.  Can anyone advise me how to get this to work?

  • Unable to buy

    Hello, I'm trying to buy a PSE10 upgrade since last Saturday.  OK, it was weekend. The Adobe store says originally "processing..."   then Pending...  now is showing no purchase history. See attached print screens.  How can we solve that situation? Th

  • Exporting full size Jpegs from DNG converted files

    Hi there I imported some RAW files into Lightroom 4, which I then copied/converted to DNG, then edited them. I now want to export them as full size, high-quality jpegs but I only seem to be able to export them at a maximum of about 800kb, which is fa

  • Frozen price in material ledger

    Dear all, I need to have some informations about frozen price functionality in material ledger. In particular: - what is frozen price? - where in customizing it is set? - what is the system behavior using frozen price during production order confirma