Showing posts with label C/Al. Show all posts
Showing posts with label C/Al. Show all posts

Monday, May 29, 2017

Grouping In Export To Excel Report Without Layout in MS Dynamics NAV 2017

Grouping In Report with Code in A/L


Hi All,

Today I Got a Requirement for Excel Buffer Report in Navision and with Grouping of Location 

Code in Item Ledger Entry.

Typically it was tough requirement , but thanks to MS Dynamics Community and Saurabh Dhyani Sir

for his valuable time which shared a most important thing and rarest blog of Navision.

Direct Link For Grouping of Reports via Coding in MS Dynamics NAV

I had used the same method  in MS Dynamics NAV 2017. I am Sharing my FOB with you all to 

download and understand the issue better.



Useful Points about this Report

1. We can use grouping via C/AL Code.

2. We can arrange the Function via boolean Field.

3. Use of Exit Function in MS Dynamics NAV.






Saturday, May 20, 2017

Workflow status Field on journals in NAV 2017.

Hi All,

This was one of my finding which I had done on implementation of Approval status Field in MS 

Dynamics NAV 2017.

In all journals we have workflow but we cant find out which lines are sent for approval nd which are 

approved or rejected.

To get this functionality developed I had put this code on Validate trigger of Status Field in NAV 

table ID 454 Approval Entry.

I had added Field on NAV Table 81 which changing its value acording to the status field on this table.

I hope this post will help many of the NAV developers I am also attaching the FOB in the Post below.




Download the Fob Now



Saturday, May 13, 2017

Some imporant points Summary Post 2 Tables from

Hi,

You can have a look for Tables in MS Dynamics NAV from the below link. I am summarising the

concept below. If you like then do comment and subscribe to my blog post.

Tables by microsoft.




Note 1.

RECORDID Datatype :- It Stores RECORD ID and Primary key values.

Note 2.

ExtendedDataType property

When you select the Phone No. field without closing the No. -

Property window, notice that now the Phone No. – Property window is shown.

By selecting a value in the ExtendedDataType property, you will change the layout

and behavior of controls on a page. Use the value to add an icon next to an input

field to indicate whether the field relates to a phone number, email address, or URL.

Note 3.

Why we use Field Groups in Navision?

Note: If you do not define any Field Groups for the drop-down control, by

default, you will only see data from two fields in the source table: the primary key

and description fields, because these are indexed automatically.

Note 4.

Up to 40 keys can be associated to a table, and the first on the list is the primary

key. All other keys are secondary keys and optional.

The primary key is composed of up to 20 fields in a record. The combination of

values in fields in the primary key makes it possible for Microsoft SQL Server to

perform a unique identification of each record. The primary key determines the

logical order in which records are stored, regardless of their physical placement on

a disk.

Secondary keys are used to view records in an order that differs from the one in

which they are sorted, according to the primary key fields.

Note 5.

Note: The field ID that is specified in the TableRelation property must be in

the primary key of the table that is specified by the table ID in the property. If the

specified field is not the first field in the primary key, the other fields that are listed

before it in the key must be filtered to one value.

Note 6.

7 types of flowfields Sum, Average,Lookup,Exist,Min, Max,Count

Note 7.

SumIndexFields

A SumIndexField is a decimal field that can be attached to a key definition. This is

the fundamental feature of the Microsoft Dynamics NAV that constructs the basis

for FlowFields. SumIndexFields enable fast calculation of numeric columns in

tables,

Note 8.
Each key can have at most 20 SumIndexFields. During database design, a decimal field can

be associated with a key as a SumIndexField.

The type of SumIndexField must be numeric (Decimal, BigInteger, Integer or Duration).


Friday, May 12, 2017

Summary of CAL CODE Programming guide

Hi,

Today I get a look on the below link for CAL Code present in NAV. I am summarising all the points from this PDF.





Note 1. There must be 1 character space between operators.

Note 2. Do not use any blank lines at the beginning and end of the function.

Note 3. Use 2 character space in alignment.

Note 4. If you want to break lines in CAL Code then use 2 character space in all.

For Eg.

MyVariable := Variable1 + Variable2 * 2 +
                     Variable3 * 3;  

Note 5. Use parenthesis alignment uniquely.

For Eg.
aaaaaaaaaa := ((xxxxxxxxxxx / yyyyyyyyyyyyy) -
                         (1 + zzzzzzzzzz / 100)) * 100;
