AD users not downloading user template from AD+OD Leopard server

I have an OD master Leopard server that is also bound to AD for user accounts. The AD users are added to OD groups. The OD groups have managed preferences including mobile account settings. When I log into the AD+OD bound Leopard client as an AD user, the user template is not copied from the Leopard server to the client. The user template does get copied down to the client if I log into the Leopard client as an OD user in the same OD group. I noticed that the home folder path of an AD user is set to use SMB instead of AFP. I have tried to change this in WGM to use the AFP path but the setting does not hold after I click save. Always reverts back to the SMB home folder path which is the same as the AFP path except for the SMB at the beginning for example: smb://servername/networkusers/username instead of afp://servername/networkusers/username. I have set the AD plugin on the clients to use AFP but that still did not work.
Has anyone had any luck with this? Using a Leopard OD master server also bound to AD to host synced mobile accounts. On Leopard clients the user template is copied down to the clients from the server when the AD user first logs into the client?

Hi Fred,
That worked! I thought it was something on the AD side not knowing the correct afp home folder path. And I thought the mobile account settings were enough using WGM. Never thought of also needing to set create mobile acount on login for the AD plugin but that makes sense.
Thanks again for your help.
-Bob

Similar Messages

  • How to download a template from BDN to a program?

    Hi,
    There is an excel sheet in BDN(t-code-oaor). I need to call this template in a report.
    After that I will fill data in this excel and download it on the local PC.
    I need suggestions that how can I do it?

    This is  sample prog for downloading the template from BDN to local system.
    REPORT  YVAI_SV_LOC.
    type-pools : slis.
    Tables containing the Fields for appl. toolbar on selection screens.
    tables : sscrfields.
    Business Document Navigator: Internal Connection Table for the
    download of excel template.
    data:  begin of i_bds_conn occurs 10.
            include structure bdn_con.
    data:   objecttext  like toasp-objecttext,
            objecttext2 like toasd-objecttext,
            objecttext3 like toasr-objecttext,
            ntext       like tojtt-ntext,
         end of i_bds_conn.
    *data : i_local_path_for_copy like rlgrap-filename.
    **i_local_path_for_copy = 'E:\'.
    data: gv_flag    type xflag,
          gv_item_no type i.
    data: gs_bds_conn_marked like i_bds_conn occurs 5 with header line.
    data: l_ipi(40) type c.
    selection-screen function key 1.
    selection-screen begin of block c1 with frame title text-001.
    parameters : p_po type rlgrap-filename
                        obligatory default 'E:\test98.xls'.
    selection-screen end of block c1.
    Intialization for the text for function key.
    Create application toolbar with following mentioned text
    initialization.
      move text-tit to sscrfields-functxt_01.
    At selection screen on value request the file seach is performed.
    File search opens standard window pop-up for searching the file.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_po.
    PERFORM file_search.
    at selection-screen.
      if sscrfields-ucomm = 'FC01'.
    The Excel Id and other information is to be passed to the program
    SAPLBDS_TOOLS to get the excel template.
        perform fill_bds_data.
       perform export_document
         in program saplbds_tools
             using gs_bds_conn_marked.
        perform y_export_document
              using gs_bds_conn_marked.
      if sy-subrc = 0.
        call TRANSACTION 'YVAI_TEST98'.
      endif.
    call TRANSACTION 'YVAI1'.
      elseif sscrfields-ucomm = 'ONLI'.
    The Check for the file Existence for uploading.
        call function 'DX_FILE_EXISTENCE_CHECK'
          exporting
            filename       = p_po
            pc             = 'X'
          importing
            file_exists    = gv_flag
          exceptions
            rfc_error      = 1
            frontend_error = 2
            no_authority   = 3
            others         = 4.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
                  with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
        if gv_flag = ' '.
          message e070(zf) with p_po.
        endif.
      endif.
    *&      Form  fill_bds_data
          Passing the Required parameters for the excel.
    form fill_bds_data .
      gs_bds_conn_marked-client = sy-mandt.
      gs_bds_conn_marked-classname = 'SOFFICEINTEGRATION'.
      gs_bds_conn_marked-classtype = 'OT'.
      gs_bds_conn_marked-objkey = 'SOFFICEINTEGRATION'.
      gs_bds_conn_marked-loio_id =
                                'BDS_LOC2  DDBD0807B93B26F19ED30050569F4158'.
      gs_bds_conn_marked-doc_ver_no = '1'.
      gs_bds_conn_marked-doc_var_id = '1'.
      gs_bds_conn_marked-doc_var_tg = 'OR'.
      gs_bds_conn_marked-descript = 'VCPI'.
      gs_bds_conn_marked-langu = 'E'.
      gs_bds_conn_marked-comp_id = 'vai - test99 file.xls'.
      gs_bds_conn_marked-mimetype = 'application/vnd.ms-excel'.
      gs_bds_conn_marked-contrep = 'BDS_DB2_R'.
      gs_bds_conn_marked-docuclass = 'XLS'.
      gs_bds_conn_marked-doc_type = 'BDS_SHEET'.
      gs_bds_conn_marked-stor_tab = '2'.
    endform.
                        " fill_bds_data
    form y_export_document using i_bds_conn_marked structure i_bds_conn.
    -- data declaration                                               -- *
      data: local_signature like bapisignat occurs 1 with header line,
            export_components like bapicompon occurs 5 with header line,
            i_local_path_for_copy like rlgrap-filename,
            popup_fields like sval occurs 5 with header line.
      DATA : i_files like bapifiles occurs 1 with header line.
      clear:   i_files.
      refresh: i_files.
    -- check if document is currently in change modus                 -- *
    if ( ( i_bds_conn_chng-loio_id    = i_bds_conn_marked-loio_id and
         i_bds_conn_chng-doc_ver_no = i_bds_conn_marked-doc_ver_no and
         i_bds_conn_chng-doc_var_id = i_bds_conn_marked-doc_var_id and
           i_bds_conn_chng-doc_var_tg = i_bds_conn_marked-doc_var_tg )
            and (  i_bds_conn_chng-loio_id <> space and
                   i_bds_conn_marked-loio_id <> space  )
            and ( doc_chng_is_open = 'X' ) ).
         -> set info popup -> doc can not be exported
       message i337(sbds).
    endif.
    -- check if components exist                                      -- *
    -- fill signature table
      local_signature-doc_count  = '1'.
      local_signature-doc_id     = i_bds_conn_marked-loio_id.
      local_signature-doc_ver_no = i_bds_conn_marked-doc_ver_no.
      local_signature-doc_var_id = i_bds_conn_marked-doc_var_id.
      local_signature-doc_var_tg = i_bds_conn_marked-doc_var_tg.
      append local_signature.
      call function 'BDS_BUSINESSDOCUMENT_GET_INFO'
        exporting
          logical_system  = i_bds_conn_marked-log_system
          classname       = i_bds_conn_marked-classname
          classtype       = i_bds_conn_marked-classtype
          client          = i_bds_conn_marked-client
          object_key      = i_bds_conn_marked-objkey
          all             = 'X'
        tables
          components      = export_components
          signature       = local_signature
        exceptions
          nothing_found   = 1
          parameter_error = 2
          not_allowed     = 3
          error_kpro      = 4
          internal_error  = 5
          not_authorized  = 6
          others          = 7.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
        with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    -- get path for export                                            -- *
      call function 'WS_QUERY'
        exporting
          query          = 'CD'
        importing
          return         = i_local_path_for_copy
        exceptions
          inv_query      = 1
          no_batch       = 2
          frontend_error = 3
          others         = 4.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
        with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    -- get path for the documents by the user                         -- *
    perform get_local_path using i_local_path_for_copy.
      loop at export_components.
        i_files-doc_count  = export_components-doc_count.
        i_files-comp_count = export_components-comp_count.
        i_files-comp_id    = export_components-comp_id.
       i_files-directory  = i_local_path_for_copy.
         i_files-directory  = p_po.
        append i_files.
      endloop.
      call function 'BDS_BUSINESSDOCUMENT_GET_FILES'
        exporting
          logical_system  = i_bds_conn_marked-log_system
          classname       = i_bds_conn_marked-classname
          classtype       = i_bds_conn_marked-classtype
          client          = i_bds_conn_marked-client
          object_key      = i_bds_conn_marked-objkey
        tables
          files           = i_files
          signature       = local_signature
        exceptions
          nothing_found   = 1
          parameter_error = 2
          not_allowed     = 3
          error_kpro      = 4
          internal_error  = 5
          not_authorized  = 6
          others          = 7.
      if sy-subrc <> 0.
       message i338(sbds).
      else.
       message i339(sbds).
      endif.
    endform.                               " EXPORT_DOCUMENT

  • Can not download the App from App Strore

    I don't know what's going on that I can not download the app from App Store using my iPad2.
    but I can download the app from App Store using my iphone 3S.

    Hey you are not alone. I have exactly the same problem, cannot download to ipad2 but can download to iphone4S. I see a lot of people complaint about this in other discussion threads. Some dated back to January 2012. Apparently Apple has not done anything about it and the problem is spreading to more ipad users now.

  • Could not download free items from iTunes App and 12 Days App on iPad 3

    Please refer to my screenshots below. I just could not download free items from the iTunes app and 12 Days of Christmas app on my iPad 3. I have to download them on my Mac. Any ideas? Many thanks.

  • My macbook will not download any apps from the app store. I don't know how to fix it, help?

    My macbook will not download any apps from the app store. im running on mac os x 10.6.8. I don't know how to fix it, help?

    Install the Mac OS X 10.6.8 Update Combo
    That will re download and install the App Store for you which may help.
    It's ok to install the combo even though you are already running v10.6.8
    Restart your Mac after combo is installed, try downloading apps.
    Note... if you have Little Snitch installed that will prevent downloads. If you have anti virus software installed, disable that and turn off the Firewall in System Prefereces > Security.

  • My Photoshop Elements 9 will not download a file from new Apple photo application on iMac (installed 4-9-15)  What to do?

    What to do to correct problem?

    Duplicate, see:
    My Photoshop Elements 9 will not download a file from new Apple photo application on iMac (installed 4-9-15)  What to do?

  • Latest version of Lightroom will not download RAW files from my D750. How does one get around this? Bought Lightroom for it's ability to manage RAW files and now very disappointed.

    Latest version of Lightroom will not download RAW files from my D750. How does one get around this? Bought Lightroom for it's ability to manage RAW files and now very disappointed.

    Here is the contents of a batch file which will convert whatever raws you drop on it:
    "C:\Program Files (x86)\Adobe\Adobe DNG Converter" -cr7.1 -dng1.4 -p0 %*
    Once you download the latest converter (release candidate from adobe labs, if necessary), and save the appropriate contents of the batch file (change path to match your system, and parameters to match your druthers, if applicable), the procedure is:
    1. Drop raw files on bat file.
    2. Import as usual (the DNGs).
    Not too bad once you're set up (if DNG converter supports your raws).
    Documentation:
    http://wwwimages.adobe.com/content/dam/Adobe/en/products/photoshop/pdfs/dng_commandline.pd f
    Note: on Mac, you may need to use "$@" (with the double-quotes) instead of %* (which is dos batch syntax), and you will need to use the full path to the converter executable file, e.g.
    “/Applications/Adobe DNG Converter.app/Contents/MacOS/Adobe DNG Converter”
    If too much, just use the GUI instead of the bat file.
    Rob

  • Siri could not download required information from the server

    I'm getting the message "siri could not download required information from the server". I haven't been able to use SIRI for 5 days. Does anyone know an answer?
    I've tried turning SIRI off, rebooting, and turning it back on. You know, the old PC approach.
    I have an excellent WI-FI connection.

    Not an answer but I do know if I do not have a good internet connection (3G or WiFi) I get that same error. Has always cleared up for me once that was resolved.

  • Siri can not download required information from server

    siri can not download required information from serve

    Make sure you are connected to the internet whether it is via Wi-fi or 3G.
    Then, try turning Siri off in Settings>General>Siri and then wait a couple seconds after it is off. Turn it back on and ask it something again.

  • TS1702 can not download any program from the App and I can not update any program downloaded in advance .. Seems to me just to wait and remain so throughout the day .. I want a solution to this problem

    can not download any program from the App and I can not update any programdownloaded in advance .. Seems to me just to wait and remain so throughout the day .. I want a solution to this problem 

    Any solution!!!!!!!

  • I can not download my apps from my mac to my iphone 4s since it had the newest update in 2013

    I can not download my apps from my Mac since I have updated my iphone 4s to your new version in 2013 my vesion of my mac is 10.6.8 please help!!
    thanks

    Your reply is not very easy to read due to the lack of punctuation.
    You have the left-hand sidebar enabled (option-command-S on a Mac), and you've connected and selected the phone on that sidebar and are using the Apps tab on the right-hand side of the screen to select which apps to install e.g. from http://support.apple.com/kb/PH12115
    And clicking 'install' next to the apps that you want to install and then 'apply' at the bottom right of the screen doesn't install them onto your phone ?

  • Mail is not downloading e-mails from the server

    Mail is not downloading e-mail from the yahoo server.  However, I am able to send e-mails out

    My problem with mail concerns gmail and not Yahoo.  But about once a day I see an email come in on my iPhone or iPad and then I wait for it to come in on my MBP, running Mavericks 10.9.2 with all the updates current.  It never does come in.  I find that by exiting from Mail and then in a few seconds opening it again that the missing mail will come in.  Also, I found that by taking the gmail server off line and then right back on line that the missing email will come it.
    I like to reply to my email from the MBP so that I have a record of the sent files.  Sending from the IOS devices doesn't let the MBP know about the sent file.
    This never happens under IOS 7.1 on my iPhone and iPad.  So I suspect it is a problem with Mavericks.
    I'm sure I'm not the only one having problems with this.   Is this a problem with Mavericks or with gmail?

  • HT201272 Will not download purchased book from iBooks???

    will not download purchased book from iBooks???

    I Just figured this out. I had downloaded a bunch of books on my iPhone and had the greyed-out issue on my iPad with sync collections enabled. Had tried all the same fixes as indicated in this thread and others without success. What worked was restarting my iPad (this may not be a necessary stage) and searching for the titles that were stuck In the iBooks store. As expected each showed an 'in progress' download button. I was finally able to tap this to stop the (non-existent) download, which hadn't been possible within 'My Books' or the 'Purchased' tab on the store. When I tapped the button briefly jumped to 'Read' then changed to the standard iCloud download button for a previous purchase. Tapping this successfully initiated the download, which then synced into the right collection in my library.
    Hope it works for you!

  • I can not download any files from my e-mail like office files, can you help me

    I can not download any files from my e-mail like office files,  can you help me

     Which Email app are you using? 

  • Firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    you have not understood my point
    how does this code will run on servlet when I want to upload a file from client's
    machine to server machine
    what I am doing is I am giving an option to the user that he/she can browse the file and then select any file and finally it's action is post in the jsp form for which I have sent the code
    All the computers are connected in LAN
    So how to upload a file from client's machine to server's machine
    Plz give me a solution

Maybe you are looking for