find the date and day

transaction

ID Grp Loc qty type report_days

ABC x 21 101 1 4/1/2009
ABC x 29 101 2 4/1/2009
ABC x 22 101 3 4/1/2009
ABC x 45 101 1 15/6 / 2008
ABC 100 x 102 1 16/11/2008

I have a table called transaction

I want to generate a report like this in an another table generatereport

GenerateReport

GenerateReport

ID Grp Loc qty1 2 days report_days

ABC 101 x 0 0 Sunday, June 1, 2008 adding 7 days
101          abc          x          0          0          Sunday          ..
ABC 101 x 45 0 Monday, June 15, 2009
ABC 101 x 100 0 Sunday, November 16, 2008
101          abc          x          0          0          Sunday          …
101 abc x 50 22 Sunday until 01/04/2009 (i.e. ONE year)


Qty1 Generatereport table column is filled with the sum of the quantity of type 1 + type 2

column 2 of table Generatereport is filled with the sum of the quantity of type 3

All day should be Sunday

and we must go a year back from 01/04/09 and generate the timetable up to 2009-04-01 only for Sundays

can you help me pls

Thanks in advance

Published by: user12093849 on November 13, 2009 04:55

Published by: user12093849 on November 13, 2009 04:58

This is the query, I came up with that:

WITH    transaction_table AS
(
        SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 21  AS QTY, 1 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
        SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 29  AS QTY, 2 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
        SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 22  AS QTY, 3 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
        SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 45  AS QTY, 1 AS TYPE, TO_DATE('06/15/2008','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
        SELECT  102 AS ID, 'abc' AS GRP, 'x' AS LOC, 100 AS QTY, 1 AS TYPE, TO_DATE('11/16/2008','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL
)
-- END TEST DATA
,      sunday_date_range AS
(
        SELECT  NEXT_DAY(TO_DATE(:pStartDate,'MM/DD/YYYY')-1,'SUNDAY') + 7*(LEVEL - 1) AS DT
        FROM    DUAL
        CONNECT BY LEVEL <= (TO_DATE(:pEndDate,'MM/DD/YYYY') - TO_DATE(:pStartDate,'MM/DD/YYYY'))/7 + 1
)
SELECT  ID
,       GRP
,       LOC
,       TO_CHAR(DT,'Day DD/MM/YYYY')    AS REPORT_DAYS
,       SUM(CASE WHEN TYPE IN (1,2)     THEN QTY ELSE 0 END) AS QTY1
,       SUM(CASE WHEN TYPE = 3          THEN QTY ELSE 0 END) AS QTY2
FROM                    transaction_table       PARTITION BY (ID, GRP, LOC)
RIGHT OUTER JOIN        sunday_date_range       ON transaction_table.REPORT_DAYS BETWEEN sunday_date_range.DT - 7 + INTERVAL '1' SECOND AND sunday_date_range.DT
GROUP BY ID
,       GRP
,       LOC
,       DT
ORDER BY 1, 2, 3

Here's the test scenario:

SQL> var pStartDate  VARCHAR2(25);
SQL> exec :pStartDate := '04/01/2008';

PL/SQL procedure successfully completed.

SQL> var pEndDate  VARCHAR2(25);
SQL> exec :pEndDate := '04/01/2009';

PL/SQL procedure successfully completed.

SQL> WITH    transaction_table AS
  2  (
  3          SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 21  AS QTY, 1 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
  4          SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 29  AS QTY, 2 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
  5          SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 22  AS QTY, 3 AS TYPE, TO_DATE('04/01/2009','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
  6          SELECT  101 AS ID, 'abc' AS GRP, 'x' AS LOC, 45  AS QTY, 1 AS TYPE, TO_DATE('06/15/2008','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL UNION ALL
  7          SELECT  102 AS ID, 'abc' AS GRP, 'x' AS LOC, 100 AS QTY, 1 AS TYPE, TO_DATE('11/16/2008','MM/DD/YYYY') AS REPORT_DAYS FROM DUAL
  8  )
  9  -- END TEST DATA
 10  ,      sunday_date_range AS
 11  (
 12          SELECT  NEXT_DAY(TO_DATE(:pStartDate,'MM/DD/YYYY')-1,'SUNDAY') + 7*(LEVEL - 1) AS DT
 13          FROM    DUAL
 14          CONNECT BY LEVEL <= (TO_DATE(:pEndDate,'MM/DD/YYYY') - TO_DATE(:pStartDate,'MM/DD/YYYY'))/7 + 1
 15  )
 16  SELECT  ID
 17  ,       GRP
 18  ,       LOC
 19  ,       TO_CHAR(DT,'Day DD/MM/YYYY')    AS REPORT_DAYS
 20  ,       SUM(CASE WHEN TYPE IN (1,2)     THEN QTY ELSE 0 END) AS QTY1
 21  ,       SUM(CASE WHEN TYPE = 3          THEN QTY ELSE 0 END) AS QTY2
 22  FROM                    transaction_table       PARTITION BY (ID, GRP, LOC)
 23  RIGHT OUTER JOIN        sunday_date_range       ON transaction_table.REPORT_DAYS BETWEEN sunday_date_range.DT - 7 + INTERVAL '1' SECOND AND sunday_date_range.DT
 24  GROUP BY ID
 25  ,       GRP
 26  ,       LOC
 27  ,       DT
 28  ORDER BY 1, 2, 3
 29  /

        ID GRP L REPORT_DAYS                QTY1       QTY2
---------- --- - -------------------- ---------- ----------
       101 abc x Sunday    06/04/2008          0          0
       101 abc x Sunday    13/04/2008          0          0
       101 abc x Sunday    20/04/2008          0          0
       101 abc x Sunday    27/04/2008          0          0
       101 abc x Sunday    04/05/2008          0          0
       101 abc x Sunday    11/05/2008          0          0
       101 abc x Sunday    18/05/2008          0          0
       101 abc x Sunday    25/05/2008          0          0
       101 abc x Sunday    01/06/2008          0          0
       101 abc x Sunday    08/06/2008          0          0
       101 abc x Sunday    15/06/2008         45          0
       101 abc x Sunday    22/06/2008          0          0
       101 abc x Sunday    29/06/2008          0          0
       101 abc x Sunday    06/07/2008          0          0
       101 abc x Sunday    13/07/2008          0          0
       101 abc x Sunday    20/07/2008          0          0
       101 abc x Sunday    27/07/2008          0          0
       101 abc x Sunday    03/08/2008          0          0
       101 abc x Sunday    10/08/2008          0          0
       101 abc x Sunday    17/08/2008          0          0
       101 abc x Sunday    24/08/2008          0          0
       101 abc x Sunday    31/08/2008          0          0
       101 abc x Sunday    07/09/2008          0          0
       101 abc x Sunday    14/09/2008          0          0
       101 abc x Sunday    21/09/2008          0          0
       101 abc x Sunday    28/09/2008          0          0
       101 abc x Sunday    05/10/2008          0          0
       101 abc x Sunday    12/10/2008          0          0
       101 abc x Sunday    19/10/2008          0          0
       101 abc x Sunday    26/10/2008          0          0
       101 abc x Sunday    02/11/2008          0          0
       101 abc x Sunday    09/11/2008          0          0
       101 abc x Sunday    16/11/2008          0          0
       101 abc x Sunday    23/11/2008          0          0
       101 abc x Sunday    30/11/2008          0          0
       101 abc x Sunday    07/12/2008          0          0
       101 abc x Sunday    14/12/2008          0          0
       101 abc x Sunday    21/12/2008          0          0
       101 abc x Sunday    28/12/2008          0          0
       101 abc x Sunday    04/01/2009          0          0
       101 abc x Sunday    11/01/2009          0          0
       101 abc x Sunday    18/01/2009          0          0
       101 abc x Sunday    25/01/2009          0          0
       101 abc x Sunday    01/02/2009          0          0
       101 abc x Sunday    08/02/2009          0          0
       101 abc x Sunday    15/02/2009          0          0
       101 abc x Sunday    22/02/2009          0          0
       101 abc x Sunday    01/03/2009          0          0
       101 abc x Sunday    08/03/2009          0          0
       101 abc x Sunday    15/03/2009          0          0
       101 abc x Sunday    22/03/2009          0          0
       101 abc x Sunday    29/03/2009          0          0
       101 abc x Sunday    05/04/2009         50         22
       102 abc x Sunday    06/04/2008          0          0
       102 abc x Sunday    13/04/2008          0          0
       102 abc x Sunday    20/04/2008          0          0
       102 abc x Sunday    27/04/2008          0          0
       102 abc x Sunday    04/05/2008          0          0
       102 abc x Sunday    11/05/2008          0          0
       102 abc x Sunday    18/05/2008          0          0
       102 abc x Sunday    25/05/2008          0          0
       102 abc x Sunday    01/06/2008          0          0
       102 abc x Sunday    08/06/2008          0          0
       102 abc x Sunday    15/06/2008          0          0
       102 abc x Sunday    22/06/2008          0          0
       102 abc x Sunday    29/06/2008          0          0
       102 abc x Sunday    06/07/2008          0          0
       102 abc x Sunday    13/07/2008          0          0
       102 abc x Sunday    20/07/2008          0          0
       102 abc x Sunday    27/07/2008          0          0
       102 abc x Sunday    03/08/2008          0          0
       102 abc x Sunday    10/08/2008          0          0
       102 abc x Sunday    17/08/2008          0          0
       102 abc x Sunday    24/08/2008          0          0
       102 abc x Sunday    31/08/2008          0          0
       102 abc x Sunday    07/09/2008          0          0
       102 abc x Sunday    14/09/2008          0          0
       102 abc x Sunday    21/09/2008          0          0
       102 abc x Sunday    28/09/2008          0          0
       102 abc x Sunday    05/10/2008          0          0
       102 abc x Sunday    12/10/2008          0          0
       102 abc x Sunday    19/10/2008          0          0
       102 abc x Sunday    26/10/2008          0          0
       102 abc x Sunday    02/11/2008          0          0
       102 abc x Sunday    09/11/2008          0          0
       102 abc x Sunday    16/11/2008        100          0
       102 abc x Sunday    23/11/2008          0          0
       102 abc x Sunday    30/11/2008          0          0
       102 abc x Sunday    07/12/2008          0          0
       102 abc x Sunday    14/12/2008          0          0
       102 abc x Sunday    21/12/2008          0          0
       102 abc x Sunday    28/12/2008          0          0
       102 abc x Sunday    04/01/2009          0          0
       102 abc x Sunday    11/01/2009          0          0
       102 abc x Sunday    18/01/2009          0          0
       102 abc x Sunday    25/01/2009          0          0
       102 abc x Sunday    01/02/2009          0          0
       102 abc x Sunday    08/02/2009          0          0
       102 abc x Sunday    15/02/2009          0          0
       102 abc x Sunday    22/02/2009          0          0
       102 abc x Sunday    01/03/2009          0          0
       102 abc x Sunday    08/03/2009          0          0
       102 abc x Sunday    15/03/2009          0          0
       102 abc x Sunday    22/03/2009          0          0
       102 abc x Sunday    29/03/2009          0          0
       102 abc x Sunday    05/04/2009          0          0

106 rows selected.

This query performs a number of things.

1. the sunday_date_range generates all the Sunday between the pStartDate and the pEndDate

2. I've made use of a JOIN OUTSIDE of SCORE to generate the date range for EACH ID, GRP and LOC. If you do not have 10g, to implement an alternative workaround.

3. I join on a date range for a little less than 7 days if all report data fall date Sunday by your condition. This is because on 01/04/2009 is not a Sunday.

HTH!

Tags: Database

Similar Questions

  • To find the months and days between 2 dates

    Hello

    I want to find the months and days between 2 dates.

    For example.

    1 - Date: August 25, 2013

    2 - Date: October 23, 2013

    If we consider each month 30 days, it should give

    August 25, 2013 to August 30, 2013 = 6 days

    01-Sep-2013-30-Sep-2013 = 1 month

    October 23, 2013 to October 30, 2013 = 8 days

    Total = 1 month and 14 days.

    Kindly help as soon as possible.

    Thanks and greetings

    Suresh

    Assuming that d2 > d1,.

    where d)

    Select sysdate d1, sysdate + 56 double d2

    Union all select to_date (March 1, 2013 ',' dd-mon-yyyy "") d1, to_date (March 31, 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date (5 February 2013 ',' dd-mon-yyyy ') d1, to_date (March 31, 2013 ',' dd-mon-yyyy "") double d2

    Union all select to_date (February 25, 2013 ',' dd-mon-yyyy "") d1, to_date (March 23, 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date (February 25, 2013 ',' dd-mon-yyyy ') d1, to_date (March 31, 2013 ',' dd-mon-yyyy "") double d2

    Union all select to_date (August 2, 2013 ',' dd-mon-yyyy "") d1, to_date (29 October 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date (February 1, 2013 ',' dd-mon-yyyy "") d1, to_date (May 31, 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date (25 August 2013 ',' dd-mon-yyyy "") d1, to_date ('03-Sep-2013', 'Mon-dd-yyyy') d2 double

    Union all select to_date (July 30, 2013 ',' dd-mon-yyyy "") d1, to_date (August 31, 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date (July 31, 2013 ',' dd-mon-yyyy ') d1, to_date (August 30, 2013 ',' dd-mon-yyyy "") double d2

    Union all select to_date (July 31, 2013 ',' dd-mon-yyyy ') d1, to_date (3 August 2013 ',' dd-mon-yyyy "") double d2

    Union all select to_date (3 July 2013 ',' dd-mon-yyyy "") d1, to_date (August 31, 2013 ',' dd-mon-yyyy ') d2 double

    Union all select to_date ('31-08-2013', ' dd-mm-yyyy'), to_date('05-10-2013','dd-mm-yyyy') of the double

    Union all select to_date ('05-02-2013', ' dd-mm-yyyy'), to_date('31-03-2013','dd-mm-yyyy') of the double

    Union all select to_date ('05-02-2013', ' dd-mm-yyyy'), to_date('05-03-2013','dd-mm-yyyy') of the double

    Union all select to_date ('05-02-2013', ' dd-mm-yyyy'), to_date('05-02-2013','dd-mm-yyyy') of the double

    )

    Select d1, d2,

    1 + 30 * trunc (months_between (d2, d1)) + LESS (extract (day of d2), 30)-LESS (excerpt (d1 day), 30)

    + CASE when extracted (d2 day)< extract(day="" from="" d1)="" then="" 30="" else="" 0="" end ="">

    d

    D1 D2 DAYSBETWEEN

    ----------- ----------- -----------

    October 10, 2013 5 December 2013 56

    March 1, 2013 30 March 31, 2013

    5 February 2013 March 31, 2013 56

    February 25, 2013 March 23, 2013 29

    February 25, 2013 March 31, 2013 36

    August 2, 2013 29 October 2013 88

    February 1, 2013 may 31, 2013 120

    August 25, 2013 03 - Sep-2013 9

    July 30, 2013 31 August 31, 2013

    July 31, 2013 August 30, 2013 31

    July 31, 2013 3 August 2013 4

    July 3, 2013 August 31, 2013 58

    31 August 2013 5 October 2013 36

    5 February 2013 March 31, 2013 56

    5 February 2013 March 5, 2013 31

    February 5, 2013 February 5, 2013 1

    In my view, which corresponds to your rules.

  • Toshiba 40TL938G - find the date and time settings

    I have a 40TL938G and I can't find the date and time settings.
    Can someone help me?

    SSY
    I read the manual and it does ' t say anything about these settings.

    THX

    In the settings of digital television, you should see the option called local time settings

    To display the time on the TV you press the sign of the small clock on the remote control while watching a normal TV show (analog only)

  • How to find the Date and the time of Installation of Oracle on Windows?

    Hello

    Is it possible to find the installation Date and time of Oracle on Windows?


    Concerning
    Rajesh

    If you have never recreated/restored/reincarnated the database, then COLUMN of v database $ should tell you when you created the database.

    If you are looking for the time of installing Oracle home, check the logs under OraInventory.

    Reply by Satish sir at the following link:
    installation of a database date/time!

    HTH
    Girish Sharma

  • Date and days for the entire year come in the column

    Hi all

    I have 2 column 1 is the Date and day 2

    And I have a button, I need when I press enter then his show all the year date in the date and day column in the column of day for example

    Date - day+.
    * 1 - jan - 2009 - Thursday *.
    * 2 - jan - 2009 - Friday *.
    * 3 - jan - 2009 - Saturday *.



    And like on

    I hope that you guys understand

    Concerning

    Wasim Ismail

    Hai,

    This means, you must fill in the block record multi that has 2 columns (1 is the date, and the other is updated.).

    For this try this in the trigger WHEN BUTTON PRESSED the button.

    DECLARE
         Dt_Date DATE;
    BEGIN
         GO_BLOCK ('');
         CLEAR_BLOCK(NO_VALIDATE);
         FIRST_RECORD;
         Dt_Date := TO_DATE('01-JAN-2009');
         LOOP
              :.TI_DATE := TO_CHAR(Dt_Date, 'DD-MON-YYYY');
              :.TI_DAY  := TO_CHAR(Dt_Date, 'DAY');
              EXIT WHEN TO_CHAR(Dt_Date, 'YYYY') <> TO_CHAR(Dt_Date + 1, 'YYYY');   -- If next year reaches, exit from the loop.
              Dt_Date := Dt_Date + 1;
              NEXT_RECORD;
         END LOOP;
    END;          
    

    Kind regards

    Manu.

    If this answer is useful or appropriate, please mark. Thank you.

  • How to find the next date of the year and day as of today's date and the day

    I have a question about date functions, that is to say: how to get one next year (date and day) like today are the date and the day this year?

    You mean like this?

    SQL > select to_char (add_months (sysdate, 12),' day DD/MM/YYYY ') twice;

    TO_CHAR (ADD_MONTHS (S
    --------------------
    Friday, August 22, 2014

  • Find the number of days between the dates...

    Hi friends,

    I am new to this development of blackberry applications so I do not know how to find the number of days between two days. Y at - there any API is avilable otherwise we have to write our own code. In fact, I tried GregorianCalendar but I get error that cannot find the symbol but I already imported net.rim.device.api.util and package java.util also... Please give an idea how to solve this problem.

    with respect,

    s.Kumaran.

    Use DateField class instances to represent dates on the screen.

    And your code will be as follows:

    long date1 = date1DateField.getDate ();

    long date2 = date2DateField.getDate ();

  • F4 key doesn't work does not after El Capitan upgraded for my MacBook Pro. Used to be the date and time. Anyone know where to find it now?

    When I upgraded my MacBook Pro to El Capitan, the F4 key that allows to display the date, time and calendar has stopped working. Anyone know if this is not supposed to want to work more? Or how I can quickly display the date and time as I'm used to using the F4 function key?

    On my Mac running 10.11.2 which brings to the top of the dashboard. I think that there are now three different ways to make in the face of dashboard elements, which seem completely obscure to me. I just set mine to do what he did originally come in an overlay with the widgets running.

    Look in System Preferences > Mission Control...

    to halfway to the bottom of the box:

    Dashboard: {as overlay, like space, Off}

  • reset the date and time on Photosmart all-in - One 7510 C311a

    I need to reset the date and time when I send faxes.  These things are wrong on my Fax.  Can you help me find the place to correct the date and time?

    I did not change my system.

    No error message.

    My OS is Snow Leopard 10.6.8

    Hello

    1. On the Control Panel, press the Setup icon ( ), then tap Tools / Preferences.
    2. Tap the Date & time option.
    3. Tap your desired time zone. Set time is displayed.
    4. Press the arrow pointing upwards ( ) or the down arrow ( ) to set the hour and minutes.
    5. Tap AM or PM .
    6. Touch Daylight Saving if you are in a time zone that adjusts for daylight saving time.
    7. Press OK to confirm the time that you set.
    8. Using the numbers on the Control Panel, press the numbers for the current month, day and year and then press OK
  • How do you know the date and time of synchronization in the windows version?

    Where can I see the date and time of synchronization?

    Is there a toolbar button in the Palette to customize. Move this button to a toolbar or in the Menu box open. When you hover over this button, a ToolTip will appear with the day of the week and time of the last synchronization event.

  • Can I change the date format day/United States (month day year) in the United Kingdom (date month year)?

    When I consult databases via Firefox, the format of date/day is set at: day, month, year (AMERICAN style), while I need, day, month, year, I work in the United Kingdom and the 'bad' format is VERY confusing and could lead to errors and mistakes. IE has that format, but I don't want to return to using that.

    You use the English (United States) version of Firefox ESR 24.3.0. You can download the English version of (British) below:

    1. under Options - content - language, make sure that English/United Kingdom [en-us] is located at the top of the list.

    2. in the Windows Control Panel category, region and language, make sure that the short Date is set at your convenience.

    You can check the date and time at the library of Firefox, bookmarks category format. Press Ctrl + Shift + B to open it, and then note the dates in the added to the right column.

  • Satellite Pro 6100 - how to change the date and time in the BIOS

    Hello

    I received a satellite pro 6100 that had not been used for some time. Windows does not work then he reinstalled with the good drive.

    When I try and windows 'enable', I get the error 32777 and the laptop is unable to connect with the activation servers that a google leads to believe me that the date and time are incorrect in the bios.

    I know that Press esc to access the bios but there is no option to change the date and time in there. I put the date / the correct time in windows, but this does not seem to synchronize with the bios. I've updated to the latest version of the bios, but this is not enough.

    How can I change or update the time in the bios?

    Thank you

    Hello

    I doubt this time and date setting BIOS does affect Windows activation time Windows doesn t affect it in my opinion. There must be another reason for this problem.
    You can activate Windows by phone?

    Normally the date and time in the BIOS can change you if you mark the date or time, and then press on + or - to change this. Sometimes you have to press PageDown/to the top according to the model of BIOS or laptop.
    Usually in the configuration of the BIOS you will find a brief info how changing the values.

    Check this box!

  • How to find the date item was my favorites on Mozilla Firefox

    on system moot bookmark how to find the date of the bookmark?

    In bookmarks menu select organize bookmarks to open the bookmarks library. In the bookmarks library, click views, and then display the columns and then added. This will display a column showing when a bookmark has been added.

  • Camileo S20 - How to display the date and time

    Hi, all. I got as Christmas present the Camileo S20, and I am not able to view the date and time in the video. In the manual is no reference on this subject, only how to set the date and time. But what is the intention to set the date and time in the camera, if it is not possible to display video?

    Hello

    Have you checked the user manual of your TV cam?

    If it of possible to display the data and the time you can find in your user manual how to do this. It always interesting to read ;) s

  • Adjust the Date and time on the HP LaserJet MFP M127fn Pro?

    Hello

    Someone knows how to change the time on a LaserJet MFP M127fn Pro?

    Thanks in advance!

    Sean

    .

    Hi @SeanKaneFLA ,

    I see by your post that you would like to know how to change the date and time on the printer. I would like to help you today.

    This information was given by the manual on page 45. MFP LASERJET PRO.

    You may have configured these settings when you installed the software. You can configure these settings
    at any time by using the control of product or the HP Fax Setup Wizard panel.

    LCD control panel:
    1. on the product control panel, press the Setup button.
    2. Select the System Configuration and then select Date/time.
    3. Select the clock in 12-hour or 24-hour format.
    4. use the keypad to enter the current time and press the OK button.
    5 Select the date format.
    6 use the keypad to enter the current date and then press the OK button.
    7. Select Fax Setup, and then click Fax header.
    8 use the keypad to enter your fax number and press the OK button.
    NOTE: The maximum number of characters for the fax number is 20.
    9. use the keyboard to enter your company name or header and press the OK button.
    NOTE: The maximum number of characters for the fax header is 40.

    (Windows) HP Fax Setup Wizard

    1. click on start and then click programs.
    2. click HP, click the name of the product, and then click Fax Configuration Wizard.
    3. follow the on-screen instructions to configure fax settings.

    I hope this helps.

    Good day!
    Thank you.

Maybe you are looking for

  • Equium A110-233 browser does not load after reappattage

    After having reinstalled just the Window XP with the restore CD that came with the laptop. A perfect internet connection, but the browser does not load, it works as it is not connected to the internet. I previously have it reinstalled several times w

  • Help is not open! A proxy issue

    Dear Sir I have a problem. When I put a block and I press "F1". do not open the online help. LabVIEW 1.1 Communication.  to use the system proxy? How do you define a specific proxy? concerning Leo

  • HS-190 monochromator

    I'm writing a labview program that allows me to control the monochromator HS-190 via a remote desktop connection. I am changes to existing code that uses this function to perform steps IPCE, but everything that I have to do is able to control what wa

  • Microsoft Security databases will not be installed

    Essentials downloads but want to install

  • back may be a date of System Restore & how do I manually enter

    I would like to do a system restore but only in December dates are listed.  back, I can go with the date and how do I enter that date manually?