IF (xxx <> '') AND
     ((A = 1) OR
      (B = 2)) THEN ...

Note 5. Always use // for comment with 1 space character.

Note 6. Use Value of option instead of hard Code or Integer values.

Note 7.Use Parameters to transfer Values in a Function.

... P(0); ...

PROCEDURE P(MyOption : 'Value0,Value1,Value2');
BEGIN
CASE
MyOption OF MyOption::Value0:
x := x * 10;
MyOption::Value1: x := x * 15;
MyOption::Value2: x := x * 20;
END;
END;

Note 8.  The variable you are operating on or comparing to something else must always come first in expressions.

IF (Date < a) OR (Date > b) THEN Date := c;

Note 9.  IF and THEN should normally be on the same line. ELSE should be on a separate line.

Note 10.  If the last statement in the THEN part of an IF-THEN-ELSE statement is an EXIT or an ERROR, don’t continue with an ELSE statement.

EXAMPLE
IF x <> y THEN
EXIT(TRUE);
x := x * 2;
y := y - 1;
EXAMPLE (BAD)
IF x < y THEN
EXIT(TRUE)
ELSE BEGIN
x := x * 2;
y := y - 1;
END;

Note 12.  
When BEGIN follows THEN, ELSE or DO, it should be on the same line, preceded by one space 

character.

EXAMPLE

IF (x = y) AND (a = b) THEN BEGIN
x := a;
y := b;
END;
EXAMPLE
IF (xxx = yyyyyyyyyy) AND (aaaaaaaaaa = bbb) THEN BEGIN
x := a;
x := y;
a := y;
END ELSE BEGIN
y := x;
y := a;
END;

Note 13.
Indentation of REPEAT statements:

Simple case:

REPEAT ;
     UNTIL ;

Complex case:

REPEAT ;
     UNTIL AND AND ;
REPEAT

should always be alone on a line.
IF x < y THEN BEGIN
     REPEAT
           x := x + 1;
          a := a - 1;
     UNTIL   x = y;
               b := x;
      END;

Note 14.  If there are more than two alternatives, use a CASE statement. Otherwise, use IF.

Note 15.  Within WITH-DO blocks, do not repeat the name of the object with the member variable or 
function. For example, in the following example do not replace the call of the member function 

INSERT with MyRecord.INSERT.
EXAMPLE
WITH MyRecord DO
BEGIN
INSERT;
...;
END;

Note 15. use TESTFIELD FUNCTION to check if value is not blank before assigning.

Note 16. 

To set properties from C/AL, use the following style:

"Customer No.".Visible := TRUE;
Cust.MARK := TRUE;
CurrReport.SHOWOUTPUT := TRUE;
Do not write:
Customer." No.".Visible(TRUE);
Cust.MARK(TRUE);
CurrReport.SHOWOUTPUT(TRUE);

Note 17.
Remember to set the property Editable=No on FlowFields unless you want to be able to enter values in the field.

Note 18.
As default, set the property NotBlank=Yes on the primary key fields in a table. No other fields in a table should have this property

Note 19.
Since a disabled field cannot be included in a form, never release a table with disabled fields.

Note 20.
When you apply the property ValidateTableRelation=No to a field, you should also apply the property TestTableRelation=No. Otherwise a database test on the field relations in a database may fail.

Note 21.
When programming the OnLookup trigger for a field, remember that the system will not call the code in the field’s OnValidate trigger unless you call Field.VALIDATE explicitly.
Remember also that if errors can occur in the validation, you must operate on a copy of the Rec-variable (as shown in the example below) instead of directly on Rec.

EXAMPLE

Department Code – OnLookup
WITH Cust DO BEGIN
Cust := Rec;
Dept.Code := "Department Code";
IF FORM.RUNMODAL(O,Dept) = Action::LookupOK THEN BEGIN
"Department Code" := Dept. Code;
VALIDATE("Department Code");
Rec := Cust;
END;
END;

Note 22.
As a rule, use 20 characters for a code field that is likely to be visible to external companies or organizations. Otherwise, use 10 characters.

Note 23.
To assign a value to data type DateFormula, whether it is a field or a variable, you must use the 

EVALUATE function. EXAMPLE IF FORMAT(Dateformulavariable) = ' ' THEN EVALUATE(Dateformulavariable, '1W'); 

