Setting date,month,year and time

How do i change the Date /month/year and time on my printer.
My printer is    Laser Jet Professional M1212 nf mfp

Please to here and download the User Guide.
http://h10025.www1.hp.com/ewfrf/wc/manualCategory?cc=us&dlc=en&lc=en&product=3965849&
Here you will find all you information you requested. 
Say thanks by clicking the Kudos Thumbs Up to the right in the post.
If my post resolved your problem, please mark it as an Accepted Solution ...
I worked for HP but now I'm retired!

Similar Messages

  • I need help! My iPad2's stubbornly showing the wrong month, day, year and time.

    This happened after I updated my new iPad2 to the iOS 5.0.1. The calendar shows a date way ahead into the future. Ex. Today is Dec. 31, 2011, 6am, Manila time but its showing Jan. 1, 2555 BE, 8am. It just got my location right. I tried resetting it at Settings but it keeps on going back to the wrong date, 2555 BE. I turned off the automatic update, and manually set the time, but It seems to insist the error. I sync this iPad with iTunes to a Windows 7 PC, it has the correct date, year and time zone. I've been following a similar thread here but I could not find it now. Please give advice that I could do on my own first before I seek Apple care coz its almost party time here. Thanks and Happy New Year!

    I got several advice from other Apple users such as: restart the iPad by pressing the home button and the sleep/wake simultaneously, turn off the auto-update of date and time, make sure it's in Gregorian, sync with a computer with the right date and time and restore. I did all of the above except restore but it didn't help. I thought I should restore to the previous iOS. When I tried to restore, I learned that it'll still be in iOS 5.0.1, and since I also couldn't back up to iCloud (which freaked me out), I chickened out of it and called the nearest Apple Store. They were very kind to help me for  free.
    Before I went to the store, I backed up my iPad to PC first to keep my paid apps at least. Then the Apple guy checked the problem himself and he restored it in their iTunes. After the restore, the month, day, time and year were correct. When I got home, I just synced with the previous back-up. All my apps were re-installed, my games were intact but my documents saved in some apps (like Documents to Go, PDF Expert and CHM+) were gone.
    The Apple guy said, I might have encountered an Internet problem while I was updating hence the bug. I was the first case they've encountered. But they couldn't explain what the BE stands for... Before Extinction? Hope the experts shed light on this to avoid it coz I wasn't able to use my iPad or even back-up to iCloud.

  • FM to get previous fiscal month/year and calendar month/year for a date.

    Hi All,
    I am having a requirement to extract some data based on either the previous fiscal month/year or the previous calendar month/year. There is no company code input to find the fiscal/calendar month/year.
    At selection screen, user can select either fiscal or calendar selection.
    Based on the selection, the data will be extracted.
    For the system date, we need to calculate previous fiscal month/year or previous calendar month/year and populate the calculated data back to the selection-screen.
    Can you one of you please suggest an FM to find previous fiscal month/year and previous calendar month/year.
    Thanks in Advance,
    Regards
    Gowthami

    Hi Gowthami,
    You can use following function module to calculate previous / next day or month or year.
       call function '/SAPHT/DRM_CALC_DATE'
          exporting
            date      = sy-datum
            days      =
            months    =
            sign      = '-'
            years     =
          importing
            calc_date = .
    Here, you can give '-' to sign, if you want previous day / month / year.
    Here, you can give '+' to sign, if you want next day / month / year.
    And depending upon your requirement, you can pass suitable value to days / month / year.
    e.g. To calcualte last month,
       call function '/SAPHT/DRM_CALC_DATE'
          exporting
            date      = sy-datum
            days      =
            months    = 1
            sign      = '-'
            years     =
          importing
            calc_date = wv_prev_month.
    so it will give '23-01-2008' . Then convert it in the required format as per your requirement using string function concatenate.
    Hope this help you.
    Regards,
    Anil

  • How to derive date from given month, year and day?

    Hi all,
    I have a doubt in date function. I need to create a date from the given month, year and day. How can i do it?

    consider this example
    REPORT zconvertdate001 .
    TYPES : BEGIN OF tt_date_in,
            day(2),
            sep1,
            month(3),
            sep2,
            year(4),
            END OF tt_date_in.
    DATA : wa_date_in TYPE tt_date_in VALUE '07-Jul-2006'.
    TYPES : BEGIN OF tt_date_out,
            day(2),
            month(2),
            year(4),
            END OF tt_date_out.
    DATA : wa_date_out TYPE tt_date_out.
    TRANSLATE wa_date_in-month TO UPPER CASE.
    SELECT SINGLE mnr
    INTO wa_date_out-month
    FROM t247
    WHERE spras EQ sy-langu
    AND   ktx EQ wa_date_in-month.
    CONCATENATE wa_date_in-year wa_date_out-month wa_date_in-day
           INTO wa_date_out.
    WRITE : / ' Date in:', wa_date_in,
            / 'Date out:', wa_date_out.

  • IPhoto only accepts date/month/year format for pics?

    I'm trying to add the dates to many old photos that I have in my iPhoto, version 8.1.2.
    Unfortunately, I have many years of photos in there, and I can't remember exact dates of many photos.
    And so I just want to at least put the month and the year. Or sometimes, I'll just remember the year.
    But iPhoto will only let me use a date/month/year format. Odd.
    Is there any way around this?
    Somehow, many of my old photos that have been transfered from old computers have dates assigned to them that are crazy, like 1960....etc.
    I can just make up a date and a month, but that takes more time, and furthermore it will be wrong info.
    I don't want that.
    It seems silly that I can't just put the year alone.
    Any thoughts?
    thank you!

    it also seems like the albums of photos will use the date of the earliest photo in the album, and the newest photo in the album to create a "from" field and a "to" field, in the "info" section at the bottom left of the application, when the Album is highlighted.
    This means that I have to manually correct every single photo in my albums, so that the album date range will read correctly?
    thanks again...

  • How to get Quaters of the year if give month year and number of quarters

    My requirement is if i give the input month, year and number of quarters i want the previous quarters. Is there is any function module to get the quarters if we give month and year and number of quarters
    Thank you.

    Pradeep,
    Use the Fm TSTR_PERIODS_QUARTERS and pass the year into the IMPORT PARAM IT_YEARTAB-TSTR.
    U will get the begin & End dates of each quarter...
    reward if helpful,
    Karthik

  • FM to calculate date month & year six months previous to the current date

    Hi All,
    Is there any function module or code to calculate date month & year six months previous to the current date.
    Thanks in advance.

    hi,
    try this
      data : date1 like vbak-erdat.
    data : q type numc3.
    selection-screen : begin of block blk2 with frame title text-001.
    parameters : n like q.
    selection-screen : end of block blk2.
    if n > 0.
    CALL FUNCTION 'CCM_GO_BACK_MONTHS'
             EXPORTING
               CURRDATE         = sy-datum
               BACKMONTHS       = n
           IMPORTING
              NEWDATE          = date1
    selection-screen: begin of block blk1 with frame title text-001.
    select-options :  s_date for vbak-erdat default 'NEWDATE'  to 'sy-datum' no-display.
    selection-screen : end of block blk1.
    write : date1.
    Reward with points if helpful.

  • Get week ending date from Year and Week Number

    I would like to display the week ending date in a Report.
    My dataset query has grouped the results by year and week number, so I am trying to construct the week ending date from year and week number.

    Week end date can be got as below
    =DateAdd(DateInterval.WeekOfYear,CInt(Fields!WeekNumber.Value) -1,DateAdd(DateInterval.Year,(Cint(Fields!Year.Value) - 1900),CInt("12/31/1899")))
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • I want to add 1 minute to my month, day, year, and time format cell

    I have a table that I need to change the initial start time by 1 minute every 4th line item. What formula would I used to do this? Example:
    September 27, 2012 10:00 AM is the Start Time and is used for 4 line items
    The next 4 line items will be at 10:01 AM and so on throughout all of the line items
    I need a formula to do this and can't figure it out.

    Here is something that might work:
    Use a table (called "Setup") to set the start date and time, then in a second table refer the set up date and time like:
    A2=DATE(YEAR(Setup :: $B$1), MONTH(Setup :: $B$1), DAY(Setup :: $B$1))&" "&TIME(HOUR(Setup :: $B$1), MINUTE(Setup :: $B$1)+INT((ROW()-2)/4), 0)
    select S2 and fill down as needed

  • T3 change date and year and time

    How do I change the date and time and year on a T3?

    Go to the Prefs app -> Date & Time.
    or do a soft reset, stick the stylus tip into the hole labeled "RESET"
    It will reboot and take you directly to the Date & Time panel.
    webosnation.com is another option for help.

  • Can I change the day/date format from US (month day year) to UK (date month year)?

    When I view databases through Firefox, the date/day format is set at month, day, year (US style), whereas I need day, month, year, I work in the UK and the "wrong" format is VERY confusing and could lead to errors/mistakes. IE has that format but I don't want to revert to using that.

    Gingerbread Man, thank you VERY much!! I followed your instructions and it works perfectly. I am a happy person :-))

  • Current date month year in flex

    can anyone let me know how to get current system date in flex
    and how to compare seleted date and system date in flex
    thanks in advance

    below is the example code which get the date, month and year
    when you try to access the month it return less than one (if you try to get the month when the month is set to jan it return zero ) while displaying we need to increment as months starts from one
    import mx.controls.Alert;
    public function init():void
    var dt:Date= new Date();
    Alert.show("date : "+dt.getDate().toString()+"\nmonth : "+Number(Number(dt.getMonth().toString())+1) +"\nYear : "+dt.getFullYear().toString());
    if this post answers your question or helps, please mark it as such

  • Validation problem with the selected Month-Year and Days in the Month.

    Hi,
    I am unable to figure out the logic for the below senario.
    There are two fields Period and Date
    If Users sets the Period to FEB-11
    and User has to select the Dates of the February Month only and if he selects any other month It should throw an error.
    How could I restrict the user to not enter any other date from the selected period.
    Please suggest.
    Thanks,
    Krishna

    Hi Gyan,
    Thanks for the update.
    I am just tring to copare the values
    able to get the period value and unable to compare to the date format.
    just look at the below code with the output of sop
            OAMessageTextInputBean mtb =
            (OAMessageTextInputBean)webBean.findIndexedChildRecursive("item1");
                OAMessageDateFieldBean mtb1 =
                (OAMessageDateFieldBean)webBean.findIndexedChildRecursive("item2");
            String period = (String)mtb.getValue(pageContext);
            System.out.println("Value of Period:::"+period);   // FEB-11 is the out put
               Date date = (Date)mtb1.getValue(pageContext);
                System.out.println("Value of Period:::"+date); // 2011-02-09 is the output
    // Converting the date to string using SimpleDateFormat
                DateFormat df = new SimpleDateFormat("dd-MM-yyyy");
                String date1 = df.format(date);
                System.out.println("String Date::"+date1);
                String date2 = date1.substring(3,5);
                System.out.println("SubString::"+date2);
           // 02 is the out put I am not able to Format the month in SimpleDateFormat("dd-MON-yyyy") to get the
          //  month as FEB is there any converter.
                String date3 = date1.substring(8,10);
                System.out.println("SubString2::"+date3);
         //11 is the out put
            if (period.equalsIgnoreCase(date2.concat(date3)) )
      // after concatinating the format is 02-11 so its going to exception
                System.out.println("Date in the same Period");
            else {
                throw new OAException ("Date Selected is out of range::");
            }I am not able to Format the month in SimpleDateFormat("dd-MON-yyyy") to get the month as FEB is there any converter.
    The logic is working fine but the month is not getting converted.
    Thanks,
    Krishna

  • Setting 'Day Month Year'.

    The system pref. is set to 'Day-Month-Year' but iCal shows
    'Month-Day-Year' how can this be changed

    Welcome to the discussions, Edward. Have you quit and restarted iCal since setting the system pref?
    AK

  • Input: Month Year and Out Put Display

    Dear SDN,
    Is it possible to view a Query, if we provide only Month & Year..
    Then the following result has to display..
    Entered month year --- Previous month year --- YTD entered month -- YTD Previous month year
    Example : During execution of a query -- suppose if i enter Sep 2007
    Sep2007 -- Sep2006 -- YTD Sep2007 -- YTD Sep2006
    Please suggest me...
    Help will appreciated with points
    This is very urgent...
    Thanks in advance

    Hi,
    Create a VAR Ready for input on 0FISCPER (eg ZFPIN)
    COL 1: RKF with your KF restricted to 0FISCPER = ZFPIN
    COL 2: RKF " 0FISCPER = ZFPINLY
    COL 3: RKF " 0FISCPER = ZFPINYTD
    COL 4: RKF " 0FISCPER = ZFPINLYYTD
    ZFPINLY, ZFPINYTD, ZFPINLYYTD are variables NOT ready for input processed by customer exit (CMOD).
    The code should basically be:
    DATA: l_s_range     TYPE rsr_s_rangesid.
    DATA: loc_var_range LIKE rrrangeexit.
    DATA: fiscal_year LIKE t009b-bdatj.
    CASE i_vnam.
    WHEN 'ZFPINLY'.
    IF I_STEP = 2.
    LOOP AT i_t_var_range INTO loc_var_range
    WHERE vnam = 'ZFPIN'.
       fiscal_year = loc_var_range-low(4).
       fiscal_year = fiscal_year - 1.
       CONCATENATE fiscal_year loc_var_range-low+4(3) INTO l_s_range-low.
       EXIT.
    ENDLOOP.
    l_s_range-sign     = 'I'.
    l_s_range-opt      = 'EQ'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    WHEN 'ZFPINYTD'.
    IF I_STEP = 2.
    LOOP AT i_t_var_range INTO loc_var_range
    WHERE vnam = 'ZFPIN'.
       CONCATENATE loc_var_range-low(4) '001' INTO l_s_range-low.
       l_s_range-high = loc_var_range-low.
       EXIT.
    ENDLOOP.
    l_s_range-sign     = 'I'.
    l_s_range-opt      = 'BT'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    WHEN 'ZFPINLYTD'.
    IF I_STEP = 2.
    LOOP AT i_t_var_range INTO loc_var_range
    WHERE vnam = 'ZFPIN'.
       fiscal_year = loc_var_range-low(4).
       fiscal_year = fiscal_year - 1.
       CONCATENATE fiscal_year '001' INTO l_s_range-low.
       CONCATENATE fiscal_year loc_var_range-low+4(3) INTO l_s_range-high.
       EXIT.
    ENDLOOP.
    l_s_range-sign     = 'I'.
    l_s_range-opt      = 'BT'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    ENDCASE.
    hoping this will guide you....
    Olivier.

