Details of the line of summary data creation

Hi all

I have a summary table that I use to try to create a table on the detail row. I use Oracle 10 g, and the table looks like this:

STORE ZIP JAN4_2008 JAN11_2008 JAN18_2008 JAN25_2008... AUG29_2008
1 72756 5 6 10 0 30
2 30529 0 8 3 0 11
3 74464 8 9 0 2 2
.
.
.
2550 72113 3 8 5 0 0

There are a total of 2 550 stores and 40 weeks. However, I was invited to change the format of the table, so everything is the detail of the line, as follows:

STORE ZIP DATE UNITS
1 72756 JAN4_2008 5
1 72756 JAN11_2008 6
1 72756 JAN18_2008 10
72756 1 JAN25_2008 0
1 72756 AUG29_2008 30
2 30529 JAN4_2008 0
30529 2 JAN11_2008 8
30529 2 JAN18_2008 3
2 30529 JAN25_2008 0
2 30529 AUG29_2008 11
.
.
.
2550 72113 JAN4_2008 3
2550 72113 JAN11_2008 8
2550 72113 JAN18_2008 5
2550 72113 JAN25_2008 0
2550 72113 AUG29_2008 0

I'm sorry for what it looks like, but he pulled out the tabs and spaces when I posted. So my question is what instructions SQL do I need to create the new table, or what code should I? I tried to figure out how to do this in Oracle, but I think it's beyond my knowledge. I know SQL and use it almost every day, but I'm not a programmer. If something like this has been asked and answered before, I apologize. I didn't know how to find something like that.
Thanks for your help.

Hi skols.

You need something like this:

create table stores (store_id number(10) not null
                    ,zip number(5) not null
                    ,constraint stores_pk primary key (store_id)); 

create table unpivot(store_id number(10) not null
                    ,store_date date not null
                    ,units number(10) not null
                    ,constraint unpivot_pk
                        primary key (store_id, store_date)
                    ,constraint unpivot_stores_fk
                        foreign key (store_id) references stores (store_id)); 

insert into stores select distinct store, zip from pivot; 

insert into unpivot (store_id, store_date, units)
select store, to_date('JAN-04-2008', 'MON-DD-YYYY'), jan4_2008 from pivot
union all
select store, to_date('JAN-11-2008', 'MON-DD-YYYY'), jan11_2008 from pivot
union all
....;

Concerning
Peter

Tags: Database