You must use the FORMAT function to make a comparison with a text string. If you do not use this function, the IF statement will fail, because you can not compare DateFormula with data type Text.

Note 24.
To make Lookup work on a field that has a table relation to a system table, you must always explicitly set the LookupFormID property on controls showing the field

Note 25.
Remember to set the LookupFormID and DrillDownFormID properties on most tables. You cannot anticipate when a user will need to be able to activate a Lookup or DrillDown button – for example, if someone makes a report with a filter tab on the table, the Lookup button on the filter tab will not appear unless the LookupFormID property is set on the table.

Note 26.
If it is necessary to change the key before accessing a table in the database, first set the correct key, then set the correct filters, and finally, access the table. Put only the necessary key fields in a call of SETCURRENTKEY. That is, if the table order is not important, use only the fields that are used in the subsequent calls of SETRANGE and SETFILTER. This makes it possible to change the definition of the key (as long as it still includes the fields mentioned in the call of SETCURRENTKEY – in the order given) without having to change any code.

EXAMPLE
Rec.RESET;
Rec.SETCURRENTKEY(Field1,Field2);
Rec.SETRANGE(Field1,x);
Rec.SETRANGE(Field2,y);
Rec.FIND('-');


In the example, a possible key is Field 1, Field2, Field 3. Without changing the code above, the key could be changed to Field1, Field3, Field2.


Thursday, May 11, 2017

Summarise post 1 for ms dynamics NAV 2013.





Q1. Can another developer overwrite an object locked by you?


NO


Q2. Which object type is new in Microsoft Dynamics NAV 2013?

Querry


Q3.What are the elements of the logical database structure in Microsoft Dynamics NAV 2013?
MODEL ANSWER:
Field, record, table, and company.


Auto-Locking
Users may frequently forget to lock the objects before opening them in the
designer. You can configure Microsoft Dynamics NAV Development Environment
to automatically lock the objects when a user designs them.
To switch auto-locking on, click Tools > Options, to open the Options window.
In the Options window, set the Auto-Lock on Design property to Yes, and then
click OK.


Note: This change affects only the user who has made it. Every user must set
this option himself or herself.


Note: There is no automatic unlocking in Microsoft Dynamics NAV 2013. As
soon as you auto-lock an object, the object remains locked until you unlock it.


Note: You can access drop-down, look-up or a specific property editor by
pressing the F6 key or the ALT+DOWN combination on your keyboard.


Note: The mark on an object is automatically cleared when you compile
multiple objects again, and the object compiles successfully. To toggle the mark on
an object manually, selecting the object in the Object Designer, and then on the
Edit menu, click Toggle Mark, or press CTRL+F1 on your keyboard.


Thursday, May 4, 2017

Why we should use BEGIN END in our conditional Looping

This post is related to my one mistake so I just want to share it with all. This post will help my 

readers to understand how the conditional statement works in Navision and what is the impact of 

BEGIN END on all the Conditions.


For this I am using two scenarios of Code as shown in screenshot.

Image 1

Image 2

Image 3


Now in all the screen if you run the debugger it will show you the real facts.

Screen 1 and 3 are same in both the scenarios and working.

it will check all the three conditions.

Screen 2 is showing difference that whenever the IF condition before Begin is checked then either the

 whole code will be run else whole code will not be run by AL.

I hope it will be helpful to all developers of NAVISION. If you like my post then please share and 

comment.

Thursday, March 30, 2017

7 Doubts You Should Clarify About Multiple Language Solution In NAV

Is your Solution MULTI Language Acceptable?


Hi All,

This post is about  providing your solution of Nav to be implemented in multi langauages.



While creating reports in NAV we have many a times used Hard Code Error  which resolves solutions but the long term impact of such cases I want to share with my readers.

So the summarise post is below :- 

How to achieve Multi Language Implementation Solution?

We must provide every error , message , confirmation in TEXT CONSTANT and we must provide another language in Caption ML Property of NAV.

More about property is Here.

Where we must use it?

1. Object Name
2. Function Name
3. Function Variable
4.Option Type 
5.Control Names.
 Comment,CAPTIONML,OPTIONML,Instruction,Instruction Tool ML.

Rules :-

Always use text constants and avoid hard code while defining ERROR,MESSAGE,CONFIRM,STRMENU,OPTION,DATEFORMULA

