Compare menusuite

srjohnysrjohny Member Posts: 8
Hello Everyone, I've a rookie question and I might someone can help. we are doing a migration between NAV2009 and NavBC, I would like to compare if all menus is already in BC, is it possible , compare all menus from Navision 2009 and Navision BC e check what is missing? I just need to check if that specific menu "list" is showing on BC.

Answers

  • RemkoDRemkoD Member Posts: 100
    I've never done something like that before. You could export the menusuites from NAV2009 and BC as txt files and extract the menuitem names (or object type/id) from the files and compare these.

    With RegEx you could grep all the menuitem names from a file with
    .*MenuItem.*Name=(?<MenuItemName>.*?)\;
    
    In PowerShell you could compare the two list easily with Compare-Object.

    However I'm not entirely sure what you're trying to accomplish.
Sign In or Register to comment.