Viewing 15 posts - 1,246 through 1,260 (of 1,939 total)
Eric M Russell (4/5/2016)
Rod at work (4/5/2016)
April 5, 2016 at 11:47 am
I got caught up reading people's replies to this thread, when I realized that this thread indirectly points out something I feel most of us haven't experienced. That is,...
April 5, 2016 at 8:46 am
tindog (4/5/2016)
Rod at work (4/4/2016)
Lynn Pettis (4/4/2016)
April 5, 2016 at 8:36 am
Lynn Pettis (4/4/2016)
April 4, 2016 at 4:49 pm
At this point its just a plain, vanilla let the user enter it by hand on the SSRS report interface. I've restricted it to an integer data type and that...
April 4, 2016 at 1:40 pm
Would I move for a job? Yes, absolutely! But not just any job, it depends upon the job, company, location, compensation, etc.
April 4, 2016 at 8:27 am
Eric M Russell (3/28/2016)
March 29, 2016 at 8:48 am
Oh man, have you hit upon a topic that really bugs me. At my new job there's a software project that I'm help maintain that we purchased from an out...
March 28, 2016 at 8:43 am
I found the problem. I was calculating one of the values wrong.
March 24, 2016 at 11:30 am
Jack Corbett (3/23/2016)
Can you verify that the query returns non-zero values?Are there any expressions on the dataset?
Yes, I've verified that the query returns non-zero values by running the...
March 24, 2016 at 7:42 am
Thank you Sachin, that worked. I've changed the SELECT to look like this:
SELECT fcnItems.DrugOrSupply, fcnItems.InventoryActionID,
fcnItems.ItemPackageID, fcnItems.OldItemNum,
fcnItems.ItemDescr, vw.InventoryIn,
vw.PharmacyOut,
(QtyOnHand/(@NumDaysBetwDates/@NumDaysToStock)+1) StockingLevel,
((@NumDaysBetwDates/@NumDaysToStock)/2+1) ReorderLevel,
vw.QtyOnHand,
IIf(QtyOnHand<((@NumDaysBetwDates/@NumDaysToStock)/2+1),(QtyOnHand/(@NumDaysBetwDates/@NumDaysToStock)+1)-QtyOnHand,0) NumToOrder
FROM dbo.fnItemsIssuedToLocBetwDatesNeedItemType(@DrugOrSupply, @BeginDate, @EndDate) fcnItems
INNER JOIN vwItemQtysOnHandAllItems_SQLViews vw
ON fcnItems.ItemPackageID...
March 22, 2016 at 11:20 am
John Mitchell-245523 (3/22/2016)
What is the exact error message, please? Could the mystery columns be in the view definition... I assume that vwItemQtysOnHandAllItems_SQLViews is a view?John
Here's the exact error messages:
Msg...
March 22, 2016 at 11:12 am
No, I think that page says that the 32-bit version is for both 32 and 64 bit SSRS 2012.
March 18, 2016 at 8:17 am
Viewing 15 posts - 1,246 through 1,260 (of 1,939 total)