Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

Configuring MS Teams Setting

This section provides you information about how to configure MS Teams settings and also how to configure remote site settings. You need to gather client Id and client secret from the Azure portal to configure MS team setting in Contract Management.

Prerequisite

  • You must have MS Teams and OneDrive or SharePoint license to integrate MS Teams with Contract Management.
  • You can schedule the MSTeamsJobScheduler job to create an MS Teams channel according to your expected frequency.

Scheduling the MS Teams Job via Developer Console

  1. Navigate to Developer Console.
    This displays the Developer Console window.
  2. Select Debug tab and select Open Execute Anonymous Window.
    This displays the Enter Apex Code window.
  3. Add the code in the following format:
    Apttus.MSTeamsJobScheduler c1 = new Apttus.MSTeamsJobScheduler();
    String sch1 = '0 5 * * * ?'; 
    System.schedule('MSTeamsJobScheduler - Schedule Job 5 mins', sch1, c1);