Alway try to use FIELDCAPTION,TABLECAPTION,STRSUBSTNO to retrieve caption values for comparing object names.

Thanks.

Please subscribe our post and follow us below to getmore valuable updates to develop MS Dynamics NAV Solutions.


Monday, March 27, 2017

10 Things Nobody Told You About Nav Coding Guidelines.

How to start Coding in MS Dynamics NAV?

Hi All,

This post is just a starting of a new age of NAV Extension and coding guidelines to develop new

 requirements. So it is for all the NAV developers all over the world to follow these codelines.



Why we as NAV Technical Consultant need these guidelines?

Now requirements of our clients and developments have been changed a lot with technical 

background so we need all the changes to be deployed with latest functionalities.

To implement these changes you must have to leearn these codelines and guides.

Where can we get these coding guidelines?

You can get these coding guide lines from Microsoft Wiki Nav Community.



Sumarised guidelines for NAV Technical Consultant.

1. NAV Technical Consultant must understand these topics clearly.


More References to be followed:










Friday, March 17, 2017

You Will Never Believe These Bizarre Truth Behind Gst Implementation In Nav.

Release of GST Patch in India for MS Dynamics Nav 2016.

GST in MS Dynamcis NAv


As we know India has revolutionised the taxation system by bringing globalised taxation in all states.
It brings a huge curiosity to implement GST in MS Dynamics NAV 2016 Indian Version.

Get Your GST Patch  download with CU 17 of MS DYNAMICS NAV 2016 on below link.



Download GST CU17 of MS Dynamics NAV 2016.


Impact of GST in India.

1. There will be globalised taxation system which will become easy for small scale industries to manipulate there business scenarios.

2. It will bring more jobs in all industries in India specially NAV Technical and Functional Consultants.

Updates from Microsoft :-

Till 18 March 2017 Microsoft has released the Whitepaper for GST to be implemented in our NAV 2016. You can download the GST White Paper From Here.
Get the white PAPER From Microsft here.  

 Copy of WhitePaper for MS Dynamics NAV GST Update

This Whitepaper contains all the important informations to be implemented with GST in MS Dynamics NAV 2016. So get you copy First.

You can also get the details About the GST Release From this Link also.

GST implementation in mS dynamics nav

Microsoft GST Complete information.

The above link tells you about where the impacts and modification have been done by Microsoft to implement the GST Taxation sytem in India.



I will keep you update about the implementation of MS Dynamics NAV GST in INDIA.
If you like the post then please share and subscribe our blog so that we will keep you update about successful implementtion of GST in Navision.



Saturday, December 10, 2016

How to solve C/Side hyperlink failed in MS Dynamics NAV 2017?

Are you also Getting the Same Error ?



This error only occurs when we have all the above or more than 1 vesions installed in our system and we have uninstalled any higher version of NAV.

Cause: -

DUE TO uninstall , System Registry might have got some error or deleted.

Solution : -

You have uninstall all the versions and then reinstall each version in ascending order, once all versions are installed , please don't uninstall any upper version. I hope this post will surely help all other NAV Developers and subscribe via email so our new post will reach you directly.

You can also use NAV Protocol Handler. To download NAV Protocol Handler Click Here.

Wednesday, December 7, 2016

How to use SETTABLEVIEW Function in Navision?

SETTABLEVIEW

This is a very important function that can be used in various scenarios ccording to business requirement and dealing.

Defination :-

This function applies filters to the record for the Pages , Report or Xmlport.

Syntax :-    SETTABLEVIEW(Record)

To see more about this please Click Here.

Implementation :-

To use this function we have to create 2 variables and I am adding this function on my customer card to see the impact. 







Friday, December 2, 2016

How to use Temporary Tables in Navision?

What are Temporary Tables in Navision?


Temporary Tables are basically a Temporary variable which points to table and are in use until the table is not closed from Client. This image will define it much better.

For more reference , Please click here on MSDN.

Now see the use of Temporary Tables in this code.


Result :



Thursday, December 1, 2016

What is the difference between CLEAR & RESET Functions in NAV?


What is the use of RESET & CLEAR : -

Basically when we use a want to reuse a variable we need to unapply all the filters that are previously applied on that variable, this is why we need to CLEAR or REST that variable.

If its string type we use ABC=''; IF its Integer type we use ABC=0;
OR we use CLEAR(ABC);
Now, when we are using a RECORD type variable we always use


