AppMenuItemId |
- Type
- string
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The 15-character ID for the menu item.
|
ApplicationId |
- Type
- reference
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The 15-character ID for the application associated
with the menu item.
|
Description |
- Type
- string
- Properties
- Filter, Group, Nillable, Sort
- Description
-
A description of this menu item.
|
IconUrl |
- Type
- url
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The icon for the menu item’s application.
|
InfoUrl |
- Type
- url
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The URL for more information about the
application.
|
IsUsingAdminAuthorization |
- Type
- boolean
- Properties
- Defaulted on create, Filter, Group, Sort
- Description
-
If true, the app is
pre-authorized for certain users by the
administrator.
|
IsVisible |
- Type
- boolean
- Properties
- Defaulted on create, Filter, Group, Sort
- Description
-
If true, the app is
visible to the user.
|
Label |
- Type
- string
- Properties
- Group, Nillable
- Description
-
The app’s name.
|
LogoUrl |
- Type
- url
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The logo for the menu item’s application. The
default is the initials of the
Label value.
|
MobileStartUrl |
- Type
- url
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The location mobile users are directed to after
they’ve authenticated. This is only used with
connected apps.
|
Name |
- Type
- string
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The API name of the item.
|
SortOrder |
- Type
- int
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The index value that controls where this item appears
in the menu. For example, a menu item with a sort
order value of 5 will appear between items with sort
order values of 3 and 9.
|
StartUrl |
- Type
- url
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The location users are directed to after
they’ve authenticated. For a connected app, this is the location specified by the
StartUrl. Otherwise
it’s the application’s default start
page.
|
Type |
- Type
- picklist
- Properties
- Filter, Group, Nillable, Restricted picklist, Sort
- Description
-
The type of application represented by this item. The
types are:
- ConnectedApplication
- Network
- ServiceProvider
- TabSet
|
UserSortOrder |
- Type
- int
- Properties
- Filter, Group, Nillable, Sort
- Description
-
The index value that represents where the user set
this item in the menu (or App Launcher). For example, an item with a sort order value of
5 will appear between items with sort order values
of 3 and 9.
This value is separate from SortOrder so you can
create logic incorporating both values. For example,
if you want the user-sorted items to appear first,
followed by the organization order for the rest,
use:
SELECT ApplicationId,SortOrder,UserSortOrder FROM AppMenuItem order by userSortOrder NULLS LAST, sortOrder NULLS LAST
|