Author: ERP Consultors

Create or Setup Sandbox Environment in D365 BC

Setup Sandbox Environment in D365 BC: (1) In this blog, we will see the setup and use of “Sandbox Environment” in Business Central D365. (2) Sandbox Environment is called “Non-Production Environment”. Basically, it is used as a testing environment where we do test, troubleshoot or create scenarios without disturbing the production environment. (3) The Premium and …

How to Flow Custom Field from Transfer Header to Transfer Receipt Header Table in AL for D365 BC

Flow Custom Field from Transfer Header to Transfer Receipt Header: (1) In this blog we will see how custom fields flow from Transfer Header to Transfer Receipt Header. For this, follow the below steps. Adding Fields in “Transfer Header” & “Transfer Receipt Header” as Table Extension. Adding Fields in “Transfer Order” & “Posted Transfer Receipt” as …

How to Flow Custom Field from Transfer Header to Transfer Shipment Header Table in AL for D365 BC

Flow Custom Field from Transfer Header to Transfer Shipment Header: (1) In this blog we will see how custom fields flow from Transfer Header to Transfer Shipment Header. For this, follow the below steps- Adding Fields in “Transfer Header” and “Transfer Shipment Header” as Table Extension. Adding Fields in “Transfer Order” and “Posted Transfer Shipment” as …

Function Declaration in C Language

Function Declaration in C Language: (1) In this blog we will see how to declare Function in C Language. (2) It is recommended for optimizing the code. It should be advisable to write separate function definitions and function declarations. (3) You can add as many parameters as you want. (4) Sample C language code and its …

Continue Statement in C Language

Continue Statement in C Language: (1) The continue is another jump statement like the break statement as both the statements skip over a part of the code. But the continue statement is somewhat different from the break. Instead of forcing termination, it forces the next iteration of the loop to take place, skipping any code in …

Break Statement in C language

Break Statement in C language: (1) The break statement enables a program to skip over part of the code. A break statement terminates the smallest enclosing while, do-while, for or switch statement. Execution resumes at the statement immediately following the body of the terminated statement. (2) Sample C language code and its output, as shown: #include …

Assignment Operators in C Language

Assignment Operators in C Language: (1) Assignment Operators are used for assigning values to variables.  (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>// Assignment Operators in C Languageint main(){int x;  x = 5;printf(“Value of ‘=’: %d\n”, x);  x = x + 10;printf(“Value of ‘+’: %d\n”, x);  x = x – 9;printf(“Value …