This topic shows how to create new actions, how to add actions to a page, and how to preview them in the RoleTailored client. In Microsoft Dynamics NAV, actions can be displayed on the menu bar of all pages and grouped together under the following actions buttons:

Before putting an action on a page you should think about the business processes that the action supports. For example, on page 42, the Sales Orders list page, the Actions button contains actions for all tasks related to processing sales orders. Creating these actions can make it easier for the order processor to perform her daily tasks, such as posting sales orders and creating new customer orders.

For more information, see Actions Overview.

Adding Actions to a Page

To create a new action you must use Action Designer. Action Designer is a tool in Page Designer that enables you to add actions to the menu bar.

To add an action to a page

  1. Open the Classic client, click Tools, and then click Object Designer.

  2. In Object Designer, select a page, and then click Design to open Page Designer.

  3. To open Action Designer, select the first empty row, click View, and then click Actions.

    NoteNote

    Actions can only be linked to a page, or to a group that has a subtype of Group or CueGroup. Actions cannot be linked to fields, containers, or parts on a page.

  4. Select the first blank row in Action Designer, type a Name, and then type a Caption for your action.

  5. In the Type field, select one of the following Types:

    • ActionContainer

    • Separator

    • ActionGroup

    • Action

    For example, if you want to create a container for your actions, select ActionContainer.

  6. In the SubType field, select one of the following SubTypes:

    • NewDocumentItems

    • ActionItems

    • RelatedInformation

    • Reports

    • HomeItems

    • ActivityButtons

    For example, if you want to put your action in the Actions menu, select ActionItems.

  7. Click in the second row, set action Type to Action. Your action is indented automatically under the ActionContainer. Click the third row, and then click the second row again. The Name field in this row is filled in automatically.

    You can use the right and left arrow buttons in Action Designer to adjust indentation, and use the up and down arrow buttons to move an action in the hierarchy.

    NoteNote

    If you insert a new row to add a new action to the list, indentation is not automatic, so always check the indentation on your actions. If it is not correct you will get an error when you compile.

  8. With your action selected, click View, and then click Properties. Set the RunObject property to create an action that opens another page, for example, page 42, Sales Orders.

    NoteNote

    In Action Designer, actions can be assigned to a page by setting the RunObject property, or by adding a C/AL trigger to a code unit.

  9. Set the Caption and CaptionML properties to make the action visible in the Actions menu.

  10. Save and compile the page.

  11. To preview an action in the RoleTailored client, in Object Designer, select the page and click Run. For more information about running a page, see How to: Run a Page.

NoteNote

If the RoleTailored client is already open, you will not see changes to HomeItems or ActivityButtons until to you close and restart it.

See Also