Options

No.Of Labels

shivaprasad263shivaprasad263 Member Posts: 70
Dear Experts,

In a report There will be one section with Item label. Now can I pass the Item Quantity to Specified Printer so that I can take the print out of label based on the quantity.

Thanks & Regards,
Prasad

Comments

  • Options
    diptish.naskardiptish.naskar Member Posts: 360
    Not able to get you properly, can you elaborate the problem a bit, you can route a specific report to a specific printer that holds true...but can you elaborate the problem.
    Diptish Naskar
    For any queries you can also visit my blog site: http://msnavarena.blogspot.com/
  • Options
    WaldoWaldo Member Posts: 3,412
    Dear Experts,

    In a report There will be one section with Item label. Now can I pass the Item Quantity to Specified Printer so that I can take the print out of label based on the quantity.

    Thanks & Regards,
    Prasad

    Are you trying to print a label based on its inventory? You can skip a label in a report with CurrReport.SKIP in the OnAfterGetRecord trigger of a dataitem. So code might be:
    Item.CALCFIELDS(Inventory);
    IF Item.Inventory <= decMinimumQuantity THEN
      CurrReport.SKIP;
    

    Either, do you want to print a label based on a quantity in the Sales Line table, you could do it quite the same way, but without the calcfields off course... .

    Eric Wauters
    MVP - Microsoft Dynamics NAV
    My blog
Sign In or Register to comment.