Options

Stock Label Print by Item Quantity

chrisstitchchrisstitch Member Posts: 2
edited 2015-01-04 in NAV Three Tier
I've created a stock label in NAV2013 as a report, printing the 'Item Code','Item Name', 'Description' etc. using a list.
This produces one label per page as required but only produces one label per SKU.
I'm trying to get it to print the quantity in stock but haven't got an idea of where to start even though I've been reading up on this.
I've got it to filter to show only the SKU's in stock using Inventory_Item but there seems to be a lack of info to do with quantity's of print from within NAV.
I think its either printloop or copyloop but i'm not even sure about that. Can anyone point me in the right direction please?

Comments

  • Options
    denpardenpar Member Posts: 80
    Add two data items in your report....

    Item
    <Indent>Integer


    DataItem Item -> DataItemTableView : SORTING(No.) WHERE(Inventory=FILTER(<>0))

    DataItem Integer -> OnPreDataItem

    item.calcfields(inventory);
    integer.setrange(Number,1,item.inventory);
    If your work becomes a passion...
    www.pardaan.com
Sign In or Register to comment.