Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Microsoft Dynamics NAV 7 Programming Cookbook

You're reading from   Microsoft Dynamics NAV 7 Programming Cookbook Learn to customize, integrate and administer NAV 7 using practical, hands-on recipes

Arrow left icon
Product type Paperback
Published in Sep 2013
Publisher Packt
ISBN-13 9781849689106
Length 312 pages
Edition 2nd Edition
Languages
Arrow right icon
Toc

Table of Contents (20) Chapters Close

Microsoft Dynamics NAV 7 Programming Cookbook
Credits
About the Author
About the Reviewers
Acknowledgements
www.PacktPub.com
Preface
1. String, Dates, and Other Data Types FREE CHAPTER 2. General Development 3. Working with Tables, Records, and Queries 4. Designing Pages 5. Report Design 6. Diagnosing Code Problems 7. Roles and Security 8. Leveraging Microsoft Office 9. OS Interaction 10. Integration 11. Working with the SQL Server 12. NAV Server Administration Index

Using the CASE statement to test multiple conditions


When we have more than two conditions to test, it will be beneficial to use a CASE statement for better code readability.

How to do it...

  1. Create a new codeunit from Object Designer.

  2. Let's add the following global variables:

    Name

    Type

    i

    Integer

  3. Now write the following code in the OnRun trigger of the codeunit:

    i := 2;
    CASE i OF
      1:
        MESSAGE('Your number is %1.', i);
      2:
        MESSAGE('Your number is %1.', i);
      ELSE
        MESSAGE('Your number is not 1 or 2.');
    END;
  4. It's time to save and close the codeunit.

  5. On execution of the codeunit, you should see a window similar to the following screenshot:

How it works...

A CASE statement compares the value given, in this case i, to various conditions contained within that statement. Each condition other than the default ELSE condition is followed by a colon. The same logic can be written using the IF statement:

IF i = 1 THEN
  MESSAGE('Your number is %1.', i)
ELSE IF i = 2 THEN
  MESSAGE('Your number...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime