==================
Page action with qualified RunObject name
==================

page 50000 "Test Page"
{
    actions
    {
        area(processing)
        {
            action("Standard Cost")
            {
                RunObject = Page Microsoft.Manufacturing.StandardCost."Standard Cost Worksheet Names";
            }
        }
    }
}

---

(source_file
  (page_declaration
    (page_keyword)
    object_id: (integer)
    object_name: (quoted_identifier)
    (actions_section
      (actions_keyword)
      (action_area_section
        (area_keyword)
        (action_declaration
          name: (quoted_identifier)
          (property
            name: (property_name)
            value: (object_reference_value
              (page_keyword)
              (identifier)
              (identifier)
              (identifier)
              (quoted_identifier))))))))

==================
Action with simple RunObject reference
==================

page 50001 "Test Page"
{
    actions
    {
        area(navigation)
        {
            action(CustomerCard)
            {
                RunObject = Page "Customer Card";
            }
        }
    }
}

---

(source_file
  (page_declaration
    (page_keyword)
    object_id: (integer)
    object_name: (quoted_identifier)
    (actions_section
      (actions_keyword)
      (action_area_section
        (area_keyword)
        (action_declaration
          name: (identifier)
          (property
            name: (property_name)
            value: (object_reference_value
              (page_keyword)
              (quoted_identifier))))))))