Maybe you are looking for

  • I can't find a movie I know was in the US iTunes Store...

    I have been gradually switching my movie collect from DVD to iTunes.  When I want to download the complete Harry Potter set, all the movies were there except the Half-Blood Prince.  I know it was sold in the US iTunes Store last year when it was rele

  • Accounting Principle role in Foreign Currency Valuation

    Dear Frns, Why do we create an Accounting Principle in Foreign Currency Valuation and assign the same to the Ledger Group. Regards, Venkata

  • How do display array of labels and buttons in JSplitPane

    Helloo Iam doing doing project on swing. I want to display an array of JLabels in JSplitPane. That to the leftside of the JSplitPane. On Right side Array of Jutton Please can any body solve my problem. regards sonali

  • Runtime error in DropDownByKey

    Hi all, In my appl, This is the code inside my wdInit() of CustomeController: Y_Ep_Demo_Get_Material_Input ip=new Y_Ep_Demo_Get_Material_Input();   wdContext.nodeY_Ep_Input().bind(ip);   IWDMessageManager manager= wdComponentAPI.getMessageManager();

  • Wrong layout chart with IGS 7.0 and 3.0b webtemplates

    Hi, We just did an upgrade from BW 3.0b to 7.0. We also upgraded te IGS to 7.0. We don't want to upgrade our webtemplates to the new version yet. However, if we display a chart now, it shows a wrong layout. If we change the IGS back to an old version