Show TOC

Background documentationRole Data Import Format Locate this document in the navigation structure

 

This section describes the attributes used to import role records into SAP NetWeaver Application Server (AS) Java. Role records consist of optional and required attributes.

Note Note

There is limited support for portal role assignment.

More information: Import Format for UME Principals

End of the note.
Required Role Attributes

Attribute

Description

[Role]

Role delimiter.

rid

Name of the role.

Optional Role Attributes

Attribute

Description

action

List of actions assigned to the role separated by semicolons (;).

group

List of groups assigned to the role separated by semicolons (;).

rdesc

Description of the role.

user

List of users assigned to the role separated by semicolons (;).

Example

Syntax Syntax

The following is an example of a file containing a role in the import format. The users MarcPeters, JackSmith, and Alan_Fox must already exist, otherwise an error occurs. Similarly, the groups HappyBuyersOf2003 and HappyBuyersOf2002 must already exist. If role already exists, this import file overwrites any role assignments, if overwrite is enabled.

  1. [Role]
    rid=Role1
    rdesc=Role description
    user=MarcPeters;JackSmith;
    user=Alan_Fox;
    group=HappyBuyersOf2003;HappyBuyersOf2002
     
End of the code.