!--a11y-->
actions.xml File 
File that contains the collection of permissions in actions to use for your application.
Actions are specified in the actions.xml file using XML tag descriptors. See the table below for a list of the most frequently used tags and their parameters.
Action Tag Descriptors
Tag |
Tag Description |
Parameters |
Parameter Description |
BUSINESSSERVICE |
Root element that describes the application in the rest of the tags. |
NAME |
Name of the application. It must be unique on the AS Java. |
DESCRIPTION |
Provides a short description for the application or for actions. |
LOCALE |
Land and language for the short description. |
|
|
NAME |
Short description for the application or action. |
ACTION |
Describes the individual actions. |
NAME |
Name of the action. |
PERMISSION |
Describes each permission. |
CLASS |
Specifies the permission class that is used for the permission. |
|
|
NAME |
String used to use for the permission’s first parameter, for example, Economy. |
|
|
VALUE |
Used by Action and Value permissions. Contains the string value to use for the permission’s second parameter, for example, create. |

An action may contain multiple permission tags.
The following example shows how to use the most frequently used tag descriptors.
<BUSINESSSERVICE NAME="MyApplication"> </ACTION> </ACTION> <PERMISSION CLASS="com.sap.engine.examples.permissions.PermissionClass"
<PERMISSION CLASS="com.sap.engine.examples.permissions.PermissionClass" |
You can also use wildcards for parameters that accept all values. See the example action below.
<ACTION NAME= "AllPermissions" > </ACTION> |