Author: ERP Consultors

TDS Register Report Development and Format in BC D365

TDS Register Report Development and Format in BC: (1) In this blog we will do the development of the TDS Register report in export to excel format. (2) For developing TDS Report: Use Dataitem: TDS Entry as shown. Header Part: Body Part: Excel creation Part: Source Code: report 50012 “TDS Register”{UsageCategory = Administration;ApplicationArea = All;ProcessingOnly = …

Create NegativeItem Journal Adjustments with auto Item tracking or Lot No. assignment in BC D365

NegativeItem Journal Adjustments with auto Item tracking or Lot No. Assignment: (1) In every type of industry where Items are Purchase, Sales & Manufacture, at the time of adjusting the inventory, we mainly used “Physical Journals” while using this Physical Journal, we have to apply lot no. or item tracking one by one. Due to this …

Take Database Backup via SQL Query in SQL Server

Take Database Backup via SQL Query in SQL Server: (1) “BACKUP DATABASE” statement is used to take a full backup of an existing database. (2) Syntax of “BACKUP DATABASE”& DIFFERENTIAL statement is: BACKUP DATABASE database_nameTO DISK = ‘PathOfFile’; BACKUP DATABASE database_nameTO DISK = ‘PathOfFile’;With DIFFERENTIAL (3) Select the database in the SQL server and click on the …

Purchase Received not Invoiced Report in BC D365

Purchase Received not Invoiced Report in BC D365: (1) In this blog we will see how to develop or fetch information on Purchase Received Not Invoiced report. (2) For fetching information of Purchase Received Not Invoiced, use Dataitems: “Purch. Rcpt. Line” as “Purch_Rcpt_Line” as shown below. Header Part: Body Part: Excel Creation Part: (3) After doing …

Sales Shipped not Invoiced Report in BC D365

Sales Shipped not Invoiced Report in BC D365: (1) In this blog we will see how to develop or fetch information on the Sales Shipped Not Invoiced report. (2) For fetching information of Sales Shipped Not Invoiced, use Dataitems: “Sales Shipment Line” as “Sales_Shpt_Line” as shown below. Header Part: Body Part: Excel Creation Part: (3) After …

How to Transfer Data from One company to Another using ChangeCompany Method in BC D365

Transfer Data from One company to Another using ChangeCompany Method: (1) Sometimes when we implement multiple companies in one database then at that time “ChangeCompany” method is used to transfer data from one company to another. (2) For Example- there are two companies, user requirement is that when we create a Customer in one company, it …

Development of Trial Balance Report in BC D365

Development of Trial Balance Report in BC D365: (1) In this blog, we will see how to develop a new Trial Balance Report in excel format. (2) First of all Take DataItem: “G/L Account”. (3) Write code in “OnAfterGetRecord” for calculating Opening, Debit, Credit and Running Balance. Header Part: Body Part: Footer Part: Excel Sheet Creation …