CLEAR(ABC) or ABC.RESET;

Difference is that while using RESET it clears all the filters already applied on that variable and if any key is changed it will reset the primary also.


CLEAR is 1 more step Ahead that it will Clear all the fields individually from this recor type variable.

For reference please check :-After RESET


After Clear



Wednesday, November 30, 2016

How to use MARK and MARKED only function in MS Dynamics NAV 2017?

These 2 functions are similar to NAV Developer as we do use for Objects using CTRL +F1.


HERE is an example in which I had used to mark some records of Customer table with Starting Alphabet as "C" and with Location Code as "BLUE".


So Lets see the screenshot for reference :-



The Result is :-


Monday, November 14, 2016

HOw USE OF FINDSET in MS Dynamics NAV 2017?.

How to use FINDSET



As per MSDN,Findset gets the records on the basis of filters applied over the record type.
If now filters are applied then we can use it to update all records present in table using REPEAT UNTIL.

I had defined these two variables in navision.

DIFFERENCE between FINDSET,FINDFIRST,FINDLAST in NAVISION.

FINDSET :- It retrieves 50 records in tables and update it one by one.
FINDLAST :- It points to LAST Record in a DATASET Filter.
FINDFIRST :- It points to FIRST Record in DATASET FILTER.



Following is the code which I had written to get the processed data in a table.




This is the desired result:













How to use DATE2DWY Function in Navision?.


CASE are similar to all other languages in Navision. 


The only difference is in Syntax but the basic concept remains same.


Here I am going to convert a Date to a number using DATE2DWY and that number is used in CASES to define a Weekday in Navision. 

So these variables I had defined:





The Code is very simple just notice the syntax for CASE in Navision.







Here is the result.




Difference B/W Pass By Reference & Pass By Value (Miracle Solved & Explained For all Languages)

Functions are created in all languages and perform various tasks uniquely. 

That's the reason why functions are useful in a coding of all types Languages.

Creating a Function needs to be needs needs 3 Basic Steps :


1. Defining and Creating the Defination of Function.

2.Calling the Function.

3. Passing the Paraments and Arguments into the function so that it provide output.

Now, 
as navision is using C/AL Language in its heart to define and work the logics.There is only one thing common is Function.

Calling the Function and creating the Function and Defining the Function.


Due to this Fact , understanding Functions is very much necessary for beginners and experts of NAV TECHNICAL Consultants.

Functions are easy to create in NAV. Now passing the parameters and calling the functions is explained below.

There are two functions which I had created and Called it via 

CALL BY REFERENCE & CALL BY VALUE.





By Default All Variables in Functions inside NAV Dev are Pass by Value which means a copy is created for parameter and passed.

Variables Used:
CustRec     Record    18
Old Name   Text 50
New Name  Text 50
ChangeCustomerName and ChangeCustomerNameRef are two functions Created in which
Customer variable is taken First one is Pass By Value and Second one is Pass By Reference.


The Code is As Follows :


(This code is only for study purpose taken as Example.If any Objections then Kindly mail)



The Final Result is as under screenshot.

Result 1:-


Result 2:




Tuesday, September 27, 2016

How to separate comma separated value in NAV and import the values in table MS Dynamics Navision?

Comma , Separated Value Retrieval

Now a days, we are moving to more around e commerce industry which works in 24*7 format so to ease the performance and manual work we prefer to use web services. These web services include a set of format which includes some logical values. So in this blog we will try to extract some values from a returned web services.

What we are going to use?

There is a function in NAV called SELECTSTR .

Acc. to msdn,
SELECTSTR treats string values as OPTIONS. This means that identical values in different strings are not allowed.
Any trailing commas are removed before the operation begins.
If Number is less than 1 or greater than the number of real values (excluding trailing commas) in the string, then an error is returned.
Quotes are not supported. For example, a,b,"c,d",e is treated as a five-element substring where substring 4 is d".

Example:-

We are going to retrieve 

1.Account Type
2.Url
3.ID
4.Name
from this returned value from web service.

{"type":"Account","url":"/services/data/v32.0/sobjects/Account/001N000000pEFqVIAW"},"Id":"001N000000pEFqVIAW","Name":"aafag"} 

How to implement the customization and store it in the Table.

Declare variables as per need and requirement.

This is the code which I had written for select the string and then simply insert it into our table.



The final result is here.



You can download the objects by: