Generate a report which shows gaps in Purchase Invoice No.

kvpveeraprasad
Member Posts: 7
How toGenerate a report which shows gaps in Purchase Invoice No. if any( if any No. is missing)?
0
Comments
-
What's the question?
something like:
IF yourfield = '' THEN
//do what you want
ELSE
CurrReport.SKIPUfuk Asci
Pargesoft0 -
Try this!
Purch. Inv. Header - OnPreDataItem()
Purch. Inv. Header - OnAfterGetRecord()
recPurchInvHeader2.SETVIEW("Purch. Inv. Header".GETVIEW);
recPurchInvHeader2.GET("No.");
IF recPurchInvHeader2.NEXT() <> 0 THEN BEGIN
IF EVALUATE(iStartNo,DELCHR("Purch. Inv. Header"."No.",'=',DELCHR("Purch. Inv. Header"."No.",'=','0123456789'))) AND
EVALUATE(iStopNo ,DELCHR(recPurchInvHeader2."No.", '=',DELCHR(recPurchInvHeader2."No.", '=','0123456789'))) AND
(iStopNo - iStartNo = 1) THEN
CurrReport.SKIP();
END
ELSE
CurrReport.SKIP();
Integer - OnPreDataItem()
SETRANGE(Number,iStartNo,iStopNo);
Integer - OnAfterGetRecord()
cPrefix := DELCHR("Purch. Inv. Header"."No.",'=','0123456789');0 -
NAV already has a report for that (for the sales): Have a look at report 124.Ufuk Asci
Pargesoft0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions