Can't match home dir path to the actual data

probably something simple, but I cannot get my students directory to mate up again
Brief history:
unstable old world: exported user info, reinported into a clean build....this provides an old path name that was from the previous world and is now not correct
Created new share points with network mount selected
I have succesfully managed to re-home all my faculty users (only 60),
however the 658 students are not playing ball. Different share point
One thing I've noticed on the HOME screen within WGM: for a user who is a member of that old primary GID, when I click on the newly shared home path in Where, at the top of the screen it only shows
Home: afp://myservername.mydomain.com/school/username
where as a faculty member (different primary GID) clicking on the SAME home dir will get:
Home: afp://myservername.mydomain.com/school/username
/Network/Servers/myservername.mydomain.com/
right now I have 658 user with the NONE home selected and they can at least login, onece only they can actually network share to their home but I need them mounting correctly
TIA

Tim,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://support.novell.com/forums/faq_general.html
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Cron: can't stat home dir

    I've got a new 880 that we recently put into production. I'm getting an error from the cron.
    Subject: Couldn't run your "cron" job
    can't stat home dir.
    Commands wil not be executed.
    The error was "No such file or directory"
    Howeverm the cron job does run to completion. The question is how to I stop getting this error message?

    I don't boot from the raid volume.
    Here is path for the sharepoint /Volumes/Voletu/home
    Here is also the path in workgroup manager in the home
    Home URL afp://name of server. domain/home/home folder
    Full Path: /Network/Servers/name of server. domain/home/home folder
    I am running out idea for this issue.

  • How to get system temp dir. path on the fly ,system may be XP or Linux ??

    How to get system temp dir. path on the fly ,system may be XP or Linux ??
    please suggest solution

    The default temporary-file directory can be retrieved
    using:
    System.getProperty("java.io.tmpdir")
    Thanks a lot for u r reply this one works !!!!

  • Can I have a pack path in the XmlWriter.Create() method?

    Hi Everyone,
    This piece of code is throwing "The given path's format is not supported" error!
    var settings = new XmlWriterSettings();
    settings.Indent = true;
    var writer = XmlWriter.Create("pack://application:,,,/Languages;component/English.xaml", settings);
    System.Windows.Markup.XamlWriter.Save(rd, writer);
    writer.Close();
    Is there restrictions on the type of path we can provide in Create() ?
    Please Mark as Answered If this answers your question Or
    UnMark as Answered if it did not.
    Happy to Help :)
    My Site

    >>Can I have a pack path in the XmlWriter.Create() method?
    No you can't. Pack URIs are resource identifiers and the XmlWriter.Create method accepts an output file path and this path is relative to the directory of the running executable (.exe), i.e. the method simply creates a file on the disk.
    Whether this file is actually resides in your project folder or not doesn't matter at all as far as the XmlWriter is concerned.
    Please remember to mark helpful posts as answer and/or helpful and please start a new thread if you have a new question.

  • Can I return my MacBook Air past the return date?

    Hi, I have a question that I've been googling but I haven't been able to find an answer to anywhere. Can I return a MacBook Air past the return date to an Apple store if it is still in shrink-wrap and I have a receipt? Thanks.

    I would think you cannot return a product after the return date has passed.
    Call the Apple Store and ask them.

  • Payment terms Payables - Can a discount period be longer than the Due Date

    My client regularly pays their supplier invoices beyond the due date but yet deducts the early payment discounts
    anyway
    I have tried unsuccessfully to create payment terms that would have the correct due date ex Net 30
    But would nevertheless calculate the discount they wish to take even beyond that due date
    For example try to set up a payment term 2% 60 Net 30
    But the discount is always canceled beyond the due date even if I set the discount period to go beyond the due date
    Now it is true they could still manually take it but the system would no longer calculate it for them
    The only way I think I can make this work is to make the due date period equal to the discount period
    So 2%60  Net 60
    Am I missing something here
    The client used to be able to do this automatically in his old Accpac dos system (take the discount anyway)
    Any comments would be appreciated
    Thank you
    Georges Ostiguy

    Hi Georges,
    the application considers the due date as the pertinent date & uses this date to calculate discounts, ageing reports etc.So this date cannot be used as 'merely advisory'. This is also the reason why this date is always the last date where the application allows an automatic discount calculation to.
    It is possible to manually change the due date of AP invoices & then adjust the 'Cash Discount Date Offset' field in the accounting tab of the document. This then allows an automatic re-calculation of the discount according to the payment terms & the updated due date.
    Since your customer uses the due date on the AP invoice received as an FYI only, you could let them enter this date in the BP Reference field on the document in addition to the actual vendor refenece number & then make that column visible in Step 6 of 9 in the payment wizard. Then maintain the actual due date as decided by your customer in the document & adjust the cash discount offset date.
    All the best,
    Kerstin

  • Can I get a query to get the output data like 4th column instead of 3rd col

    Can I get a query to get the output data like 4th column instead of 3rd column ?
    SQL> select emp.deptno, empno, rownum from emp, dept where emp.deptno=dept.deptno;
    DEPTNO EMPNO ROWNUM
    10 7782 *1* *1*
    10 7839 *2* *2*
    10 7934 *3* *3*
    20 7369 *4* *1*
    20 7876 *5* *2*
    20 7902 *6* *3*
    20 7788 *7* *4*
    20 7566 *8* *5*
    30 7499 *9* *1*
    30 7698 *10* *2*
    30 7654 *11* *3*
    30 7900 *12* *4*
    30 7844 *13* *5*
    30 7521 *14* *6*
    14 rows selected.

    SQL> select emp.deptno, emp.empno,
      2    row_number() over(order by emp.deptno, emp.empno) rn,
      3    row_number() over(partition by emp.deptno order by emp.empno) dept_rn
      4  from emp, dept
      5  where emp.deptno=dept.deptno
      6  order by emp.deptno, emp.empno;
        DEPTNO      EMPNO         RN    DEPT_RN
            10       7782          1          1
            10       7839          2          2
            10       7934          3          3
            20       7369          4          1
            20       7566          5          2
            20       7788          6          3
            20       7876          7          4
            20       7902          8          5
            30       7499          9          1
            30       7521         10          2
            30       7654         11          3
            30       7698         12          4
            30       7844         13          5
            30       7900         14          6
    14 rows selected.Regards,
    Dima

  • HT201299 have updated my iphone 4s to the new iso7. Now i can't find how to switch on the cellular data. Please help.

    Hi
    I have updated my iphone 4s, with the new iso7. Now i can't find how to switch on the cellular data, please help!! Can't find the option in Settings

    Settings>cellular>cellular data

  • "The end date can't be set to occur before the start date" issue

    I have a subscribed calendar that draws from data in a Filemaker database. In all of these records, the start date & end date are the same. When I try to refresh the description, it fails with a "NSCocoaErrorDomain / error 1560" error, and the console log shows "The end date can't be set to occur before the start date."
    Well, it doesn't occur before the start date. It's the same as the start date. I can work around this by setting my Filemaker database to add a day to the end date, but that's a clunky solution.
    Anyone else run into anything like this?
    (iCal 4.0.3 and OS X 10.6.4, btw)

    It may not be the same problem, but the message was the same (end date...etc). I tore my hair out at the time trying to solve it. It was on my fathers computer. Everything appeared to be correct and consistent. What solved it was logging into MobileMe/account/personal info/time zone, where I found the time zone was wrong. I can't remember the detail now but at the time it seemed like a third place where time had to be correct. Worth your checking there anyway.

  • Can the summary report show the actual data in spreadsheet form?

    We have several forms that we are collecting data from and are trying to find an easy way to analyze all of the data. The summary report just shows percentages of who filled out the forms. I would like to see the actual data from the forms.

    The View Responses tab ~ there everything is in table form - you can import into excel etc and analyse from there.

  • Provide brings back the actual date , different to the table content

    Hi,
    I´m not a developer, but must do that part now in my company.
    We have a 46C with actual packages.
    In a customer report I have to add 2 fields to an output.
    It selects from PNP and provides data like follows:
    GET PERNR.
      PROVIDE * FROM P0000
    FROM P0001
    FROM P0002
    FROM P0006
    FROM P0007
    FROM P0013
    FROM P0016
    FROM P0053
        BETWEEN PN-BEGDA
            AND PN-ENDDA.
    That worked fine.
    Now I liked to set 2 fields with contents of IT 0000 (table PA0000):
        IF P0000-MASSG = '01'.            " MA aktuell im Vorruhestand ?
         TRANS-BEGVORRST = P0000-BEGDA.
         TRANS-ENDVORRST = P0000-ENDDA.
        ENDIF.
    At debugging I can see, that the requested fields from P0000 are set to the actual date, not to the value I can select from table or shown in the SAP transaction.
    All other fields from PA0000 are matching the row I expect, but not the date fields
    Any idea?

    Hi,
    That is the behavior of PROVIDE statement. If you combine (JOIN) several tables (P0001, P0002, etc) together, it will give you all the intersected dates.
    For example, in two tables itab1 and itab2, the respective columns col1 and col2 are interval limits of type i. The filling of the internal tables results in the following intervals (rows two and three):
    |   Itab1 Int1    |     |Itab1 Int2 |     |
    |        |      Itab2 Int1       |        |
    |  |          ... BETWEEN ...             |
    |  | i1  |   i2   | i3  |   i4   |i5|     |  <<<< This is the result
    Regards,
    Lim...
    Edited by: Ruslim Chang on Apr 17, 2009 11:26 AM

  • The actual date is not transferred from the (PS) milestone

    Hello ,
    In an order with header billing plan dates that are value-based, the actual date is not transferred from the Project System (PS) milestone, even though the actual date of the assigned milestone was changed via transaction CJ20N.
    We are repeatedly facing this error , I have applied Note number 1395078 but still once in a while I am still facing the issue
    Regards
    Muralidharan.S

    Check the following path in SPRO
    IMG - PS - Revenue & earning - planned revenues - Automatic Plan Revenue cal - Maintain Billing Plan Settings
    There, you use the billing plan to plan dates on a WBS element whose payment requests or invoices relevant to sales are to be sent to customers.
    The system updates the planned revenue and planned payment receipts to the relevant WBS element. The planned revenue is updated using the revenue element stored in the planning profile for the work breakdown structure and using the financial item assigned to the revenue element.
    You make the settings given below for the billing plan. To do this, you carry out the following steps:
    - Maintain billing plan type
    - Maintain date description for billing plan
    - Maintain revenue element for billing plan
    - Assign billing plan type to project profile
    Hope this can assist you.
    Thanks & Regards
    JP

  • When we get the actual data in BPC for planning, is the data consolidated

    I had a question regarding Planning. When we get the actual data in BPC for planning, is the data consolidated? Do we need to run the consolidation business rules( IC Booking, Matching, IC Eliminations) on the data before we can use it for planning? Per my understanding we have to run Currency Conversion on this...correct?
    Also, where do I get my actual data from? Does ECC/ Source system have data from all entities( CHQ, Region and Countries)?
    Please help!
    Thanks in advance

    Hi Kimi,
    In a hierarchical structure, the data is always loaded in to the base level, and the data is automatically rolled up to its parents.
    The currency conversion will also take place at the base level, and as mentioned earlier, the converted data will also be rolled up as per the hierarchy.
    The heading of this thread says planning. So, ideally, there wont be any legal (or statutory) consolidation. You might use the US elimination however, for eliminating the intercompany transactions, if any.
    The planning can be done as zero based (wherein the user has to enter the planned data manually from scratch) or non-zero based (wherein the planned data of previous year is copied and the user can change the data as required).
    The flow of events cannot be suggested by us. It has to be discussed with the business to understand how do they do the planning.
    Hope this helps.

  • How to get  the actual data in ALV report

    I am doing some upgradation work   in that i am using Submit  & And return and  also i am using some function modules like LIST FROM MEMORY , LIST TO TXT wnd WRITE LIST , it gives output in normal list format , But i need to print in ALV report .
    With the use of set table for 1st display i got the  ALV report   but not with actual data, (some junk value is showing) , So can any 1 suggest me how to get  the  actual data in ALV report, With the use of  Any Function Module or with Coding,
    with regards,

    Hi Saravana
    I am sure you must be getting the values in tables of table parameters from every FM.
    consolidate the values from tables of all FMs in one table and built ALV for that table only.
    I hope this way you can show the actual data in ALV.
    thanks
    Lalit

  • In Aperture 3.4 Export Slideshow to a video, what are the actual Data Rates used for "Best", "High", ... "Least" quality for a given resolution?

    My Photo website host (SmugMug) converts uploaded video files at a specific Data Rate in Mbps before installing them. I would like to compress my slideshow video file to the same rate before I upload it to reduce file size and upload time. When I choose the "Custom" setting for an Export, I can choose 1 of the 5 Quality choices and see the estimated file size. But, I cannot know what the actual Data Rate is until after I wait a long time to export the slideshow (hours for a long slideshow) and then examine the resulting file in QuickTime Player's Inspector.

    I ran a few tests using a short slideshow (16 images, 1:23 mins/secs) at 1,728 x 1,080 resolution to find out the bit rates for various quality level choices.
    Export setting              Quality          Resulting bit rate          File Size
    HD 1080p                    default                20.68 Mbps              214.8 MBytes
    Custom                       Best                   20.49                       212.8
    Custom                       High                     6.25                         65.0
    Custom                       Medium                3.97                         41.3
    However, I don't know if those bit rates will be the same for different length slideshows or for different output resolutions. My SmugMug host site uses an 8.0 Mbps rate for a 1728 x 1080 video file. If I choose Custom/Best, my file will be almost 3 times bigger and much higher quality than necessary, but if I choose Custom/High, my file will be smaller and lower quality than SmugMug's converted version.
    I have installed MPEG StreamClip that will let me convert an exported Aperture slideshow video file, and StreamClip allows me to choose a specific bit rate in Mbps. But, I would prefer not having to do a 2 step process (Export from Aperture, then convert in StreamClip).

Maybe you are looking for