cancel
Showing results for 
Search instead for 
Did you mean: 

Opening and closing Inventory report in CR

Former Member
0 Kudos

Hi Experts,

I want report like as below

ItemCode     ItemDescription     OpeningStk      Reciept       Issue     ClosingStk

Selection Criteria

OpeningStk Date :  01 .01. 2013

ClosingStk Date : 31.12.2013

My working:

OINM and OITM table inner join.

select expert record for the closing stock.

But for opening stock , how to achieve it ?

Is it possible in single report to get my requirement?

Thanks in advance,

Dwarak

Accepted Solutions (1)

Accepted Solutions (1)

former_member226669
Participant
0 Kudos

Hi Dwarkanath,

Do you want the records between the opening stalk and closing stalk?

- Nrupal

Former Member
0 Kudos

Hi,

Yes. i want the Opening stock, Reciept, Issue and Closing stock as per the date.

Item CodeDescriptionDateInqtyOutqtysum of Opening
  Stock
sum of recieptsum of recieptClosing Stock
I0001Item A10-10-2013100
I0001Item A11-11-201350
I0001Item A12-12-2013010
I0001Item A03-01-201420
I0001Item A10-01-201401
I0001Item A20-02-2014150
I0001Item A24-03-2014012
517139

how to achieve this ?

thanks in advance,

Dwarak

Former Member
0 Kudos

Hi Experts,

For the above scenario,  i got an Idea to fix this,

I want to calculate the opening date of the stock based on the Closing date.

condition : if am giving the closing date as 31.03.2014 in EXPERT SELECTION, a formula should calculate as 01.04.2014 in openingmonth  fied. so, based on this i can achieve to calculate the opening stock, reciept qnty and issued qnty through formulas.

hence, i want the formula to calcuate openingmonth based on the closing date ?

Thanks in advance,

Regards,

Dwarak

Former Member
0 Kudos

hi,

i got fixed as below, if possible any one share the formula to fetch month instead of number of days.

openingDate = {?closingdate) - 365

Dwarak

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

Try This ,

1.Parameter Should be {Command.refdate}  <= maximum({?Daterange})

2.Open Balance

if   {Command.refdate}<minimum({?Daterange}) then (inqty-Out) else 0

3.Take summary of open balance formula in Group .

-Rajesh N