Home Page link  

stock on hand sheet

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here 

get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
stock on hand sheet Philip Gass 04-02-2007
|--> Re: stock on hand sheet Glenn Adams [MVP - Retail...04-02-2007
Posted by Philip Gass on April 2, 2007, 5:30 pm
Please log in for more thread options
I want to make a stock on hand sheet formatted in excel for a range of
product, i know i can use the SQL database as a data source and pull
information into excel, but can anybody suggest how i could do this in more
detail?

I want to write my description in excel and then put the ilc and have a
colum with rms price, stock on hand and stock on order in colums, and then
this would update live from the sql database and i could print it reqularly
for staff use

is this possible?> and is there any sort of step by step anyone can
reccomend?



Posted by Glenn Adams [MVP - Retail Mgmt on April 2, 2007, 6:03 pm
Please log in for more thread options
Will the RMS Quantity List Report not meet your needs? A couple of
those columns may be missing, but check Show/Hide Columns as most should
be available. Once you have the report showing the columns you want,
just Export it to a comma separated file - you will be able to open it
in Excel if that's what you want. If the Quantity List doesn't have all
of the columns you need, log into Customer Source and check out the
Reports Library.

Glenn Adams
Tiber Creek Consulting
http://www.tibercreek.com
glenn@tibercreek.com
----------------------------------------------
Please DO NOT respond to me directly but post all responses here in the
newsgroup so that all can share the information.


Philip Gass wrote:
> I want to make a stock on hand sheet formatted in excel for a range of
> product, i know i can use the SQL database as a data source and pull
> information into excel, but can anybody suggest how i could do this in more
> detail?
>
> I want to write my description in excel and then put the ilc and have a
> colum with rms price, stock on hand and stock on order in colums, and then
> this would update live from the sql database and i could print it reqularly
> for staff use
>
> is this possible?> and is there any sort of step by step anyone can
> reccomend?
>
>

Posted by Akber Alwani on April 3, 2007, 1:16 am
Please log in for more thread options
HI Philip, you have already one report called Physical Inventory Report
(Detailed) use it and do whatever customization you wanted to do. it is an
active report with .grp extension, Remember whatever you wana do you can in
this report so go ahead and no worries at all.


"Philip Gass" wrote:

> I want to make a stock on hand sheet formatted in excel for a range of
> product, i know i can use the SQL database as a data source and pull
> information into excel, but can anybody suggest how i could do this in more
> detail?
>
> I want to write my description in excel and then put the ilc and have a
> colum with rms price, stock on hand and stock on order in colums, and then
> this would update live from the sql database and i could print it reqularly
> for staff use
>
> is this possible?> and is there any sort of step by step anyone can
> reccomend?
>
>
>

Posted by Philip Gass on April 3, 2007, 4:34 am
Please log in for more thread options
thanks guys - i will give these reports another bash..

I fancied the idea of formatting it nicely in excel and just having the
fields update as required, but i suppose its going to be a lot more work
than its proably worth!

Thanks!

> HI Philip, you have already one report called Physical Inventory Report
> (Detailed) use it and do whatever customization you wanted to do. it is an
> active report with .grp extension, Remember whatever you wana do you can
> in
> this report so go ahead and no worries at all.
>
>
> "Philip Gass" wrote:
>
>> I want to make a stock on hand sheet formatted in excel for a range of
>> product, i know i can use the SQL database as a data source and pull
>> information into excel, but can anybody suggest how i could do this in
>> more
>> detail?
>>
>> I want to write my description in excel and then put the ilc and have a
>> colum with rms price, stock on hand and stock on order in colums, and
>> then
>> this would update live from the sql database and i could print it
>> reqularly
>> for staff use
>>
>> is this possible?> and is there any sort of step by step anyone can
>> reccomend?
>>
>>
>>



Posted by Philip Gass on April 3, 2007, 6:15 am
Please log in for more thread options
My Quantity Report looks like this - i cannot find a couple of the columns i
need, can somebody help with how i should customise this? I have tried to
the best of my ability but it just results in errors!

I need the 'QTY on Order' 'Last ordered' 'Last Sold' and'Last Received'
columns to be on, any pointers would be hugely helpfull!








//--- Report Summary --- //

Begin ReportSummary
ReportType = reporttypeItems
ReportTitle = "Item Quantity List"
PageOrientation = pageorientationLandscape
OutLineMode = True
Groups = 1
GroupDescription = ""
DisplayLogo = True
LogoFileName = "MyLogo.bmp"
ProcedureCall = ""
PreQuery1 = "IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS
WHERE TABLE_NAME = 'View_DRS_Item_Sales') DROP VIEW View_DRS_Item_Sales"
PreQuery2 = <BEGIN>

CREATE View View_DRS_Item_Sales AS
SELECT Item.ID AS ItemID,
(SELECT SUM(TransactionEntry.Quantity) FROM TransactionEntry INNER JOIN
[Transaction]
WITH (NOLOCK) ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
LEFT JOIN Item A WITH (NOLOCK) ON TransactionEntry.ItemID = A.ID
WHERE [Transaction].Time > '1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR) AND
A.ID=Item.ID) AS YTD_QTY,
(SELECT SUM(TransactionEntry.Price * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE [Transaction].Time > '1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR) AND
A.ID=Item.ID) AS YTD_Sales,
(SELECT SUM(TransactionEntry.Cost * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE [Transaction].Time > '1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR) AND
A.ID=Item.ID) AS YTD_Cost,
(SELECT SUM(TransactionEntry.Quantity) FROM TransactionEntry INNER JOIN
[Transaction]
WITH (NOLOCK) ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
LEFT JOIN Item A WITH (NOLOCK) ON TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN CAST(MONTH(GETDATE()) AS VARCHAR) +
'/1/' + CAST(YEAR(GETDATE())
AS VARCHAR) AND GETDATE()) AND A.ID=Item.ID) AS MTD_QTY,
(SELECT SUM(TransactionEntry.Price * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN CAST(MONTH(GETDATE()) AS VARCHAR) +
'/1/' + CAST(YEAR(GETDATE())
AS VARCHAR) AND GETDATE()) AND A.ID=Item.ID) AS MTD_Sales,
(SELECT SUM(TransactionEntry.Cost * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN CAST(MONTH(GETDATE()) AS VARCHAR) +
'/1/' + CAST(YEAR(GETDATE())
AS VARCHAR) AND GETDATE()) AND A.ID=Item.ID) AS MTD_Cost,
(SELECT SUM(TransactionEntry.Quantity) FROM TransactionEntry INNER JOIN
[Transaction]
WITH (NOLOCK) ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
LEFT JOIN Item A WITH (NOLOCK) ON TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(MONTH,-1,CAST(MONTH(GETDATE())
as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR)) AND
DATEADD(MONTH,0,CAST(MONTH(GETDATE()) as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID=Item.ID) AS LM_QTY,
(SELECT SUM(TransactionEntry.Price * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(MONTH,-1,CAST(MONTH(GETDATE())
as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR)) AND
DATEADD(MONTH,0,CAST(MONTH(GETDATE()) as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID=Item.ID) AS LM_Sales,
(SELECT SUM(TransactionEntry.Cost * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(MONTH,-1,CAST(MONTH(GETDATE())
as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR)) AND
DATEADD(MONTH,0,CAST(MONTH(GETDATE()) as VARCHAR) + '/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID=Item.ID) AS LM_Cost,
(SELECT SUM(TransactionEntry.Quantity) FROM TransactionEntry INNER JOIN
[Transaction]
WITH (NOLOCK) ON TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber
LEFT JOIN Item A WITH (NOLOCK) ON TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(YEAR,-1,'1/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))
AND DATEADD(YEAR,0,'1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID =
Item.ID) AS LY_QTY,
(SELECT SUM(TransactionEntry.Price * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(YEAR,-1,'1/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))
AND DATEADD(YEAR,0,'1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID =
Item.ID) AS LY_Sales,
(SELECT SUM(TransactionEntry.Cost * TransactionEntry.Quantity) FROM
TransactionEntry
INNER JOIN [Transaction] WITH (NOLOCK) ON
TransactionEntry.TransactionNumber =
[Transaction].TransactionNumber LEFT JOIN Item A WITH (NOLOCK) ON
TransactionEntry.ItemID = A.ID
WHERE ([Transaction].Time BETWEEN DATEADD(YEAR,-1,'1/1/' +
CAST(YEAR(GETDATE()) AS VARCHAR))
AND DATEADD(YEAR,0,'1/1/' + CAST(YEAR(GETDATE()) AS VARCHAR))) AND A.ID =
Item.ID) AS LY_Cost

FROM Item
<END>

TablesQueried = "FROM Item WITH (NOLOCK) LEFT JOIN View_DRS_Item_Sales
WITH (NOLOCK) ON Item.ID = View_DRS_Item_Sales.ItemID LEFT JOIN Department
WITH (NOLOCK) ON Item.DepartmentID = Department.ID LEFT JOIN Category WITH
(NOLOCK) ON Item.CategoryID = Category.ID LEFT JOIN Supplier WITH(NOLOCK) ON
Item.SupplierID = Supplier.ID LEFT JOIN SupplierList ON
SupplierList.SupplierID = Supplier.ID AND SupplierList.ItemID = Item.ID"
SelCriteria = ""
GroupBy = ""
SortOrder = ""
End ReportSummary


//--- Title Rows ---//

Begin TitleRow
Text = "<Store Name>"
Font = "Arial"
FontBold = True
FontSize = 16
Color = "Blue"
End TitleRow

Begin TitleRow
Text = "<Report Title>"
Font = "Arial"
FontBold = True
FontSize = 12
Color = "Black"
End TitleRow

Begin TitleRow
Text = "Generated On <Report Date>"
Font = "Arial"
FontBold = True
FontSize = 10
Color = "Black"
End TitleRow

Begin TitleRow
Text = "© 2004-2005 Digital Retail Solutions Inc. All rights reserved."
Font = "Arial"
FontBold = False
FontSize = 6
Color = "Black"
End TitleRow

//--- Filters ---//

Begin Filter
FieldName = "Item.Inactive"
FilterOp = reportfilteropEqual
FilterLoLim = "0"
FilterHilim = "0"
End Filter


//--- Columns ---//

Begin Column
FieldName = "Department.Name"
DrillDownFieldName = "Department.Name"
DrillDownReportName = ""
Title = "Department"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1600
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Category.Name"
DrillDownFieldName = "Category.Name"
DrillDownReportName = ""
Title = "Category"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1300
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.ItemLookupCode"
DrillDownFieldName = "Item.ItemLookupCode"
DrillDownReportName = ""
Title = "Item Lookup Code"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1665
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.Description"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Description"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1830
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.SubDescription1"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "!CaptionItemSubDescription1"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 900
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.SubDescription2"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "!CaptionItemSubDescription2"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1200
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.SubDescription3"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "!CaptionItemSubDescription3"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1200
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.WebItem"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Web Item"
VBDataType = vbBoolean
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1000
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.PictureName"
DrillDownFieldName = "Item.PictureName"
DrillDownReportName = ""
Title = "Picture"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1500
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Item.BinLocation"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Bin Location"
VBDataType = vbString
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1140
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.Quantity"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "On-Hand"
VBDataType = vbDouble
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 900
GroupMethod = groupmethodSum
ColFormat = "#.##"
End Column

Begin Column
FieldName = "Item.QuantityCommitted"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Committed"
VBDataType = vbDouble
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1050
GroupMethod = groupmethodSum
ColFormat = "#.##"
End Column

Begin Column
FieldName = "Available"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Available"
VBDataType = vbDouble
Formula = "Item.Quantity - Item.QuantityCommitted"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 900
GroupMethod = groupmethodSum
ColFormat = "#.##"
End Column

Begin Column
FieldName = "Item.ReorderPoint"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Reorder Pt."
VBDataType = vbDouble
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1065
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Item.RestockLevel"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Restock Lvl."
VBDataType = vbDouble
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1215
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "QuantityToOrder"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Qty to Order"
VBDataType = vbDouble
Formula = "CASE WHEN Item.Quantity - Item.QuantityCommitted <=
Item.ReorderPoint THEN Item.RestockLevel - Item.Quantity +
Item.QuantityCommitted ELSE 0 END"
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1215
GroupMethod = groupmethodSum
ColFormat = "#.##"
End Column

Begin Column
FieldName = "Item.MSRP"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "MSRP"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 945
GroupMethod = groupmethodAverage
ColFormat = ""
End Column

Begin Column
FieldName = "SupplierList.MasterPackQuantity"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "MPQ"
VBDataType = vbLong
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 700
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "QuantityToOrderMPQ"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Qty to Order (MPQ)"
VBDataType = vbDouble
Formula = "CASE WHEN Item.Quantity - Item.QuantityCommitted <=
Item.ReorderPoint AND SupplierList.MasterPackQuantity > 0 THEN CEILING
((Item.RestockLevel - Item.Quantity + Item.QuantityCommitted) /
SupplierList.MasterPackQuantity) * SupplierList.MasterPackQuantity WHEN
Item.Quantity - Item.QuantityCommitted <= Item.ReorderPoint THEN
Item.RestockLevel - Item.Quantity + Item.QuantityCommitted ELSE 0 END"
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1215
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Supplier.SupplierName"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Supplier"
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1350
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "SupplierList.ReorderNumber"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Reorder No."
VBDataType = vbString
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1300
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignLeftCenter
End Column

Begin Column
FieldName = "Item.Cost"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Cost"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 525
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.Price"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Price"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 555
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.PriceA"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Price A"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 720
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.PriceB"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Price B"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 660
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.PriceC"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Price C"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 720
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.PriceLowerBound"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Lo Bound"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 915
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.PriceUpperBound"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Hi Bound"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 855
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.SalePrice"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Sale Price"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 945
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "Item.SaleStartDate"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Sale Starts"
VBDataType = vbDate
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1020
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Item.SaleEndDate"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Sale Ends"
VBDataType = vbDate
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 930
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Item.LastSold"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Last Sold"
VBDataType = vbDate
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 900
GroupMethod = groupmethodNone
ColFormat = ""
End Column

Begin Column
FieldName = "Item.Inactive"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "Inactive"
VBDataType = vbBoolean
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1057
GroupMethod = groupmethodNone
ColFormat = ""
ColAlignment = flexAlignCenterCenter
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.YTD_QTY"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "YTD Qty"
VBDataType = vbLong
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 750
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.YTD_Sales"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "YTD Sales"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1100
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.LY_QTY"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "LY Qty"
VBDataType = vbLong
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 750
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.LY_Sales"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "LY Sales"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1100
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.MTD_QTY"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "MTD Qty"
VBDataType = vbLong
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 800
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.MTD_Sales"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "MTD Sales"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1100
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.LM_QTY"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "LM Qty"
VBDataType = vbLong
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 900
GroupMethod = groupmethodSum
ColFormat = ""
End Column

Begin Column
FieldName = "View_DRS_Item_Sales.LM_Sales"
DrillDownFieldName = ""
DrillDownReportName = ""
StoreIDFieldName = ""
Title = "LM Sales"
VBDataType = vbCurrency
Formula = ""
ColHidden = True
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1150
GroupMethod = groupmethodSum
ColFormat = ""
End Column



Similar ThreadsPosted
Stock On Hand Report at HQ August 15, 2005, 9:46 pm
Committed Items still show as stock on hand... October 3, 2005, 6:31 pm
Store database on hand does not match Headquarters on hand November 17, 2009, 9:30 am
stock count/ stock adjustment June 30, 2008, 2:37 pm
Bug on work sheet 250 December 28, 2006, 5:03 pm
Sheet Labels October 16, 2008, 8:38 am
HQ Client Sync Error on 250/260 Sheet April 20, 2007, 12:20 pm
How can i do a printed price sheet hard copy January 14, 2006, 4:01 am
physical count sheet shows wrong departments and catagories August 7, 2007, 4:08 pm
using stock June 6, 2005, 9:00 am

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap