Difference between revisions of "Production.ProductCostHistory (table)"
Line 96: | Line 96: | ||
| not null | | not null | ||
| | | | ||
− | | Product identification number. Foreign key to Product. | + | | Product identification number. Foreign key to Product.ProductID<br />PK_ProductCostHistory_ProductID_StartDate |
|- valign="top" | |- valign="top" | ||
| StartDate | | StartDate | ||
Line 102: | Line 102: | ||
| not null | | not null | ||
| | | | ||
− | | Product cost start date.PK_ProductCostHistory_ProductID_StartDate | + | | Product cost start date.<br />PK_ProductCostHistory_ProductID_StartDate |
|- valign="top" | |- valign="top" | ||
| EndDate | | EndDate | ||
Line 108: | Line 108: | ||
| null | | null | ||
| | | | ||
− | | Product cost end date. | + | | Product cost end date.<br /> |
|- valign="top" | |- valign="top" | ||
| StandardCost | | StandardCost | ||
Line 114: | Line 114: | ||
| not null | | not null | ||
| | | | ||
− | | Standard cost of the product. | + | | Standard cost of the product.<br /> |
|- valign="top" | |- valign="top" | ||
| ModifiedDate | | ModifiedDate | ||
Line 120: | Line 120: | ||
| not null | | not null | ||
| (GETDATE()) | | (GETDATE()) | ||
− | | Date and time the record was last updated. | + | | Date and time the record was last updated.<br /> |
|} | |} | ||
Revision as of 00:10, 27 November 2009
wikibot
Table | Production.ProductCostHistory |
Column | Data Type | Nullable | Default | PK | Index |
ProductID | int | not null | PK_ProductCostHistory_ProductID_StartDate | ||
StartDate | datetime | not null | PK_ProductCostHistory_ProductID_StartDate | ||
EndDate | datetime | null | |||
StandardCost | money | not null | |||
ModifiedDate | datetime | not null | (getdate()) |
Relation | Column | Referenced Column |
Production.Product | ProductID | ProductID |
automatically generated
Table | Production.ProductCostHistory |
Description | Changes in the cost of a product over time. |
Column | Data Type | Nullable | Default | Description / PK / Index |
ProductID | int | not null | Product identification number. Foreign key to Product.ProductID PK_ProductCostHistory_ProductID_StartDate | |
StartDate | datetime | not null | Product cost start date. PK_ProductCostHistory_ProductID_StartDate | |
EndDate | datetime | null | Product cost end date. | |
StandardCost | money | not null | Standard cost of the product. | |
ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
Relation | Column | Referenced Column |
Production.Product | ProductID | ProductID |
Referencing Object | Object Type | Reference Type |
dbo.ufnGetProductStandardCost | Function | Select |