# Dynamically Assign an S-Docs License to the Current User

Use Case: This is useful in an org that has a ton of users. You can create a custom VF page (name it something like `SDGetLicense`) that a user can visit and click a button on to be assigned an S-Docs License. This self-service option eliminates the need for admins to manually assign a ton of licenses to specific users.

{% code title="SDAssignLicenseController.cls" %}

```apex
public class SDAssignLicenseController {
   public String statusMsg {get;set;}
   public void assignLicense() {
       Id sdocPkgId = [SELECT Id FROM PackageLicense WHERE NameSpacePrefix='SDOC' AND Status='Active'].Id;
       String userId = UserInfo.getUserId();
       List<UserPackageLicense> existingUPL = [SELECT Id FROM UserPackageLicense WHERE PackageLicenseId=:sdocPkgId AND UserId=:userId];
       if (!existingUPL.isEmpty()) {
           statusMsg = 'User already has an S-Docs license.';
           return;
       }
       insert new UserPackageLicense(PackageLicenseId=sdocPkgId, UserId=userId);
       statusMsg = 'Successfully assigned user S-Docs license.';
   }
}
```

{% endcode %}

{% code title="SDGetLicense.page (Visualforce)" %}

```html
<apex:page controller="SDAssignLicenseController">
   <apex:form id="form">
       <apex:commandButton value="Get S-Docs License" action="{!assignLicense}" rendered="{!statusMsg == null}" reRender="form" />
       {!statusMsg}
   </apex:form>
</apex:page>
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.sdocs.com/sdocs/administration/landing-page-for-admin/user-management/dynamically-assign-an-s-docs-license-to-the-current-user.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
