web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

SetPrefix function in the while select loop with the continue statement

(0) ShareShare
ReportReport
Posted on by 70

When I use setprefix function in the while select loop with the continue statement, than the behaviour is unexpected. It seems that the continue statement doesn't reset prefix level. See example below. Is it a bug?

static void TestPrefixWithContinue(Args _args)
{
    int i;
    TaxTable    taxTable;

    setPrefix("setPrefix with continue");
    while select taxTable
    {
        setPrefix(strFmt("Tax code %1", taxTable.TaxCode));
        if (i < 3)
        {
            info("Something wrong");
            i++;
            continue;
        }
        
        // Some useful code here        
        
        i++;
    }
}


*This post is locked for comments

I have the same question (0)
  • Ivan (Vanya) Kashperuk Profile Picture
    Microsoft Employee on at

    Yes, looks that way.

    Log a bug with support if you feel this is important to fix.

    Thanks

  • Community Member Profile Picture
    on at

    This is the trick

    static void _tmp(Args _args)
    {
    int i;
    TaxTable taxTable;

    void infomonotree()
    {
    setPrefix(strFmt("Tax code %1", taxTable.TaxCode));
    info("Something wrong");
    }

    setPrefix("setPrefix with continue");
    while select taxTable
    {

    if (i < 3)
    {
    infomonotree();
    i++;
    continue;
    }

    // Some useful code here

    i++;
    }
    }

  • Suggested answer
    Community Member Profile Picture
    on at

    static void _tmp(Args _args)

    {

       int i;

       TaxTable    taxTable;

       void infomonotree()

       {

           setPrefix(strFmt("Tax code %1", taxTable.TaxCode));

           info("Something wrong");

       }

       setPrefix("setPrefix with continue");

       setPrefix("setPrefix with continue main sublevel");

       while select taxTable

       {

           if (i < 3)

           {

               infomonotree();

               i++;

               continue;

           }

           // Some useful code here        

           i++;

       }

    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Joris dG Profile Picture

Joris dG 5

#2
Andrew Jones a1x Profile Picture

Andrew Jones a1x 2

#3
GL-01081504-0 Profile Picture

GL-01081504-0 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans