Checking days in Feb..

Entered 02-29-2001 as input date and noticed that BC4J converts this date to 2001-03-01. How can I get the entered value (2001-02-29)in EntityImpl set method? I would write a method and check the entered date.
Please respond.
Thanks in advance!!
Appreciate, if some one has working code!!

You could write a validation like this to check if a date was a leap year:
  public void setHiredate(Date value)
    Calendar c = Calendar.getInstance();
    value.timestampValue(c);
     * Recall that the MONTH value is zero-based.
    int month = c.get(Calendar.MONTH) + 1;
    int day   = c.get(Calendar.DAY_OF_MONTH);
    if (month == 2 && day == 29) {
      throw new AttrValException(EmpImplMsgBundle.class,
                                 EmpImplMsgBundle.LEAP_YEAR_INVALID,
                                 getEntityDef().getName(),
                                 "Hiredate",null,null);
    setAttributeInternal(HIREDATE, value);

Similar Messages

  • Start/End Date parameters that check day of week and using to set default values.

    Hi,
    I've got a report that presents data between a start and an end date.
    I want it to check if it's a monday and present data from the previous week, otherwise present data from this week.
    For the "Default" value of parameter @startdate, I've got the following expression:
    =iif(WeekdayName(DatePart("w", Today)) = "Monday",DateAdd("d",-8,Today()),DATEADD("d", 1 - DATEPART(DateInterval.WeekDay, Today(),FirstDayOfWeek.Sunday), Today()))
    for @enddate I've got default value:
    =iif(WeekdayName(DatePart("w", Today)) = "Monday",DateAdd("d",-1,Today()),DATEADD("d", 7 - DATEPART(DateInterval.WeekDay, Today(),FirstDayOfWeek.Sunday), Today()))
    but it doesn't appear to be working, I've checked 
    WeekdayName(DatePart("w", Today))
    as an expression in a text box and it evaluates to Monday but my IIF statement above always uses the DATEADD line therefore not returning "Monday" as the value (even though it is).
    Is it a problem that the parameters are of Data/Time data type and I'm trying to evaluate as type text?
    Any help would be appreciated.
    Thanks :)

    StartDate
    =IIf(DateDiff(DateInterval.Day,CDate("01/01/1900"),Today) Mod 7 =0,DateAdd(DateInterval.WeekOfYear,DateDiff(DateInterval.WeekOfYear,CDate("01/01/1900"),Today)-1,CDate("01/01/1900")),DateAdd(DateInterval.WeekOfYear,DateDiff(DateInterval.WeekOfYear,CDate("01/01/1900"),Today),CDate("01/01/1900")))
    EndDate
    =IIf(DateDiff(DateInterval.Day,CDate("01/01/1900"),Today) Mod 7 =0,DateAdd(DateInterval.Day,-1,DateAdd(DateInterval.WeekOfYear,DateDiff(DateInterval.WeekOfYear,CDate("01/01/1900"),Today),CDate("01/01/1900"))),DateAdd(DateInterval.Day,-1,DateAdd(DateInterval.WeekOfYear,DateDiff(DateInterval.WeekOfYear,CDate("01/01/1900"),Today)+1,CDate("01/01/1900"))))
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    Hi, 
    This one works but it results to be between monday and saturday, how to make it between sunday and saturday?

  • Easier way to check day of the week

    Hi, I was wondering if there's a easier way where I can check the day of the week on my MacBook Pro (AKA, 1/30/13 is a  Wednesday).It takes time to open up the calender app so I was wondering if there's a easier way to check like Windows system where you just click the date/time on the right hand corner and it will bring up a mini calender.

    system preferences> under system, date and time. check show day of the week.

  • Asset retirement (Depreciation by day)

    Hello,
    My client want Depreciation by day for Plant & Machinery Asset class.
    While retiring an asset they calculate the depreciation till previous month. for eg. if they want to retire an asset on 20th Feb, they will calculate the depreciation on the asset till 31st Jan.
    But, if depreciation by day is used in the depreciation key then the system would calculate the depreciation for 20 days of Feb also(as depreciation by day will override the period control).
    The client want depreciation till 31st Jan, the 20 days of depreciation for Feb is not required by them.
    Is it possible...Kindly help...
    Regards,
    WNR

    Hi,
    If you hav chosen Dep to the Day tick in your Dep Key - Then this would be the system behaviour...
    What you are wanting is combination of both -  i.e. Dep to the day in the case of Acquisition , but depreciation till last month in the case of retirement.. This is not possible...
    you should check with your business as to what should be the treatment in the case of Acq / Transfer / Retirements... Based on that, You should untick the "Dep to the Day" and choose the relevant period control and make relevant assignment in OAVH for your period control
    With the present settings i.e. "Dep to the Day" switched ON, what Bernhard said is the only choice... you should choose Asset value Date as the end of previous month+1... This would stop the dep calculation as of Last day of the previous month
    br, Ajay M

  • IS THERE A FUNCTION TO RETURN THE NUMBER OF MONTHS OR DAYS?

    I know that you can do a months between function between 2 dates divided by 12 and get years but is there a function that can return the number of months between 2 dates or the number of days between 2 dates in a select statement for a report? These 2 dates are entered in an Oracle forms.
    I have 2 dates.
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    or I have 2 dates
    BEG_SVC_DT 10-JAN-2003 DATE FORMAT
    END_SVC_DT 050924 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I subtract 10 from 24 and get 14.
    In both scenarios the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT' . Is there a function in SQL that would compute the
    number of days between 2 dates?
    Is there a function to get the number of months between 2 dates?
    I have 2 dates.
    BEG_SVC_DT 12-JUL-2004 DATE FORMAT
    END_SVC_DT 050807 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT
    JUL is the 7th month.
    In PLSQL, I subtract 07 from 08 and get 01
    Or I have 2 dates
    BEG_SVC_DT 13-NOV-2004 DATE FORMAT
    END_SVC_DT 050429 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    NOV is the eleventh month. 04 is less than 11.
    In PLSQL I have to add 12 to 04 and subtract 11 from 16 to get 05.
    In both scenarios, the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT'. In SQL, is there a function to compute the number of months between 2 dates?
    I am doing my calculations this way because this is the way that the user has been doing them when they created the report manually.
    The database that I am using is Oracle 9.2.0.6
    Report Writer Report Builder 6.0.8.22.0
    Forms 6.0.8.22.1

    In your example:
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    Where is the "31" depending on, on year and month of BEG_SVC_DT or END_SVC_DT?
    What would be the answer for the following example
    BEG_SVC_DT 25-FEB-1995 DATE FORMAT
    END_SVC_DT 980407 VARCHAR2 FORMAT
    Do I add 28 (=number of days in FEB-1995),
    or 30 (=number of days in APR-1998),
    or 31 (= max number of days in any month?)

  • Returns for cash desk(check) payments

    Hi All,
    I posted a check payment( Feb10th 2011) through cash desk FPCJ against a receivable $47   , cash desk is closed and then trying to post returns lot for the check payment on Feb 15th 2011, the returns item is automatically going to clarification account and even in clarification not able to clarify the item through FPCRL error message : Trying to return the payment posted through cash desk.
    What I was expecting is when I try to post the returns lot for the payment document using options Type of posting '2' and selecting the option enhanced returns processing, a new receivable will be created for the amount 47 but thats not happening.
    \any help is greatly appreciated.
    I read the notes : 644870, 1459852, 1311357.
    Thanks,
    VR

    Hi Vikarm,
    Can you tell me the solution what you did to solve this issue and what u modified for this.
    Thanks in advance,
    Cherry.

  • Dynamic Variable for last day of month

    Hi all,
    I have created one report where in YTD is calculated based on stsyem date. NOw in this report the cal month is in row thus displaying data month wise. But i need one key figure which giving the last day vaue of every month that are displayed in YTD i.e this is based on cal day. Thus the report layout is as follows:
    if report is run in mar 2007 then it should display:
    calmonth            key figure due amount
    Jan 07                this should show due value on last day of jan 07 (i.e 31st jan 07)
    Feb 07               this should show due value on last day of feb 07 (i.e 28th feb 07)
    Mar 07               this should show due value on last day of mar 07(i.e 31st mar 07)
    customer exit variable can give me only one value at a time. How can I make it dynamic to take last day value of every month as per cal month. Could anybody explain me if worked on any such issue.
    If there is some how to paper kindly mail me at my email Id : [email protected]
    thanks in advance
    Regards,
    Wrushali

    Hi,
    We can assign multiple single values to the customer exit.
    So in the Query take CALMONTH in rows.
    And take your KF in column with Customer exit variable restriction on CALDAY.
    So in the code of this Cusotmer exit varible, from the Current date find out the year of the current date and then assign those 12 required days to this variable.
    With rgds,
    Anil Kumar Sharma .P

  • Dynamic variable to get last day of month

    Hi all,
    I have created one report where in YTD is calculated based on stsyem date. NOw in this report the cal month is in row thus displaying data month wise. But i need one key figure which giving the last day vaue of every month that are displayed in YTD i.e this is based on cal day. Thus the report layout is as follows:
    if report is run in mar 2007 then it should display:
    For calmonth       key figure due amount
    For Jan 07           this should show due value on last day of jan 07 (i.e 31st jan 07)
    for Feb 07           this should show due value on last day of feb 07 (i.e 28th feb 07)
    for Mar 07          this should show due value on last day of mar 07 (i.e 31st mar 07)
    customer exit variable can give me only one value at a time. How can I make it dynamic to take last day value of every month as per cal month. Could anybody explain me if worked on any such issue.
    If there is some how to paper kindly mail me at my email Id : [email protected]
    thanks in advance
    Regards,
    Wrushali

    Hi,
    U can use FM : SLS_MISC_GET_LAST_DAY_OF_MONTH to get the last day of the month by passing the date/current date.
    Thanks,
    Debasish

  • Full YR calendar & row generators -probs with mnths that have 28/29/30 days

    Hello,
    With Rod West's advice i've been able to build an absence calendar report using Row Generators, see the learndiscoverer blog (http://learndiscoverer.blogspot.com/2008/10/row-generators.html) for more details on row generators.
    I have hit a problem with using dates as a data point (or the basis of a datapoint) in crosstabs.
    I'm building a crosstab that needs to look at a years worth of absence for a person. Using 2 row generators, 1 producing 12 months (last day of each month as a date, formatted to fmMonth) down the side and the other with 31 rows running along the top for the days in that month.
    The data point is a calculation that inserts the absence category on each day that a person is absent. This works brilliantly for one month. However the datapoint is a derivative of the month/year and the 31 days created by the row generator, which causes problems for certain months.
    If, for example, I need to produce the report for January and February 2008 it will produce an error saying not a valid date for month. This is because there are 31 days running along the top and the datapoint is using 31 days in both Jan & Feb. As there were only 29 days during Feb in 2008 the error occurs when the datapoint creates 30-Feb-2008 & 31-Feb-2008.
    I have tried to make the datapoint calculation return NULL for these dates but it won't allow it because the datapoint is must be some sort of date. I have tried to convert these erroneous dates to 01-Jan-1900 and then omit them from the report with a condition, i think this may be the solution, but i'm not getting anywhere with it.
    If anyone knows a better way of doing this i'd be really grateful if you could let me know.
    Also, just one other thing. Does anyone know how to format a date to a day in the format Mon, Tues, Wed etc. I can get the full day but need narrower columns.
    Thanks,
    Lloyd Thomas

    Hi Rod,
    This is brilliant! I'm sorry about the confusion I caused over the dates in the generator.
    There is a problem here though. I've got to_date('01-JAN-'||:pyear)+n-1 along the top. Down the side of the cross tab I have LAST_DAY(TO_DATE('01-JAN-'||:pyear)+( Days in Year-1 )), formatted to FmMonth.
    The data point is MAX(CASE WHEN "Dates in the Year" BETWEEN Date Start AND Absence Finish THEN Absence Category ELSE '' END).
    The multiple absences over the year are causing duplicate rows. Once converted to a table i can see that each day of the year brings in duplicate rows for every absence a person has had. The MAX statement works in terms of identifying the correct row but I cannot get rid of the other rows. I can't do an IS NOT NULL condition because it will also remove days where people where not absent.
    I think the problem with the LAST_DAY(TO_DATE('01-JAN-'||:pyear)+( Days in Year-1 )) calculation but i'm trying to make it return one month.
    Any help appreciated.
    Thanks,
    Lloyd

  • Day basis depreciation

    Dear All,
    I am  working with FI-AA module and facing the below problem kindly give me the solutions.......
    My configuration is as follows:-
    1.Fiscal year variant in FI is M3 - which contains 366 day (29 days in Feb) .
    2.Fiscal year variant in Asset accounting is P3 which contains 365 days (28 days in FEB).
    my real problem is system is calculating depreciation for 366 days but my client wants to calculate it for 365 days?
    kindly suggest me to resolve ....
    yours
    ummi.

    Dear Barnhard,
    yes I  do have day basis depreciation...... let me give you more clarity on my issue.
    1. Fiscal year Variant in FI is M3 (366 days 29 days in FEB ). which is created and assigned initially.
    2. Fiscal year Variant in AA P3 (365 days 28 days in FEB ). Which is created for AA Roll out.
    Depreciation calculation as per system.
    According to case :- APC       USEFULL          Depn on MTD for Apirl.
                                      36000     3 (366366366)         =36000/1098  is  983.6065574
    but i want it to  be calculated  as per  case 2. as follows:-
                                      36000                          3(365365365)                                  =36000/1095 is    986.3013699
    kindly suggest me to resolve this ?
    Regards,
    umesha.
    Edited by: ummigowda on Jun 1, 2011 1:12 PM

  • Number of a day of an year without saturday and sunday

    Hi,
    How can I get the number of the day of an year?
    How can I remove, from this number the saturday and the sunday? Should I check day by day?
    Thanks, bye bye.

    Or you can function NEXT_DAY, some math and table dual:
    to_char(to_date(6,'j'),'Day') is NLS independent way of representing Sunday and to_char(to_date(5,'j'),'Day') is NLS independent way of representing Saturday.
    NEXT_DAY(start_date - 1,to_char(to_date(6,'j'),'Day')) is first sunday >= start_date. NEXT_DAY(end_date - 7,to_char(to_date(6,'j'),'Day')) is last Sunday <= end_date. Therefore:
    (NEXT_DAY(end_date - 7,to_char(to_date(6,'j'),'Day')) - NEXT_DAY(start_date - 1,to_char(to_date(6,'j'),'Day'))) / 7 + 1 is number of Sunday's between start_date and end_date. Same way:
    (NEXT_DAY(end_date - 7,to_char(to_date(5,'j'),'Day')) -
    NEXT_DAY(start_date - 1,to_char(to_date(5,'j'),'Day'))) / 7 + 1 As a result, number of weekdays between start_date and end_date is:
    end_date - start_date + 1 -((NEXT_DAY(end_date - 7,to_char(to_date(6,'j'),'Day')) -
    NEXT_DAY(start_date - 1,to_char(to_date(6,'j'),'Day'))) / 7 + 1 +
    (NEXT_DAY(end_date - 7,to_char(to_date(5,'j'),'Day')) -
    NEXT_DAY(start_date - 1,to_char(to_date(5,'j'),'Day'))) / 7 + 1) or
    end_date - start_date - 1 -(NEXT_DAY(end_date - 7,to_char(to_date(6,'j'),'Day')) -
    NEXT_DAY(start_date - 1,to_char(to_date(6,'j'),'Day'))) / 7 -
    (NEXT_DAY(end_date - 7,to_char(to_date(5,'j'),'Day')) -
    NEXT_DAY(start_date - 1,to_char(to_date(5,'j'),'Day'))) / 7 or:
    SELECT end_date - start_date - 1 -(NEXT_DAY(end_date - 7,to_char(to_date(6,'j'),'Day')) - NEXT_DAY(start_date - 1,to_char(to_date(6,'j'),'Day'))) /
           7 - (NEXT_DAY(end_date - 7,to_char(to_date(5,'j'),'Day')) - NEXT_DAY(start_date - 1,to_char(to_date(5,'j'),'Day'))) / 7
    FROM DUAL; Now:
    WITH t AS (
               SELECT  to_char(to_date(6,'j'),'Day') sunday,
                       to_char(to_date(5,'j'),'Day') saturday,
                       DATE '2009-01-01'             start_date,
                       DATE '2009-12-31'             end_date
                 FROM  dual
    SELECT  end_date - start_date - 1 -(NEXT_DAY(end_date - 7,sunday) - NEXT_DAY(DATE '2009-01-01' - 1,sunday)) /
            7 - (NEXT_DAY(end_date - 7,saturday) - NEXT_DAY(start_date - 1,saturday)) / 7
      FROM  t
    END_DATE-DATE'2009-01-01'-1-(NEXT_DAY(END_DATE-7,SUNDAY)-NEXT_DAY(DATE'2009-01-0
                                                                                 261
    SQL> SY.

  • How do I find the start day of each month

    Hi all,
    Hope someone can give a a hand here I've to do a calender project for college and I'm not allowed to use any built in Java classes so fun all the way so far :-)
    I've got one question that is bugging me at the moment. and that is how to find the start day for each month in a year and store them in an array.
    I'm starting my week at Monday (0) and stopping at Sunday (6) and I do have a formula for discovering the first day in Jan of the given year its
    ((y-1900)*365 + (y-1901)/4)%7
    I was just wondering how I could amend this to find the first day in Feb, March etc.
    Any suggestions greatly accepted.
    Thanks in advance.

    Irish-Student wrote:
    newark maybe I didnt make clear exactly what I want to do.
    I have each day of the week starting at 0 for Monday up to 6 for Sunday I want to map what the start day of a month as a number between 0 and 6.
    The formula I have discovering the first day of Jan of a given year will give you 1 i.e. Tuesday
    what I need to do is find out what number between 0 and 6 the start day of each other month of a given year is.
    For example the 1st of Feb is a Friday which is 4 on the weekday map.
    Your suggestion of 31%7 won't work for this, sorry more than likely my fault for not being clearer in what my requirements were.
    Cheers for the help so far and yep your right not being able to use the built in classes is a pain :-)
    Edited by: Irish-Student on 03-Mar-2008 20:01This doesn't really change much of my first suggestion. If you can already calculate the first day of the month of January for any given year, then there's no problem figuring out the other months. Say I want to know the first day April 1, 1978. You already know how to find January 1, 1978. So find that. Then find the number of days between January 1 and April 1 (remember to account for leap years). Once you have the number of days, you can figure out how many weeks and days that is, and thus what day of the week it is.

  • Wrong Absence Quota generated for change of entitlement

    Hi experts,
    I have one employee joined somewhere in mid January 2008 (his IT000 start date, IT0001 start date, and IT0041 date is the same, i.e. mid Jan 2008).
    The Annual Leave Base Entitlement setting (V_T559E) for his particular grouping is based on seniority:
    Seniority  0 - 4 = 15 days
    Seniority 4 - 9 = 18 days
    Base period is : Calendar Years.
    At the Selection Rule (V_T559L) :
    - Accrual Period tab => Monthly (Take account of Change of WPBP is checked)
    - Base Entitlement => Key date for determining seniority = Date Type (from IT0041)
    - Accrual Entitl. => Pro rate calculation = selected
    Up to last year (2011), the AL entitlement generated for the emp is 15 days (12 * 1.25). Which is correct.
    When I create for next year (2013), 18 days is generated (12 * 1.5). Which is also correct.
    For this year, 2012, I expect to see 18 days (or 17.75?). However I'm seeing 19 days.
    After debugging, I found that for month of January, 2 entitlements are calculated.
    Take for example the employee joined on 21 January 2008.
    There were 2 records generated by HR_QTACC_QUOTAS_GENERATE:
    1. 20.01.2012 with 1.25 day
    2. 31.01.2012 with 1.25 day
    For Feb until Dec 2012, I'm seeing 1.5 day for each month (which is correct). I.e. :
    Feb: 28.02.2012 with 1.5 day
    Mar: 31.03.2012 with 1.5 day
    ... and so on until dec
    Dec: 31.12.2012 with 1.5 day
    They all add up to 19 days.
    Any advice on what should be corrected here?
    Thanks in advance!

    Hi, Yuki!
    In your example, can you tell us how should it accumulate if the seniority date is in june/2012?
    And another doubt, what is your accrual period?
    What Iu2019ve understood every seniority change youu2019ll have this problem, if the employee starts in the company during the middle of the month.
    Please answer that two questions, so I try to do some test here.
    Regards,

  • Disconnecting Line and Final Bill

    I had been a loyal Verizon Wireless customer since 2008. I
    was on a share plan with my wife and my brother, and I would pay the bill each
    month which was about $160 for the three of us each month. I never missed one
    single payment. Well the 3 of us decided to switch to
    US Cellular. My brother’s wife had already been there, and they had these new
    phones for a penny and it was time as we’ve had these same phones for 5 years
    almost now, we were out of contract, and I had a work discount through US Cellular. So.......
    February 22, 2014 the three of us went over to US cellular
    and started a new plan with new phones. My phone number and my brother’s phone
    number switched without a problem. However, my wife, who’s number was from a
    different region could not be switched, we needed to get her a new number.
    After we switched, US Cellular told me to call Verizon the very next day (which
    was February 23rd) and disconnect/deactivate my wife’s line because
    that one would not happen automatically as they didn’t transfer her old number.
    So on February 23rd, I did
    just that. I called Verizon and they said we were disconnecting it and I’d get
    the next bill and would have to pay that and should be done.
    Well sure enough around March 1st, the next bill
    came, and on it is the full balance of $160 due March 10th. I question this and
    call Verizon again admitting I thought it would be a lesser amount. They instructed
    me to look at the billing date. The cycle was from January 15th to
    February 15th on the bill that is due by March 10th. Well
    we switched phones on February 22nd, so it made sense to me that
    this bill didn’t reflect the few days of February 16- 22nd but
    rather the previous full month from January 15th up until February 15th.
    So far so good, I just misunderstood the bill cycle date.
    So I asked if I could just pay off the remaining amount and
    be done with it all. I mean we’re in the beginning of March now and haven’t used
    the phones since February 22nd, and they’re all disconnected now,
    why not? They told me unfortunately no, I had to pay this whole bill first and
    then wait for the next bill cycle to come available which wouldn’t happen until after
    March 10th for that last billing cycle which would  reflect those few days of, Feb 16- Feb. 22nd.
    The rep ensures me it will probably only be a few bucks per line for those 6-7
    days or so.  I said that’s too bad I can’t
    just pay the whole thing now but oh well; we’ll do it your way. I guess I’ll just
    go online in a few days and pay it  and
    then come the next bill cycle (which doesn’t go out until March 10th)
    we’ll go online about that and pay the rest; just a few dollars per line.
    The rep butts in, “yeah, about that sir, once you disconnect
    the line, as you've done, you lose service to your online bill pay and accounts online so you
    will have to call us to pay. I’m thinking aww man, another inconvenience, but
    oh well, I’ll do what I have to do and call back twice to get these bills paid.
    Well, a week later a couple days before March 10th
    when the full $160 is due, I call and pay it (which took me forever on hold as
    one of their centers was down). She apologized for the delay, took my payment,
    and said when that last bill gets generated here in a few days (March 11th that shows usage from Feb 15th to March 15th, but will only reflect the few days I used the phones in that cycle which would be to the 22nd) I can just push pound
    something something and pay the last bill through the automated phone system and be
    done. I said okay
    Come now to March 22nd I get that final bill in
    the mail. I expect it to be a few bucks per line as is it would only reflect
    from February 15th to Feb 22nd when we disconnected our
    lines.  But no, the bill is $120. That's almost
    3/4 of the price of all three of our phones for an entire month.  I was thinking something must be wrong, unless they didn't prorate the bill in which case the whole month (which would be a rip off) would be $160 like usual but why all this confusion? I was hoping to just use the automated bill
    pay via phone to pay for those 6 days in the last cycle and be done with it forever but no, now I have to call the
    company AGAIN to figure out all of this. What happened next was a nightmare!
    I called and spoke with a rep asking why the outrageous
    price for just a few days of service on those lines. She puts me on hold and
    looks into it. She comes back and says my wife’s line was never disconnected. I
    said you have to be kidding me; I’ve called in to disconnect it initially and
    then even called back w/ questions on how the last bill works and everything
    after we disconnect the lines. You can even see that no data or minutes were ever used on
    any of those 3 lines since Feb. 22nd. She answers, yes sir I see
    that, let me place you back on hold. Okay I figure she’s going to check this
    out.  She comes back again, well sir I
    see you called a couple times  but I don’t see that you requested to disconnect your wife’s
    line. WHAT?! I thought. Why else would I originally call? US Cellular was right and told me specifically told me to do this the very next day and I did! AND THEN I ALSO EVEN CALLED BACK LATER AFTER THE NEXT BILL CAME CONFIRMING ALL THE LINES WERE DISCONNECTED AND HAD QUESTIONS ON HOW I LEAVE VERIZON AND WHAT MY FINAL PAYMENT WOULD BE!   And why was my
    account access to pay my bill online turned off (I did try to go online to see
    if I could pay the last bill and I was no longer to go online) if my wife's line was never disconnected? This is getting
    nuts. She placed me on hold again and returns, okay sir, this is what I’m going
    to do. I’m going to suspend her line today and then you can call back tomorrow
    to disconnect it.  Then you can pay off the last payment on the next bill cycle.
    At this point my blood is boiling, was this a joke. I should
    not have to call back again, this should have been disconnected weeks ago! and
    you can see nothing has been used on those phones. I told her this is the last bill cycle and  I’m not calling
    back and we need to get this disconnected today and that bill lowered to its
    fair amount.  She places me on hold again
    and comes back and tells me she had overridden something and got the line disconnected
    today and she was going to take $40 off my phone bill.
    At this point I’m like finally, but an hour later and now my
    phone bill is $70 for the three phones that we used for 6 days!!  I said 6 days is about 1/5th of the
    month. If our final bill is reflecting only the days of the month we used it
    should be more like 1/5 the price of our original monthly bill which was $160. which would be more like $32, not $70. I had to explain some of the simple math to her and she
    goes on to push about how the line was active and such, and I said but that
    wasn’t my fault you didn’t disconnect it and this is not a fair final bill for
    6 days of usage!!  She put me on hold yet
    again and finally came back and said I’m going to take off another $40 from the
    bill but it will need approval from my supervisor which will take 2 business
    days. If and when she approves it, you will get the final bill in the mail for
    the $120 minus an $85 credit. FINALLY!!!
    I wasn’t even looking for something free, I just wanted a
    fair final bill after I’ve taken the time to call to disconnect my wife’s line
    and understand how the final bill works and everything. No one should have to
    go through this and spend hours on the phone trying to understand how the
    process works so you don’t get duped and then end up getting duped anyway and
    having to spend more time to fix that. It was a big rip-off and extremely frustrating.
    Telling me the line’s not disconnected but taking away online bill pay, and the
    final bill itself was not only wrong, but it outright lied in certain spots.
    Almost as though they were making up dollar amounts and dates. The bill cycle on the last bill said Feb 15th to March 15th but then under then under my wife's name there was the charge of $120 and the dates next to that said March 15th - April 15th!?!?! The phones haven't been used since Feb 22nd! Not simple at all and very confusing.  Make sure you’re carefully monitoring your
    bills when leaving Verizon Wireless. Needless to say, I’m never going back to
    them so I won’t have to worry about this again. I just hope this new paper bill that shows the credit gets to my mail box before it's due date of 04/10 so I don't get a late charge. I was assured it would. I hope the CSR is telling the truth this time for once. I have faith in the last one I spoke with. I'm hoping she doesn't let me down too like everyone before her so far has.

    Leaving is quite simple via porting out. As you noted when two of the lines ported successfully. However I can see no valid reason why the wifes number could not be ported out. There are porting laws in place. But on to the rest.
    If your monthly service runs as you are saying "The cycle was from January 15th to February 15th on the bill that is due by March 10th".
    That would be incorrect. If your monthly bill is from lets say January 15 through February 14 then your payment on the account is always that last day. (February 14th.) The next new billing cycle is now February 15th through March 14 again the bill closing date is the day the invoice must be paid. All three lines since they were ported on February 22nd. still must be paid in full (2 ported & 1 not ported). There is no prorating in this case. Now in regards to the bill closing date again would next be March 15, 2014 through April 14, 2014. Since the wife's phone was not closed the only device should be just that line and no other. The other lines are paid up through March 14, 2014 so there should be no further charges.
    Some where along the line folks must remember to terminate service (port) a few days BEFORE the next bill comes due. remember we pay in advance.
    Good Luck

  • Error code 0x00000004 when installing Yosemite?

    I have a family member's 2012 13 inch MacBook Pro that failed to boot one day (month ago). I've tried to restore via Recovery and install from all OS's I have available to me (Mavericks and Yosemite). I've downloaded each OS from the Mac App Store. Each time I try to install Mac OS X I get an error. While Mountain Lion (was installed on recovery partition) never included any information, Mavericks and Yosemite gave me an error log. After scanning it, I found the error code of 0x00000004.
    In reading other threads, I understand this may be a faulty RAM stick issue? Anyone had this error before? Are there hardware tests I can run? The full log is below.
    Feb 28 23:18:45 localhost opendirectoryd[123]: opendirectoryd (build 382.0) launched - installer mode
    Feb 28 23:18:46 localhost opendirectoryd[123]: Logging level limit changed to 'notice'
    Feb 28 23:18:52 localhost opendirectoryd[123]: Initialize trigger support
    Feb 28 23:18:53 localhost opendirectoryd[123]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc'
    Feb 28 23:18:53 localhost opendirectoryd[123]: set default handler for RPC 'reset_cache'
    Feb 28 23:18:53 localhost opendirectoryd[123]: set default handler for RPC 'reset_statistics'
    Feb 28 23:18:53 localhost opendirectoryd[123]: set default handler for RPC 'show'
    Feb 28 23:18:53 localhost opendirectoryd[123]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
    Feb 28 23:18:53 localhost configd[113]: adding  com.apple.SystemConfiguration.InterfaceNamer
    Feb 28 23:18:53 localhost configd[113]: adding  com.apple.SystemConfiguration.SCNetworkReachability
    Feb 28 23:18:53 localhost configd[113]: loading com.apple.SystemConfiguration.ISPreference
    Feb 28 23:18:55 localhost opendirectoryd[123]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
    Feb 28 23:18:56 localhost opendirectoryd[123]: Registered node with name '/Configure' as hidden
    Feb 28 23:18:57 localhost opendirectoryd[123]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Local.plist'
    Feb 28 23:18:57 localhost opendirectoryd[123]: Registered node with name '/Local' as hidden
    Feb 28 23:19:15 localhost configd[113]: com.apple.SystemConfiguration.ISPreference load failed
    Feb 28 23:19:15 localhost configd[113]: dlopen_preflight(/System/Library/SystemConfiguration/InternetSharingPreference. bundle/Contents/MacOS/InternetSharingPreference): Library not loaded: /System/Library/PrivateFrameworks/Netrb.framework/Versions/A/Netrb
    Feb 28 23:19:15 localhost configd[113]:   Referenced from: /System/Library/SystemConfiguration/InternetSharingPreference.bundle/Contents/M acOS/InternetSharingPreference
    Feb 28 23:19:15 localhost configd[113]:   Reason: image not found
    Feb 28 23:19:15 localhost configd[113]: loading com.apple.SystemConfiguration.ApplicationFirewall
    Feb 28 23:19:17 localhost configd[113]: adding  com.apple.SystemConfiguration.KernelEventMonitor
    Feb 28 23:19:17 localhost configd[113]: adding  com.apple.SystemConfiguration.LinkConfiguration
    Feb 28 23:19:17 localhost configd[113]: adding  com.apple.SystemConfiguration.PreferencesMonitor
    Feb 28 23:19:17 localhost configd[113]: loading com.apple.SystemConfiguration.EAPOLController
    Feb 28 23:19:20 localhost configd[113]: loading com.apple.SystemConfiguration.IPConfiguration
    Feb 28 23:19:25 localhost configd[113]: adding  com.apple.SystemConfiguration.IPMonitor
    Feb 28 23:19:25 localhost configd[113]: skipped com.apple.SystemConfiguration.Logger (disabled)
    Feb 28 23:19:44 localhost configd[113]: updateConfiguration(): no preferences.
    Feb 28 23:20:04 localhost configd[113]: LSExceptions [0x7fe07bc22050] loaded
    Feb 28 23:20:17 localhost opendirectoryd[123]: 125.1 - Client: apsd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Feb 28 23:20:17 localhost opendirectoryd[123]: 125.1 - ODNodeCreateWithNameAndOptions request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search, Options: 0x0
    Feb 28 23:20:18 localhost opendirectoryd[123]: 125.1 - ODNodeCreateWithNameAndOptions failed with error 'Unknown node name' (2000)
    Feb 28 23:20:26 localhost configd[113]: InterfaceNamer: timed out waiting for IOKit to quiesce
    Feb 28 23:20:26 localhost configd[113]: Busy services :
    Feb 28 23:20:26 localhost configd[113]:   MacBookPro9,2 [1, 209928 ms]
    Feb 28 23:20:26 localhost configd[113]: timed out waiting for IOKit to quiesce
      Busy services :
       MacBookPro9,2 [1, 209928 ms]
    Feb 28 23:20:27 localhost configd[113]: InterfaceNamer: No current set
    Feb 28 23:20:31 localhost Unknown[386]: kern.boottime: { sec = 1330499817, usec = 0 } Tue Feb 28 23:16:57 2012
    Feb 28 23:20:34 localhost Unknown[396]: Launching the Language Chooser for an OS Install
    Feb 28 23:20:37 localhost configd[113]: LSExceptions [0x7fe07bc22050] unloaded
    Feb 28 23:20:48 localhost configd[113]: network changed.
    Feb 28 23:20:48 localhost configd[113]: New network configuration saved
    Feb 28 23:20:48 localhost configd[113]: Network configuration creation timed out waiting for IORegistry
    Feb 28 23:20:50 localhost configd[113]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en1) failed: Network is down (50)
    Feb 28 23:20:50 localhost configd[113]: DHCP en1: INIT transmit failed
    Feb 28 23:20:50 localhost configd[113]: network changed.
    Feb 28 23:20:56 localhost configd[113]: InterfaceNamer: adding default configuration for fw0
    Feb 28 23:20:56 localhost configd[113]: network changed.
    Feb 28 23:20:57 localhost configd[113]: InterfaceNamer: adding default configuration for en2
    Feb 28 23:20:57 localhost configd[113]: network changed.
    Feb 28 23:20:59 localhost configd[113]: network changed: v4(en1+:192.168.2.8) DNS+ Proxy+ SMB
    Feb 28 23:20:59 MacBook-Pro.local configd[113]: setting hostname to "MacBook-Pro.local"
    Feb 28 23:21:23 MacBook-Pro.local Language Chooser[397]: Setting system to install/recovery mode.
    Feb 28 23:21:27 MacBook-Pro.local Unknown[398]: Setting boot completed.
    Feb 28 23:21:29 MacBook-Pro.local Unknown[398]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Feb 28 23:21:29 MacBook-Pro.local Unknown[398]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Feb 28 23:21:29 MacBook-Pro.local Unknown[398]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Feb 28 23:21:29 MacBook-Pro.local Unknown[398]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Feb 28 23:21:30 MacBook-Pro.local Language Chooser[397]: Set keyboard to id: 0
    Feb 28 23:21:30 MacBook-Pro.local Language Chooser[397]: Found primary language hint "English"
    Feb 28 23:21:30 MacBook-Pro.local Language Chooser[397]: Told to select language that does not exist
    Feb 28 23:21:30 MacBook-Pro.local Language Chooser[397]: Launching the Installer using language code "en"
    Feb 28 23:21:34 MacBook-Pro.local Language Chooser[397]: Ordering out cinematic windows.
    Feb 28 23:21:34 MacBook-Pro.local Language Chooser[397]: Not hiding Language Chooser in progress callback
    Feb 28 23:21:47 MacBook-Pro.local OSInstaller[422]: LSExceptions [0x7fcfa84050a0] loaded
    Feb 28 23:21:47 MacBook-Pro.local storagekitd[423]: Starting SKDaemon...
    Feb 28 23:21:47 MacBook-Pro.local storagekitd[423]: Client entitled for destructive operations
    Feb 28 23:21:47 MacBook-Pro.local storagekitd[423]: Adding client connection <NSXPCConnection: 0x7f8229d31670> connection from pid 422
    Feb 28 23:21:58 MacBook-Pro.local OSInstaller[422]: LSExceptions [0x7fcfa84050a0] unloaded
    Feb 28 23:22:06 MacBook-Pro.local OSInstaller[422]: connection test:success
    Feb 28 23:22:06 MacBook-Pro.local Unknown[398]: 2012-02-28 23:22:06.943 OS X Installer[422:14611] connection test:success
    Feb 28 23:22:09 MacBook-Pro.local storagekitd[423]: getResizeLimits returned: -69874
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Failed to locate volume with UUID 6278C871-0137-3086-90B3-0597EA767B22
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Hardware: MacBookPro9,2 @ 2.50 GHz (x 4), 4096 MB RAM
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Running OS Build: Mac OS X 10.10.2 (14C109)
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: PWD=/
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: XPC_FLAGS=0x0
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: XPC_SERVICE_NAME=0
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: SHLVL=1
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: __OSINSTALL_ENVIRONMENT=1
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: OS_INSTALL=1
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Env: _=/System/Library/CoreServices/Language Chooser.app/Contents/MacOS/Language Chooser
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Mutable product: Looking for automation file at (null)
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: No file at (null)
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Install Config: Looking for automation file at (null)
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: No file at /System/Installation/Packages/Extras/minstallconfig.xml
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Looking for automation file at (null)
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Install will not be automated.
    Feb 28 23:22:10 MacBook-Pro.local OSInstaller[422]: Install will performed using distribution/collection at /System/Installation/Packages/OSInstall.mpkg.
    Feb 28 23:22:10 MacBook-Pro.local Unknown[398]: 2012-02-28 23:22:10.205 OS X Installer[422:14611] ***storageTaskManagerExistsWithIdentifier:withIdentifier failed: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.nsurlstorage-cache was invalidated.) UserInfo=0x7fcfaa980f80 {NSDebugDescription=The connection to service named com.apple.nsurlstorage-cache was invalidated.}; {
    Feb 28 23:22:10 MacBook-Pro.local Unknown[398]:     NSDebugDescription = "The connection to service named com.apple.nsurlstorage-cache was invalidated.";
    Feb 28 23:22:10 MacBook-Pro.local Unknown[398]: }
    Feb 28 23:22:10 MacBook-Pro.local storagekitd[423]: getResizeLimits returned: -69874
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Waiting for target evaluation.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Starting target evaluation queue.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: connection test:success
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating install check for (null)
    Feb 28 23:22:12 MacBook-Pro.local Unknown[398]: 2012-02-28 23:22:12.106 OS X Installer[422:15126] connection test:success
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Install check successful.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating 17 disks
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk14 Mount point: /Library/Preferences/SystemConfiguration Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk3s2 Mount point: / Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: OS X Base System is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk8 Mount point: /System/Installation Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk16 Mount point: /private/var/tmp/RecoveryTemp Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk11 Mount point: /private/var/root/Library Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk7 Mount point: /private/var/run Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk2s2 Mount point: /Volumes/Mac OS X Install DVD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: OS X Install ESD is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk13 Mount point: /Library/Preferences Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk6 Mount point: /private/var/tmp Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk1s1 Mount point: /Volumes/Image Volume Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Install OS X Yosemite is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk15 Mount point: /Library/Keychains Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk10 Mount point: /private/var/folders Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk5 Mount point: /Volumes Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk12 Mount point: /Library/ColorSync/Profiles/Displays Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk4 Mount point: /private/var/log Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk9 Mount point: /private/var/db Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: /Volumes/Macintosh HD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Macintosh HD is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Finished target evaluation.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating 17 disks
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk14 Mount point: /Library/Preferences/SystemConfiguration Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk3s2 Mount point: / Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: OS X Base System is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk8 Mount point: /System/Installation Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk16 Mount point: /private/var/tmp/RecoveryTemp Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk11 Mount point: /private/var/root/Library Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk7 Mount point: /private/var/run Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk2s2 Mount point: /Volumes/Mac OS X Install DVD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: OS X Install ESD is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk13 Mount point: /Library/Preferences Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk6 Mount point: /private/var/tmp Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk1s1 Mount point: /Volumes/Image Volume Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Install OS X Yosemite is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk15 Mount point: /Library/Keychains Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk10 Mount point: /private/var/folders Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk5 Mount point: /Volumes Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk12 Mount point: /Library/ColorSync/Profiles/Displays Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk4 Mount point: /private/var/log Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk9 Mount point: /private/var/db Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: untitled is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: /Volumes/Macintosh HD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:12 MacBook-Pro.local OSInstaller[422]: Macintosh HD is a valid target.
    Feb 28 23:22:12 MacBook-Pro.local Language Chooser[397]: Hiding Language Chooser in window counter
    Feb 28 23:22:13 MacBook-Pro.local Unknown[398]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Feb 28 23:22:13 MacBook-Pro.local Unknown[398]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Feb 28 23:22:13 MacBook-Pro.local Unknown[398]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Feb 28 23:22:13 MacBook-Pro.local Unknown[398]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Feb 28 23:22:25 MacBook-Pro.local OSInstaller[422]: connection test:success
    Feb 28 23:22:25 MacBook-Pro.local Unknown[398]: 2012-02-28 23:22:25.140 OS X Installer[422:14801] connection test:success
    Feb 28 23:22:36 MacBook-Pro.local OSInstaller[422]: Disabling system idle sleep.
    Feb 28 23:22:36 MacBook-Pro.local OSInstaller[422]: X /Volumes/Macintosh HD: Missing CoreServices.
    Feb 28 23:22:36 MacBook-Pro.local OSInstaller[422]: Dist disk is not root.
    Feb 28 23:22:36 MacBook-Pro.local OSInstaller[422]: OSI: com.apple.pkg.BaseSystemResources remapped external root path to: /
    Feb 28 23:22:36 MacBook-Pro.local OSInstaller[422]: Should convert to CS
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Repairing file system.
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: Not Mounted Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Checking Journaled HFS Plus volume.
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Checking extents overflow file.
    Feb 28 23:22:38 MacBook-Pro.local OSInstaller[422]: Checking catalog file.
    Feb 28 23:22:39 MacBook-Pro.local OSInstaller[422]: Checking multi-linked files.
    Feb 28 23:22:39 MacBook-Pro.local OSInstaller[422]: Checking catalog hierarchy.
    Feb 28 23:22:39 MacBook-Pro.local OSInstaller[422]: Checking extended attributes file.
    Feb 28 23:22:41 MacBook-Pro.local OSInstaller[422]: Checking volume bitmap.
    Feb 28 23:22:41 MacBook-Pro.local OSInstaller[422]: Checking volume information.
    Feb 28 23:22:41 MacBook-Pro.local OSInstaller[422]: The volume Macintosh HD appears to be OK.
    Feb 28 23:22:41 MacBook-Pro.local OSInstaller[422]: File system check exit code is 0.
    Feb 28 23:22:41 MacBook-Pro.local OSInstaller[422]: Updating boot support partitions for the volume as required.
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: Not Mounted Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: Not Mounted Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Repair completed successfully.
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: /Volumes/Macintosh HD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Macintosh HD is a valid target.
    Feb 28 23:22:42 MacBook-Pro.local OSInstaller[422]: Container dmg is missing universal diagnostics. This install will continue attempting to preserve existing diagnostic software...
    Feb 28 23:22:42 MacBook-Pro.local diskmanagementd[424]: DM ->T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: inParams={
         Bless = 1;
         DIAGDMGChunkFile = "<null>";
         DIAGDMGFile = "<null>";
         DonorDiskUDSW = "disk0s2 Macintosh HD";
         OSXDMGChunkFile = "/Volumes/Mac OS X Install DVD/BaseSystem.chunklist";
         OSXDMGFile = "/Volumes/Mac OS X Install DVD/BaseSystem.dmg";
         RepairDonor = 0;
         VerifyImage = 0;
    Feb 28 23:22:42 MacBook-Pro.local storagekitd[423]: Install recovery system operation began
    Feb 28 23:22:42 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: donor disk's storage system is simple so it itself will be the donor
    Feb 28 23:22:42 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: normalized donor: logical=0x7f9dd8628088=disk0s2=Macintosh HD=(iflvuuid=(null)) physical=0x10bb84c10=disk0s2=Macintosh HD=disk0s2 storage=(null)
    Feb 28 23:22:43 MacBook-Pro.local diskmanagementd[424]: DM ->T-[DMRecoveryFileCopier setOSXImageFile:DIAGSImageFile:OSXChunkListFile:DIAGSChunkListFile:doVerifyImag es:badDIAGSIsSoftError:statusReportingDisk:]: OSXDMG=/Volumes/Mac OS X Install DVD/BaseSystem.dmg DIAGSDMG=(null) OSXChunkList=/Volumes/Mac OS X Install DVD/BaseSystem.chunklist DIAGSChunkList=(null) doVfy=0 badDIAGSok=1 statusDisk=0x7f9dd8628088=disk0s2=Macintosh HD
    Feb 28 23:22:43 MacBook-Pro.local diskmanagementd[424]: DM <-T-[DMRecoveryFileCopier setOSXImageFile:DIAGSImageFile:OSXChunkListFile:DIAGSChunkListFile:doVerifyImag es:badDIAGSIsSoftError:statusReportingDisk:]: err=0
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 1/5 (after adding up logical file sizes in dmg + expected to create ourselves) requiredFileSpaceForRecoveryFilesULL=506288304 =Sbydiv=988844 =MiBbydiv=482 =MBbydiv=506
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 2/5 (converted to iomedia desired size) desiredMinRecoveryDiskIOMediaSizeULL=523065520 =Sbydiv=1021612 =MiBbydiv=498
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 3/5 (after adding BootRoot iomedia allocation) desiredMinRecoveryDiskIOMediaSizeULL=623728816 =Sbydiv=1218220 =MiBbydiv=594
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 4/5 (after applying minimum) desiredMinRecoveryDiskIOMediaSizeULL=650000000 =Sbydiv=1269531 =MiBbydiv=619 =MBbydiv=650
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: checking against recovery partition limit MAXimum
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureRecoveryPartitionForVolume:]: CALC result phase 5/5 (after applying MAXimum) desiredMinRecoveryDiskIOMediaSizeULL=650000000 =Sbydiv=1269531 =MiBbydiv=619 =MBbydiv=650
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ->T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: inMinSizeB=650000000 inSTORorNOT=(null) inPhyUDS=0x10bb84c10=disk0s2=Macintosh HD inLogUDS=0x7f9dd8628088=disk0s2=Macintosh HD inPhyREF=(null) inLogREF=(null) inLogMP=/Volumes/Macintosh HD inFileCopier=0x7f9dd8647410 inPct=16..95
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: existing conditions right after PHY=disk0s2: usedOrNotSpaceB=134221312 hasBooter=0 booterPartID/disk=0/(null) booterLocB/SizeB=0/0
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: existing conditions of PHY: disk0s2 loc=S=409640=B=209735680 siz=S=976101344=B=499763888128=N=499763888128
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: existing conditions of LOG: disk0s2 (could be whole so no loc) siz=S=976101344=B=499763888128=N=499763888128
    Feb 28 23:22:45 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: READY TO DO CASE: case=Create_Carve_Simple spaceDeltaB=515781120 booterDeltaB=0 (adviceIfUnable=-69886)
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk17s2 Mount point: /Volumes/OS X Base System 1 Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: OS X Base System is a valid target.
    Feb 28 23:22:45 MacBook-Pro.local storagekitd[423]: DM Message: Shrinking host partition and creating new recovery partition
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk17s2 Mount point: /Volumes/OS X Base System 1 Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: OS X Base System is a valid target.
    Feb 28 23:22:45 MacBook-Pro.local storagekitd[423]: DM Message: Verifying file system.
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:45 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: Not Mounted Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:45 MacBook-Pro.local storagekitd[423]: DM Message: Checking Journaled HFS Plus volume.
    Feb 28 23:22:45 MacBook-Pro.local storagekitd[423]: DM Message: Checking extents overflow file.
    Feb 28 23:22:46 MacBook-Pro.local storagekitd[423]: DM Message: Checking catalog file.
    Feb 28 23:22:47 MacBook-Pro.local storagekitd[423]: DM Message: Checking multi-linked files.
    Feb 28 23:22:47 MacBook-Pro.local storagekitd[423]: DM Message: Checking catalog hierarchy.
    Feb 28 23:22:47 MacBook-Pro.local storagekitd[423]: DM Message: Checking extended attributes file.
    Feb 28 23:22:48 MacBook-Pro.local OSInstaller[422]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: Checking volume bitmap.
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: Checking volume information.
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: The volume Macintosh HD appears to be OK.
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: File system check exit code is 0.
    Feb 28 23:22:49 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolRecoveryPartition ensureBooter:storage:phyUDS:logUDS:phyREF:logREF:copierForRecoveryFiles:hostOSX ForBootRootFiles:recBSD:percentBegin:percentEnd:]: done fsck of donor slice; err=0
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: Shrinking target volume from 499763888128 to 499248103424 bytes
    Feb 28 23:22:49 MacBook-Pro.local storagekitd[423]: DM Message: Shrinking file system
    Feb 28 23:22:49 MacBook-Pro.local OSInstaller[422]: Evaluating 1 disks
    Feb 28 23:22:49 MacBook-Pro.local OSInstaller[422]: Evaluating SKDisk { BSD Name: disk0s2 Mount point: /Volumes/Macintosh HD Role: kSKDiskRoleLegacyMacData Type: kSKDiskTypeHFS }
    Feb 28 23:22:49 MacBook-Pro.local OSInstaller[422]: Macintosh HD is a valid target.
    Feb 28 23:22:50 MacBook-Pro.local storagekitd[423]: DM Message: Shrinking partition and creating new recovery partition
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ->T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: inSliceDisk=0x10bb84c10=disk0s2=Macintosh HD inPct=26..34 inNewSize=499248103424(B)=975093952(S) inMode=AddRecoveryEntryDuringTargetShrinkOrNoChange inOptionSize=0(B)=0(S) inNewEntriesRequested=(null) inFormatNewEntries=0 inLMBROption=(null) inDelegate=(null)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured valid mode
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured not (newSize=0=GrowToFit specified together with a special mode)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured not (AddRecoveryEntry mode plus triples specified)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured target is slice; ensured scheme is GPT; parent wholeDiskBSD/UDS=disk0
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: oldsize = 499763888128 B = 976101344 S
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: newsize = 499248103424 B = 975093952 S
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured not (size delta indicates grow yet shrink-specific modes are asked for)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: ensured not (size delta indicates shrink yet a grow-specific mode was asked for)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: targetPartID=2
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: targetHasBooterAtPartID=(nil if no booter)=(null) size=(null) name=(null)
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: doing DARegisterDiskPeekCallback to avoid DA dialogs
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef MKMediaCreateWithPath dev=/dev/rdisk0 opts={
         "Shared Writer" = 1;
         Writable = 1;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft MKMediaCreateWithPath err=0
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: blocksize=512 kMINALIGNMENT=4096 kSECTORSIZE=512=512 alignment=8
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef MKCFReadMedia device=<MKMediaRef>: /dev/rdisk0=0x7f9dd872ae20 opts={
         "Include all" = 1;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft MKCFReadMedia err=0 media={
         Schemes =     (
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 "Partition ID" = 2;
                                 Size = 976101344;
                                 Type = "Apple_HFS";
                         Revision = 65536;
                         "_Reference" = <203e65d8 9d7f0000>;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: making DEL/ADD lists: RP mode: DEL+=none; ADD+=recovery
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: booterReqB roundup for UAM: rounded-512 up by 0 ; now booterReqB=0
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: booterReqB roundup for ALIGN: rounded-4096 up by 0 ; now booterReqB=0
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: done making DEL/ADD lists: DEL=(
      ) ADD=(
             IOContent = "Apple_Boot";
             Name = "Recovery HD";
             Size = 0;
      ) ADDOPTS=(
             "Direct Mode" = 1;
             "Retain existing content" = 0;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef doomPartitionsByPartID oldEntriesToDelArr=(
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft doomPartitionsByPartID err=0
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef MKCFUpdateMedia() (del) media={
         Schemes =     (
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 "Partition ID" = 2;
                                 Size = 976101344;
                                 Type = "Apple_HFS";
                         Revision = 65536;
                         "_Reference" = <203e65d8 9d7f0000>;
      } lib=CFBundle 0x7f9dd872a020 </System/Library/PrivateFrameworks/MediaKit.framework/Loaders/MKDrivers.bundle> (not loaded) align=8 opts={
         "Flexible Allocation" = 1;
         "Generate Freespace Records" = 1;
         "Legacy Mode" = 0;
         "UEFI Mode" = 0;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft MKCFUpdateMedia() (del) err=0 media={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 "Partition ID" = 2;
                                 Size = 976101344;
                                 Type = "Apple_HFS";
                         Revision = 65536;
                         "_Reference" = <203e65d8 9d7f0000>;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef adjustPartitionsAtPartID2 newEntriesToAddArr=(
             IOContent = "Apple_Boot";
             Name = "Recovery HD";
             Size = 0;
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft adjustPartitionsAtPartID2 err=0 updatedMediaDict={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 Options =                             {
                                     "Direct Mode" = 1;
                                     "Retain existing content" = 1;
                                 "Partition ID" = 2;
                                 Size = 975093952;
                                 Type = "Apple_HFS";
                                 GUID = "E1800932-F5B9-4FCF-8386-0F2D73FA75C1";
                                 Name = "Recovery HD";
                                 OFeb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef MKCFUpdateMedia() (changesize+add) media={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 Options =                             {
                                     "Direct Mode" = 1;
                                     "Retain existing content" = 1;
                                 "Partition ID" = 2;
                                 Size = 975093952;
                                 Type = "Apple_HFS";
                                 GUID = "E1800932-F5B9-4FCF-8386-0F2D73FA75C1";
                                 Name = "Recovery HD";
                                 Offset = Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft MKCFUpdateMedia() (changesize+add) err=0 media={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 Options =                             {
                                     "Direct Mode" = 1;
                                     "Retain existing content" = 1;
                                 "Partition ID" = 2;
                                 Size = 975093952;
                                 Type = "Apple_HFS";
                                 Flags = 9;
                                 GUID = "E1800932-F5B9-4FCF-8386-0F2D73FA75C1";
                                 Name = "RecoveFeb 28 23:22:50 MacBook-Pro.local storagekitd[423]: DM Message: Modifying partition map
    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: bef MKCFWriteMedia() media={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                                 Offset = 40;
                                 "Partition ID" = 1;
                                 Size = 409600;
                                 Type = EFI;
                                 GUID = "C2086264-DFEA-45EF-AC75-4D8DD191B145";
                                 Name = "500GB Apple HDD";
                                 Offset = 409640;
                                 Options =                             {
                                     "Direct Mode" = 1;
                                     "Retain existing content" = 1;
                                 "Partition ID" = 2;
                                 Size = 975093952;
                                 Type = "Apple_HFS";
                                 Flags = 9;
                                 GUID = "E1800932-F5B9-4FCF-8386-0F2D73FA75C1";
                                 Name = "Recovery HD";
                    Feb 28 23:22:50 MacBook-Pro.local diskmanagementd[424]: DM ..T-[DMToolPartitionDisk editMapAtPartition:newSize:mode:optionSize:newEntriesRequested:formatNewEntries :newEntriesCreated:lmbrOption:percentBegin:percentEnd:partitionDataDelegate:]: aft MKCFWriteMedia() err=0 mediaDict={
         Schemes =     (
                 Alignment = 8;
                 ID = GPT;
                 Name = "GPT Partition Scheme";
                 Sections =             (
                         GUID = "DA87B1AB-F8D9-4ABD-A4CA-D646E4FAAF2B";
                         ID = MAP;
                         "Media Block Count" = 976773101;
                         "Media Offset" = 34;
                         Offset = 34;
                         Overhead = 67;
                         Partitions =                     (
                                 GUID = "EC406B92-0EF6-49AB-ADC1-54AECE72EEF8";
                                 Name = "EFI System Partition";
                   

    Nadmace please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html for information on how to resolve the download error.

Maybe you are looking for

  • Unable to export par to portal

    I am trying to export my helloword to the portal but getting the error message below in the log. I did try going direct to http://servername:50000/irj/ but this brought back an error message "The requested resource does not exist." This means that th

  • Bootcamp question in respect to gaming (Starcraft 2 and Heroes of Newerth)

    Hi, I have a 2010 Macbook Pro. Ive been playing games on it since I got it, and its gaming performance has deteriorated somewhat. Although at first it was decent, now its very obvious that the laptop is struggling to keep up with the graphics. I play

  • Rac to non rac standby file name convert option

    Hi, Rac to non rac with ASM both, please find the below details. Primary Setup. diskgroup NAME for all files for both primary and standby +DATA pmon,unique and service name at standby-rac1, rac2 db version -11.2.0.1 platform - HP -UX $ ps -ef | grep

  • Ipad2 touchscreen doesn't respond

    Hello everybody, I've had my new ipad2 for just one week. Now the touchscreen doesn't respond at all, even after pressing the home button and start button for 7 seconds and restarting again. Can anybody help me?

  • Add a button on the Table view screen

    Hi , i need to add a button to da table view screen for which i have created a transaction also.How do i go about it? please help. Thanx and Regards, Srestha