PO_DEMAND_VW2(SQL View) |
Index Back |
---|---|
Demand summed by distribution |
select a.process_instance, a.business_unit, a.po_stg_type, a.po_stg_id, a.line_nbr, a.sched_nbr, a.distrib_line_num, sum(a.qty_demand), sum(a.qty_demand_std), sum(a.qty_po), sum(a.qty_po_std), sum(a.qty_requested) from PS_PO_DEMAND_WRK1 a group by a.process_instance, a.business_unit, a.po_stg_type, a.po_stg_id, a.line_nbr, a.sched_nbr, a.distrib_line_num |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | Number(10,0) | DECIMAL(10) NOT NULL | Process Instance | |
2 | Character(5) | VARCHAR2(5) NOT NULL | Business Unit | |
3 | Character(1) | VARCHAR2(1) NOT NULL |
Used in conjunction with PO_STG_ID to make a unique key on the stage tables.
O=Other R=Requisition |
|
4 | Character(10) | VARCHAR2(10) NOT NULL | Uniqye key to the PO Staging table | |
5 | Number(5,0) | INTEGER NOT NULL | Line Number: 11/24/08 - Added TARGET label [PC product] | |
6 | Number(3,0) | SMALLINT NOT NULL | Schedule Number | |
7 | DISTRIB_LINE_NUM | Number(5,0) | INTEGER NOT NULL | Distribution Line |
8 | QTY_DEMAND | Number(16,4) | DECIMAL(15,4) NOT NULL | Qty Sourced from Demand |
9 | QTY_DEMAND_STD | Number(16,4) | DECIMAL(15,4) NOT NULL | Std UOM Qty Srcd from Demand |
10 | QTY_PO | Number(16,4) | DECIMAL(15,4) NOT NULL | Purchase Order Quantity |
11 | QTY_PO_STD | Number(16,4) | DECIMAL(15,4) NOT NULL | PO Quantity Standard |
12 | QTY_REQUESTED | Signed Number(17,4) | DECIMAL(15,4) NOT NULL | Qty Requested |