Hello All,
am trying to bring Job Number Field in Posted Sales Invoice Print out. But values is not coming over the print out.
pls let me know what is the issue
Can you please show me your Report Selection - Sales page for Sales invoice report?
Hi,
If you check the report ID 1306 "Job No." already defined with the column, I did not get why you are trying to add it again.
Secondly this report belongs to Posted Sales data, and you I can see you are trying to take Sales Line table.
See the screenshot below.
in Lines also it is there or in find entries- job ledger entries also the job field is there
reportextension 60003 PostedSalesInvoiceExt extends 1306 { RDLCLayout = './ReportLayouts/PostedSalesInvoice.rdl'; dataset { addbefore(Line) { dataitem("Sales Line"; "Sales Line") //add("Sales Invoice Line") { column(JobNo_SalesLine; "Job No.") { } } } } }
Yes, i already added in the report but it is not coming over there. thatz why am confused is there any mistakes in code or not
For report 1306 the field is already part of the sales line data item. Just add it through a report layout
Could you pls anyone guide me what may be the issue in this.
Could you pls anyone suggest me what may be the issue in this.
is it like this..but there is no result as expected
reportextension 60003 PostedSalesInvoiceExt extends 1306 { RDLCLayout = './ReportLayouts/PostedSalesInvoice.rdl'; dataset { addbefore(Line) { dataitem("Sales Line"; "Sales Line") //add("Sales Invoice Line") { column(JobNo_SalesLine; "Job No.") { } } } } }
I believe the dataitem in the report is like this:
dataitem(Line; "Sales Invoice Line")
Which would mean you reference it with Line in a report extension. Try using ctrl+spacebar in vs code. That gives you suggestions on what to use table and field wise
after downloading the latest extension and changing the report to 1306 standard sales then also am getting the same
reportextension 60003 PostedSalesInvoiceExt extends 1306 { RDLCLayout = './ReportLayouts/PostedSalesInvoice.rdl'; dataset { add("Sales Invoice Line") { column(JobNo_SalesInvoiceLine; "Job No.") { } } } }
André Arnaud de Cal...
291,965
Super User 2025 Season 1
Martin Dráb
230,817
Most Valuable Professional
nmaenpaa
101,156