Similar Questions

  • Compare lines with the contractor ID and choose the line with Min Date rental

    Hello

    I have a scenario where I need a line with the Minimum of the Pavilion main 'p' Hire Date whenever there are multiple records with the same ID of the contractor. I need a SQL for this

    For example

    Contractor_ID name Hire_Date end_date Primary_Flag

    123 Tom 9/11/2011-9/11/2012

    123 Tom 9/12/2012-5/12/2012


    I need to score the first line of 'P '. It is an example where there are thousands of discs where I have to mark. Some cases it can be 3 or 4 files to contractor_id even where I need a 'P' flag for recording with Min Hire_Date


    Thank you
    RAM

    Hello

    If you want to ensure that only 1 row by entrepreneur is marked "P", if the lines are the same, then I suggest you do something on the ROW_NUMBER analytic function, like this:

    SELECT       contractor_number
    ,       full_name
    ,       job_title
    ,       hire_date
    ,       end_date
    ,       CASE
               WHEN  1 = ROW_NUMBER () OVER ( PARTITION BY  contractor_number
                                                    ORDER BY          hire_date
                                  ,                end_date     DESC
                                )
               THEN  'P'
           END          AS primary_flag
    FROM       contractor
    ORDER BY  contractor_number
    ,            hire_date
    ,       end_date
    ;
    

    Output:

    CONTRACTOR
       _NUMBER FULL_NAME  JOB_TITLE  HIRE_DATE  END_DATE   P
    ---------- ---------- ---------- ---------- ---------- -
       1862180 Tom        Developer  8/01/2011  11/30/2012 P
       1862180 Tom        Developer  12/01/2012 11/30/2013
       1862181 Sam        Developer  9/01/2012  9/30/2012
       1862181 Sam        Developer  9/01/2012  12/30/2012
       1862181 Sam        Developer  9/01/2012  12/30/2012 P
    
  • Attachment MP3 will not play on the line of cellular data

    I use RingCentral to my office PBX, which sends me voice messages by email as an mp3 attachment. Since the last update to iOS, I can't listen to these attachments on my iPhone 6s unless I am connected to WiFi. I checked all my settings and can not find everything that's out of the ordinary or that would interfere with playing on the cell data. I recently turned on Wi - Fi help, so I wonder if that has something to do with it, or is this a bug in the last update? In addition, it gets weirder. If I go back to the office and connect with a Wi - Fi connection, then turn off Wi - Fi and use only cell data, then I hear the attachment.  So strange! Any help, or just a bug until a patch?

    Try going into settings > cellular > and under cellular data using for please be sure that the music is set on IT.

  • Question about the impact of a data file missing

    Oracle Version: 10 gr 2


    If a data file (not a data file belonging to the tablespace SYSTEM or any other data file associated with Oracle Internals) is lost, I can bring the database up somehow?

    Nichols wrote:
    Keita,
    What happens if I don't have a backup of the data file that is lost?

    OK understood

    If you do not have a backup of your database and that you have lost a data file, then you must re - create control file (which will contain the names of data inside files) without indicating lost data file name

    You must create the controlfile creation script and remove the line of lost data file name and create a controlfile. After that, you should be able to open your database successfully

    - - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev a. (10g OCP)
    http://kamranagayev.WordPress.com
    [Step by step installation Oracle Linux and automate the installation by using Shell Script | http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Get the line current viewObject in valueChangeListener

    Hello

    I had an editable table, based on a vo. In some of the entries in the table, I've defined a valueChangeListener. I would like to know how to get the current line in this method?

    For example, an editable table based on a vo that is based on the EMPLOYEES (eo) table. FA: input of FirstName, I declared a valueChangeListener, pointing to a bean method. In this method, I would get the value of the Email from this same line.

    Thank you for helping.

    Try adding

    
    inside the af:inputText
    

    and then at the bean to support:

    public void onChange(ValueChangeEvent valueChangeEvent) {
      Object email= valueChangeEvent.getComponent().getAttributes().get("email");
    }
    

    In addition, if you need to get all the details of the line, you can pass the pk as attribute and then find the line like this:

            DCIteratorBinding it = getBindings().findIteratorBinding("ViewIterator");
            it.setCurrentRowWithKeyValue(String.valueOf(rowPK));
    
  • can someone tell me why I can't update to El Capitan 10.11.2? the line "Show details" gets up and I click on it to make the update. When I do this, it just goes back to doing nothing, so I can never get past this point.

    can someone tell me why I can't update to El Capitan 10.11.2?

    When I try to update "updates available have changed" guest shows up.i click "Show details" prompt to complete the update and when I do that, it just goes back to doing nothing, so I can never get past this point. can someone help me with this, please?

    Thank you very much.

    In some cases, this error message is caused by a problem in the network. Restart your router as your device at wide band, if they are separated. If there is no change, see below.

    This procedure will remove some temporary and cache files. The files are generated automatically and do not contain any of your data. Sometimes they can become corrupted and cause problems like yours.

    Please, back up all data and read this message before doing anything.

    Triple-click anywhere in the line below on this page to select this option:

    /var/folders/zz/zyxvpxvq6csfxvn_n00000s0000068

    Right-click or Ctrl-click on the highlighted line and select

    Services ▹ reveal in Finder (or just to reveal)

    the contextual menu.* file should open with a selected subfolder. The subfolder has a long name beginning with "zyx" and ending with "68". Place this subfolder in the trash. Do not move other subfolders with similar names. You may be prompted for administrator login password. Restart the computer and empty the trash.

    * If you do not see the item context menu copy the selected text in the Clipboard by pressing Control-C key combination. In the Finder, select

    Go ▹ go to the folder...

    from the menu bar and paste it into the box that opens by pressing command + V. You won't see what you pasted a newline being included. Press return.

  • Details of the data of the virtual machine store

    Hi all

    Thank you is advanced.

    I'm trying to get the details of the virtual machine and its data store name, freespaceGB to n csv file. After excuting it I'm getting only the out put of the VM last on my list. Hope that I missed something in the addition of the output. Can someone please help.

    Add-PSSnapin VMware.VimAutomation.Core
    SE connect-VIServer 192.168.1.125

    #VMname.csv list of MV #.
    $vm = import-csv c:\scripts\vmname.csv
    {foreach ($line in $vm)
    Get-vm datastore - $line.name. Select-Object $line.name, name, FreeSpaceGB. Export Csv c:\scripts\ds.csv - NoTypeInformation
    }

    The result is that I'm looking is something like that.

    Virtal FreeSpace DS machine name

    VM1 DATA1 13 GB

    The virtual machine should be a calculated property, I've updated the code above.

    Give him another chance.

  • How to complete the data or details of the only this year and the previous year for the given RATNG?

    Hi all

    I created a form with 5 blocks (namely ENQACMHDR, ENQACMDTL, ENQACEHDR, ENQACEDTL, ENQACSPEC), where I have 8 push buttons (namely ENTER_QUERY, EXEC_QUERY, CLEAR, FIRST, NEXT, PREVIOUS, LAST, and EXIT).

    This form is created just for display purposes only. So after that I ran, all blocks have been blocked against insert and update.

    I have question on 2 fields 'ENQNO' and "RATNG" (both belong to the ENQACMDTL block).

    When I click on "EXEC_QUERY" directly, all data for all years fills.

    But the user wanted the data to be populated only this year and the previous year.

    Yes, on ' Clause WHERE' of the property_palette of the 'ENQACMDTL' block , I put in the following condition:

    SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')

    PROPERTY PALETTE (ENQACMDTL block)
    WHERE ClauseSUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')


    Data only this year and the year before are now filled. Its ok with the field of "ENQNO".

    The problem is when I have queries on the field "RATNG. 'RATNG' is a Text_item with number of displayed items = 5. (5 lines)


    Here are the 2 columns in a Table (name = ENQACMDTL) in the database.


    ENQNO RATNG
    2013900054500KC2
    2013900047800KC4
    2013520018750KC6
    ...............
    20129000371000KC2
    2012520109500KC2
    2012140019750KC6
    ..................
    2011540036500KC2
    20111000301000KC2
    ..................
    .................
    200610000790KD8
    2006750014750KC6
    2006900072500KC2

    The first 4 issues of "ENQNO" represents the year. There is more than a lakhs of records.

    So, when I have queries on the field "RATNG."

    Example: for RATNG = 500KC2;

    I click on ENTER_QUERY, the field of "RATNG", I put in the 500KC2 of the value and click on EXEC_QUERY; Details regarding the 500KC2 is displayed as well as all the other junk RATNG as 750KC6, 1000KC2 (which belongs to the ENQNO of the current year and previous year) also gets displayed.

    I want details of only RATNG (500KC2) to display, but only for the current year and the previous year, it is 2013900054, 2012520109 (ENQNO).

    Other than 500KC2 RATNG, no other RATNG must be displayed.

    500KC2 = RATNG is also present for ENQNO = 2011540036, 2006900072. But I don't want them to view.

    I want only the data or details of the current year and the previous year to be filled or displayed for the given RATNG.

    Can you help me or tell me what I do for this?

    Hope I'm clear with my question!

    If my question is not clear, let me know please.

    Thank you.

    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production

    Oracle forms 6i.

    1. check null values in the enqacmdtl.enqno, if so treat them properly.

    2. check the result of select to_char (add_months (sysdate,-12), 'YYYY') prev_year curr_year of double to_char(sysdate,'YYYY')

    3. change the place where clause "year" in the value of numAriques.

    where to_number (substr (enqacmdtl.enqno, 1, 4)) > = to_number (to_char (add_months (sysdate,-12), 'YYYY'))

    Then let me know the result.

  • All my data have doubled and the lines are slightly compensation and overlapping. Unusable.

    All my data have doubled and the lines are slightly compensation and overlapping. Unusable. How to restore the distorted view course content?

    Hello Arnold,.

    A screenshot of the upper-left corner of your document could help the issue. Include as much as in the example below.

    If this section of the table does not display data "doubled and shifted", provide a second screenshot of a section of the same size, showing a sample of the data in question.

    Kind regards

    Barry

  • 2d line, numbers and dates. How to take into account the date value when drawing a 2d line?

    Hello. I just encountered a problem when tracing a line 2d with numbers.

    I have the following table:

    Date

    Total

    2015 12-31

    R $150 000,00

    2016 03-19

    R $159 000,00

    2016-03-25

    R$ 166,090.00

    2016-04-01

    R$ 159,250.90

    2016 04-10

    R$ 165,343.41

    But when I create a 2d line chart it does take into account the fact that the 1st line is in December. Numbers do not fit the distance between the data symbols according to the date, but instead just consider the dates like any other label. Which causes the curve final not not to be specific

    Is it possible to make account numbers of dates when tracing of graphics?

    If you don't want the dates to be spaced when you do not have uniform intervals so you can use a cloud of points in 2D instead of a 2D line and turn on the connection line, something like this:

    Note that with the Scatter 2D (unlike with 2D line) you do not want to be defined as a column header in the left column.

    SG

  • Changes of date and time when you go to the line

    On the date and time to start on the computer is fine.

    When I go to the line for a unknown reason date and time moves forward 12 hours. This happens not always as some time it will be presented one, two or three days without change.

    Very frustrating because it affects the majority of the applications where the date and time are referenced.

    I'm missing something in the settings of date and time.

    [Moved from the forum comments]

    Hello

    -What operating system is installed on the computer?

    If you have installed Windows 7, you can run this Microsoft Fixit and check if that helps.

    Difficulty of broken desktop shortcuts and common system maintenance tasks: http://support.microsoft.com/mats/system_maintenance_for_windows/?wa=wsignin1.0

    Additional information.

    Set the clock: http://windows.microsoft.com/en-in/windows7/set-the-clock

    Thank you.

  • Access to the details of the rank of master line

    Hi all

    I use jdev 12.1.3.0.0

    My AM method returns a line of a display object object. This is line mater and it has detail rows. There is a link between master and detail views and association.

    I'll call the method AM from my bean, who returns me the rank of master. Now, I want to access the detail line. I don't know what is the best way to do it, also I am getting an error when I do using the code below.

    CCPC DCBindingContainer = getBindings() (DCBindingContainer);

    OperationBinding findByNatitonalID = dcBc.getOperationBinding("findByNationalId");

    Line resultRow = (Row) findByNatitonalID.execute (); Returns a line

    RowIterator assign = (RowIterator) resultRow.getAttribute ("XxQualifications"); / / Find the detail row

    System.out.println ("xxPerQual" +. getRowCount())assign;  Returns 1 there is a line of detail in DB

    System.out.println ("xxPerQual" +assign. getCurrentRow()); //Returns null

    Code of the AM Impl.

    AmInstace

    PersonVO1

    | _QualificationsVO2

    public findByNationalId(String nationalId) {} line

    Pervert ViewObjectImpl = this.getPersonVO1 ();

    ViewCriteria perVC= perAllPeopleVO.getViewCriteria("findByNationalId");

    pervert .applyViewCriteria (perVC);

    pervert .setNamedWhereClauseParam ("BindNationalId", nationalId);

    perverse . executeQuery();

    If (perv ! = null) {}

    Line = pervert . first();

    perverse . clearViewCriterias();

    next row;

    }

    perverse . clearViewCriterias();

    Returns a null value.

    }

    Need your contributions on how I can read line Details of the master.

    The old man, but you can use the same technique, it is still valid:

    http://sqltech.CL/doc/oas10gR31/Web.1013/b25947/bcquerying010.htm

    Just search:

    Example 5-15 per program to access the detail rows using the accessor to View link

  • Select the lines with the maximum value for a date where another column is different from 0

    Hello

    I need to write a query on a table (called DEPRECIATION) that returns only the rows whose date maximum (PERENDDAT_0 column) for a specific record (identified by AASREF_0), and where the other column in the table called DPRBAS_0 is different from 0.

    If DPRBAS_0 is equal to 0 in all the lines of a specific record, then return the line with date maximum (PERENDDAT_0 column).

    To be clearer, I give the following example:

    Suppose we have the following data in the table of DEPRECIATION:

    AASREF_0 PERENDDAT_0 DPRBAS_0
    I2011001074331/12/20150
    I2011001074331/12/20140
    I2011001074331/12/20130
    I2011001085612/31/20160
    I2011001085631/12/20150
    I2011001085631/12/2014332
    I2014001223812/31/2016445
    I2014001223831/12/2015445
    I2014001223831/12/20140

    The query must return only the following lines:

    AASREF_0 PERENDDAT_0 DPRBAS_0
    I2011001074331/12/20150
    I2011001085631/12/2014332
    I2014001223812/31/2016445

    Thanks a lot for your help!

    This message was edited by: egk

    Hello Egk,

    The following query works for you.

    SELECT AASREF_0, PERENDDAT_0, DPRBAS_0

    FROM (SELECT AASREF_0,

    PERENDDAT_0,

    DPRBAS_0,

    ROW_NUMBER)

    DURING)

    AASREF_0 PARTITION

    ORDER BY

    CASE WHEN DPRBAS_0 <> 0 THEN 1 OTHER 0 END DESC,.

    PERENDDAT_0 DESC)

    RN

    DEPRECIATIONS)

    WHERE rn = 1

  • Error: The lines of data with unmapped dimensions exist for period "1 April 2014".

    Expert Hi

    The below error when I click on the button Execute in order to load data in the area of data loading in 11.1.2.3 workspace. Actually, I already put in the tabs global mapping (add records of 12 months), mapping of Application (add records of 12 months) and map sources (add a month "1 April 2014' as the name of period with Type = Explicit mapping") in the service of the period mapping. What else should I check to fix this? Thank you.

    2014-04-29 06:10:35, 624 [AIF] INFO: beginning of the process FDMEE, process ID: 56
    2014-04-29 06:10:35, 625 [AIF] INFO: recording of the FDMEE level: 4
    2014-04-29 06:10:35, 625 [AIF] INFO: FDMEE log file: null\outbox\logs\AAES_56.log
    2014-04-29 06:10:35, 625 [AIF] INFO: user: admin
    2014-04-29 06:10:35, 625 [AIF] INFO: place: AAESLocation (Partitionkey:2)
    2014-04-29 06:10:35, 626 [AIF] INFO: period name: Apr 1, 2014 (period key: 4/1/14-12:00 AM)
    2014-04-29 06:10:35, 627 [AIF] INFO: category name: AAESGCM (category key: 2)
    2014-04-29 06:10:35, 627 [AIF] INFO: name rule: AAESDLR (rule ID:7)
    2014-04-29 06:10:37, 504 [AIF] INFO: Jython Version: 2.5.1 (Release_2_5_1:6813, September 26 2009, 13:47:54)
    [JRockit (R) Oracle (Oracle Corporation)]
    2014-04-29 06:10:37, 504 [AIF] INFO: Java platform: java1.6.0_37
    2014-04-29 06:10:39, 364 INFO [AIF]: - START IMPORT STEP -
    2014-04-29 06:10:45, 727 INFO [AIF]:
    Import of Source data for the period "1 April 2014".
    2014-04-29 06:10:45, 742 INFO [AIF]:
    Import data from Source for the book "ABC_LEDGER".
    2014-04-29 06:10:45, 765 INFO [AIF]: monetary data lines imported from Source: 12
    2014-04-29 06:10:45, 783 [AIF] INFO: Total of lines of data from the Source: 12
    2014-04-29 06:10:46, 270 INFO [AIF]:
    Map data for period "1 April 2014".
    2014-04-29 06:10:46, 277 [AIF] INFO:
    Treatment of the column mappings 'ACCOUNT '.
    2014-04-29 06:10:46, 280 INFO [AIF]: data rows updated EXPLICIT mapping rule: 12
    2014-04-29 06:10:46, 280 INFO [AIF]:
    Treatment of the "ENTITY" column mappings
    2014-04-29 06:10:46, 281 [AIF] INFO: rows of data updates to EXPLICIT mapping rule: 12
    2014-04-29 06:10:46, 281 [AIF] INFO:
    Treatment of the column mappings "UD1.
    2014-04-29 06:10:46, 282 [AIF] INFO: rows of data updates to EXPLICIT mapping rule: 12
    2014-04-29 06:10:46, 282 [AIF] INFO:
    Treatment of the column mappings "node2".
    2014-04-29 06:10:46, 283 [AIF] INFO: rows of data updates to EXPLICIT mapping rule: 12
    2014-04-29 06:10:46, 312 [AIF] INFO:
    Scene for period data "1 April 2014".
    2014-04-29 06:10:46, 315 [AIF] INFO: number of deleted lines of TDATAMAPSEG: 171
    2014-04-29 06:10:46, 321 [AIF] INFO: number of lines inserted in TDATAMAPSEG: 171
    2014-04-29 06:10:46, INFO 324 [AIF]: number of deleted lines of TDATAMAP_T: 171
    2014-04-29 06:10:46, 325 [AIF] INFO: number of deleted lines of TDATASEG: 12
    2014-04-29 06:10:46, 331 [AIF] INFO: number of lines inserted in TDATASEG: 12
    2014-04-29 06:10:46, 332 [AIF] INFO: number of deleted lines of TDATASEG_T: 12
    2014-04-29 06:10:46, 366 [AIF] INFO: - END IMPORT STEP -
    2014-04-29 06:10:46, 408 [AIF] INFO: - START NEXT STEP -
    2014-04-29 06:10:46, 462 [AIF] INFO:
    Validate the data maps for the period "1 April 2014".
    2014-04-29 06:10:46, 473 INFO [AIF]: data rows marked as invalid: 12
    2014-04-29 06:10:46, ERROR 473 [AIF]: error: the lines of data with unmapped dimensions exist for period "1 April 2014".
    2014-04-29 06:10:46, 476 [AIF] INFO: Total lines of data available for export to the target: 0
    2014-04-29 06:10:46, 478 FATAL [AIF]: error in CommMap.validateData
    Traceback (most recent call changed):
    Folder "< string >", line 2348 in validateData
    RuntimeError: [u "error: the lines of data with unmapped dimensions exist for period" 1 April 2014' ""]

    2014-04-29 06:10:46, 551 FATAL [AIF]: COMM error validating data
    2014-04-29 06:10:46, 556 INFO [AIF]: end process FDMEE, process ID: 56

    Thanks to all you guys

    This problem is solved after I maped all dimensions in order of loading the data. I traced only Entity, account, Custom1 and Custom2 at first because there is no source map Custom3, Custom4 and PIC. After doing the mapping for Custom3, Custom4 and PKI, the problem is resolved. This is why all dimensions should be mapped here.

  • Display a salary Total of the Organization as well as the details of the employee in a line

    Hi all

    Salary Total of display of the Organization as well as the details of the employee in an example line below gives me all the lines of "total_sal" 29025

    Select a.empno, a.ename, a.deptno, a.sal, b.total_sal

    of the emp.

    (select sum (sal) total_sal from emp b) b

    Thank you

    Display a salary Total of the Organization as well as the details of the employee in a ro

    Display a salary Total of the Organization as well as the details of the employee in a line

    Your condition is not clear. Can you show your expected results. Will this make?

    SQL > select empno
    2, decode (grp_id, 0, ename, 2, 'Total Department-' | to_char (deptno), 3, "Grand Total") ename
    3, sal
    4 of)
    5. Select empno
    6, ename
    7, deptno
    8, sum (sal) sal
    9                 , (
    10 grouping_id (deptno)
    11 + grouping_id (empno)
    12 + grouping_id (ename)
    (13) grp_id
    14 of PEM
    Group 15
    16 per cumulative (deptno, ename, empno)
    17         )
    18 where grp_id (0, 2, 3);

    EMPNO, ENAME SAL

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

    7782 CLARK 12450

    7839 KING 5000

    Total Department - 10 17450

    7369 SMITH 12975

    7566 JONES 12975

    7788 SCOTT 13000

    7876 ADAMS 11101

    Total Department - 20 50051

    7499 ALLEN 11600

    7521 WARD 11250

    7654 MARTIN 11250

    7698 BLAKE 12850

    7844 TURNER 11500

    Total Department - 30 58450

    Grand Total 125951

    15 selected lines.

Maybe you are looking for

  • iPhone glitch screen after updating to iOS 10 and 6

    Since I upgraded my iPhone 6 with iOS 10.0.2 my screen made my fuzzy words and if I have my phone unlocked for more than 5 minutes it glitches upwards and should reset every time. Almost like static on a TV, go right to digital lines and my screen wi

  • How can I sync my iPhone apps (or other content) with iTunes?

    Specifically I want to talk about apps, because I have 300 + apps on my phone and only 11 appear in iTunes. Most of them are apps before I got my new iMac, and I do not synchronize them with the macbook I had before. But I'd like to see my apps on th

  • Windows Media Player to iTunes problems.

    I downloaded iTunes last week and was able to download about 1/2 of my music library from Windows Media Player to iTunes.  When I try to download albums or songs I get the following message: "one or more of the songs you add to iTunes, including (son

  • The SDK Setup error

    someone else did a mistake when you install the SDK.  Log gives me this output.

  • AutoStart w/o JDE (Eclipse)

    I use the plugin Eclipse and all the docs seem to point to examples of JDE autostart configuration. Can you tell me what the JDE is hilarious on the autostart options so I can do the Eclipse? Thank you