cancel
Showing results for 
Search instead for 
Did you mean: 

SAP JAM - ODATA - Create Event with Attachment

Former Member
0 Kudos

Hi guys,

I'm trying to figure out, how to create an event with attachment.

Creating an event works so far.

(...)
HttpPost jamRequest = new HttpPost("/api/v1/OData/Groups('" + groupID + "')/UpcomingEvents");
(...)
and in the JSON file:

	String jsonToSend = "";
	jsonToSend += "{";
	jsonToSend += "\"Name\": \"" + eventName + "\",";
	jsonToSend += "\"StartAt\": \"" + startAt + "\",";
	jsonToSend += "\"EndAt\": \"" + endAt + "\"";
	jsonToSend += "}";
	
	StringEntity entity = new StringEntity(jsonToSend);		
	jamRequest.setEntity(entity);

But how to get the attachment here?

Then I thought maybee to first create Event, then create a ContentItem and then "link" both.

So next thing I tried out, was how to upload 'ContentItem':

Therefore I uploaded a "test.pdf"-file on the server in Folder "Events":

Upload File works:

(...)
HttpPost jamRequest = new HttpPost("/api/v1/OData/ContentItems");
	//Setting the request and response formats to json
	jamRequest.addHeader("Content-Type", "application/pdf");
	jamRequest.addHeader("Slug", "test.pdf");
	jamRequest.addHeader("Accept", "application/json");
		
	String fileDesc = request.getParameter("slug");
	String contentType = "application/pdf";
	String file = request.getParameter("file");	


	String root = getServletContext().getRealPath("/");
    File path = new File(root + "/Events");
    File filepath = new File(path + "/" + "test.pdf");
	FileEntity inputData = new FileEntity(filepath,contentType);	
	jamRequest.setEntity(inputData);
(...)

Is it possible to link my ContentItem with a Event.

Or maybee create an Event directly with attachment?

The SAP JAM OData API is not very helpful here and I didn't found any helpful page anywhere. I found "SAP_Jam_OData_HCP" on github which were nice for a good start, but there ar no examples for events 😕

Thank you!

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Nobody, really?

Why does SAP publish an incomplete API?

Instead of having this super cool TRY-Feature they should have better complete the OData objects and methods in their api documentation.

Former Member
0 Kudos

Hi!

"Event" is an object in SAP JAM.

The creation of the "event" is not a problem.

Here is my sample code:

Context ctx = new InitialContext();
	HttpDestination destination = (HttpDestination)ctx.lookup("java:comp/env/sap_jam_odata");
	HttpClient client = destination.createHttpClient();


	//Testdata:
	String  groupID = "OJgoxOItuCsY26IA5d4thT"; // "Group from extern"
	
	//This is the end point that we are sending the request to
	HttpPost jamRequest = new HttpPost("/api/v1/OData/Groups('" + groupID + "')/UpcomingEvents");


	//Setting the request and response formats to json
	jamRequest.addHeader("Content-Type", "application/json");
	jamRequest.addHeader("Accept", "application/json");
	
	String eventName = request.getParameter("eventName");
	//Testdata:
	String startAt = "/Date(1485970200000)/";
	String endAt = "/Date(1486126800000)/";		
	
	//Creating the json message as a large string to pass in the request
	//In this case, we are passing the group name to create and
	//the external object ID to be the primary object
	String jsonToSend = "";
	jsonToSend += "{";
	jsonToSend += "\"Name\": \"" + eventName + "\",";
	jsonToSend += "\"StartAt\": \"" + startAt + "\",";
	jsonToSend += "\"EndAt\": \"" + endAt + "\"";
	jsonToSend += "}";
	
	StringEntity entity = new StringEntity(jsonToSend);		
	jamRequest.setEntity(entity);
		
	HttpEntity responseEntity = client.execute(jamRequest).getEntity();
	if ( responseEntity != null )
	{
		//output the json response
		String responseString = EntityUtils.toString(responseEntity);
		out.println(responseString);
	}
[...]

The problem is that I don't know how to create an "Event" and add an Attachment to this event.

Here is the link to the API: https://developer.sapjam.com/ODataDocs/ui#event_event_introduction

But the API is not complete. For example "POST Event" is missing.

Uploading a file also works, when I upload the file as "ContentItem". But I need the file as Attachment to an "Event".

I also tried with:

HttpPost jamRequest = new HttpPost("/api/v1/OData/Events('" + eventID + "')/Attachments");

but I only get an error message that POST of Attachment is not allowed for Events. (But you can do this in the SAP JAM UI)

Here is also the metadata file:

<?xml version="1.0" encoding="UTF-8"?>
<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xml:base="https://developer.sapjam.com/c/s0013958128trial.hanatrial.ondemand.com.cubetree.biz/api/v1/OData/$metadata" xml:id="" xmlns:sap="http://www.sap.com/Protocols/SAPData">
  <edmx:DataServices m:DataServiceVersion="2.0" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <Schema Namespace="SAPJam" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns="http://schemas.microsoft.com/ado/2008/09/edm" xml:id="Schema">
      <EntityType Name="Activity">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Content" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Verb" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentWithPlaceholders" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.Activity_AtMentions" FromRole="Activity_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Distribution" Relationship="SAPJam.Activity_Distribution" FromRole="Activity_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="FeedEntry" Relationship="SAPJam.Activity_FeedEntry" FromRole="Activity_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Object" Relationship="SAPJam.Activity_Object" FromRole="Activity_Source" ToRole="ExternalObject_Target"/>
      </EntityType>
      <EntityType Name="AwayAlert">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="StartAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="EndAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="AllDay" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.AwayAlert_Creator" FromRole="AwayAlert_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="Comment">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="Text" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TextWithPlaceholders" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CanDelete" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.Comment_AtMentions" FromRole="Comment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Comment_Creator" FromRole="Comment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.Comment_Likers" FromRole="Comment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="ThumbnailImage" Relationship="SAPJam.Comment_ThumbnailImage" FromRole="Comment_Source" ToRole="ThumbnailImage_Target"/>
      </EntityType>
      <EntityType Name="Company">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ExternalGroupsEnabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ShowProfileEmail" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CustomHomePageEnabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FeedShareEnabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ShowProfileOrgChart" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="ContentItem" m:HasStream="true">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="ContentItemType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="ContentItemType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsFeatured" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="PermissionType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="DocumentSize" Type="Edm.Int32" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FileName" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ConversionStatus" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsCheckedOut" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="FeedCommentsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ExternallyCreatedAt" Type="Edm.DateTimeOffset" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsMirror" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="MirrorsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Tags" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <NavigationProperty Name="CheckedOutByMembers" Relationship="SAPJam.ContentItem_CheckedOutByMembers" FromRole="ContentItem_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.ContentItem_Creator" FromRole="ContentItem_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.ContentItem_FeedEntries" FromRole="ContentItem_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.ContentItem_Group" FromRole="ContentItem_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="LastModifier" Relationship="SAPJam.ContentItem_LastModifier" FromRole="ContentItem_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.ContentItem_Likers" FromRole="ContentItem_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="MirrorSource" Relationship="SAPJam.ContentItem_MirrorSource" FromRole="ContentItem_Source" ToRole="MirrorLink_Target"/>
        <NavigationProperty Name="Mirrors" Relationship="SAPJam.ContentItem_Mirrors" FromRole="ContentItem_Source" ToRole="MirrorLink_Target"/>
        <NavigationProperty Name="ParentFolder" Relationship="SAPJam.ContentItem_ParentFolder" FromRole="ContentItem_Source" ToRole="Folder_Target"/>
      </EntityType>
      <EntityType Name="ContentListItem">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="ContentListItemType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="true" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentListItemType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsFeatured" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ContentItem" Relationship="SAPJam.ContentListItem_ContentItem" FromRole="ContentListItem_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Folder" Relationship="SAPJam.ContentListItem_Folder" FromRole="ContentListItem_Source" ToRole="Folder_Target"/>
        <NavigationProperty Name="LastModifier" Relationship="SAPJam.ContentListItem_LastModifier" FromRole="ContentListItem_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="CustomGroupTemplate">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Locale" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
      </EntityType>
      <EntityType Name="Discussion">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Content" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastActivity" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CommentsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.Discussion_AtMentions" FromRole="Discussion_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Attachments" Relationship="SAPJam.Discussion_Attachments" FromRole="Discussion_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Comments" Relationship="SAPJam.Discussion_Comments" FromRole="Discussion_Source" ToRole="Comment_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Discussion_Creator" FromRole="Discussion_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Forum" Relationship="SAPJam.Discussion_Forum" FromRole="Discussion_Source" ToRole="Forum_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Discussion_Group" FromRole="Discussion_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.Discussion_Likers" FromRole="Discussion_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="Event">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Description" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="DescriptionHtml" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="StartAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="EndAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="AllDay" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Location" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Priority" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Category" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FeedCommentsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Attachments" Relationship="SAPJam.Event_Attachments" FromRole="Event_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Event_Creator" FromRole="Event_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.Event_FeedEntries" FromRole="Event_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Event_Group" FromRole="Event_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Invitees" Relationship="SAPJam.Event_Invitees" FromRole="Event_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.Event_Likers" FromRole="Event_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="MemberResponse" Relationship="SAPJam.Event_MemberResponse" FromRole="Event_Source" ToRole="EventResponse_Target"/>
        <NavigationProperty Name="Responses" Relationship="SAPJam.Event_Responses" FromRole="Event_Source" ToRole="EventResponse_Target"/>
      </EntityType>
      <EntityType Name="EventResponse">
        <Key>
          <PropertyRef Name="RespondentId"/>
          <PropertyRef Name="EventId"/>
        </Key>
        <Property Name="RespondentId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EventId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Status" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <NavigationProperty Name="Event" Relationship="SAPJam.EventResponse_Event" FromRole="EventResponse_Source" ToRole="Event_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.EventResponse_FeedEntries" FromRole="EventResponse_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Organizer" Relationship="SAPJam.EventResponse_Organizer" FromRole="EventResponse_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Respondent" Relationship="SAPJam.EventResponse_Respondent" FromRole="EventResponse_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="ExternalApplication">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ExternalObjectTypes" Relationship="SAPJam.ExternalApplication_ExternalObjectTypes" FromRole="ExternalApplication_Source" ToRole="ExternalObjectType_Target"/>
      </EntityType>
      <EntityType Name="ExternalObject">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Exid" Type="Edm.String" Nullable="true" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Summary" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Permalink" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ODataAnnotations" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ODataMetadata" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ODataLink" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ObjectType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ExternalObjectType" Relationship="SAPJam.ExternalObject_ExternalObjectType" FromRole="ExternalObject_Source" ToRole="ExternalObjectType_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.ExternalObject_FeedEntries" FromRole="ExternalObject_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Groups" Relationship="SAPJam.ExternalObject_Groups" FromRole="ExternalObject_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Templates" Relationship="SAPJam.ExternalObject_Templates" FromRole="ExternalObject_Source" ToRole="GroupTemplate_Target"/>
      </EntityType>
      <EntityType Name="ExternalObjectType">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ExternalApplication" Relationship="SAPJam.ExternalObjectType_ExternalApplication" FromRole="ExternalObjectType_Source" ToRole="ExternalApplication_Target"/>
        <NavigationProperty Name="ExternalObjects" Relationship="SAPJam.ExternalObjectType_ExternalObjects" FromRole="ExternalObjectType_Source" ToRole="ExternalObject_Target"/>
        <NavigationProperty Name="Templates" Relationship="SAPJam.ExternalObjectType_Templates" FromRole="ExternalObjectType_Source" ToRole="GroupTemplate_Target"/>
      </EntityType>
      <EntityType Name="FeedEntry">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Text" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TextWithPlaceholders" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Action" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ActionOnly" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ActionWithPlaceholders" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Bookmarked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="RepliesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CanDelete" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CanLike" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CanReply" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ConsolidatedCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="WebURL" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Read" Type="Edm.Boolean" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TopLevelId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ActionObjectReferences" Relationship="SAPJam.FeedEntry_ActionObjectReferences" FromRole="FeedEntry_Source" ToRole="ObjectReference_Target"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.FeedEntry_AtMentions" FromRole="FeedEntry_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="ConsolidatedEntries" Relationship="SAPJam.FeedEntry_ConsolidatedEntries" FromRole="FeedEntry_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.FeedEntry_Creator" FromRole="FeedEntry_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.FeedEntry_Group" FromRole="FeedEntry_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="LastReply" Relationship="SAPJam.FeedEntry_LastReply" FromRole="FeedEntry_Source" ToRole="Comment_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.FeedEntry_Likers" FromRole="FeedEntry_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="PreviewImage" Relationship="SAPJam.FeedEntry_PreviewImage" FromRole="FeedEntry_Source" ToRole="FeedEntryImage_Target"/>
        <NavigationProperty Name="Replies" Relationship="SAPJam.FeedEntry_Replies" FromRole="FeedEntry_Source" ToRole="Comment_Target"/>
        <NavigationProperty Name="TargetObjectReference" Relationship="SAPJam.FeedEntry_TargetObjectReference" FromRole="FeedEntry_Source" ToRole="ObjectReference_Target"/>
        <NavigationProperty Name="ThumbnailImage" Relationship="SAPJam.FeedEntry_ThumbnailImage" FromRole="FeedEntry_Source" ToRole="ThumbnailImage_Target"/>
      </EntityType>
      <EntityType Name="FeedEntryImage" m:HasStream="true">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="FeedFilter">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.FeedFilter_FeedEntries" FromRole="FeedFilter_Source" ToRole="FeedEntry_Target"/>
      </EntityType>
      <EntityType Name="Folder">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="FolderType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FolderType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="true"/>
        <Property Name="IsPrivate" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ContentItems" Relationship="SAPJam.Folder_ContentItems" FromRole="Folder_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="ContentListItems" Relationship="SAPJam.Folder_ContentListItems" FromRole="Folder_Source" ToRole="ContentListItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Folder_Creator" FromRole="Folder_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Folders" Relationship="SAPJam.Folder_Folders" FromRole="Folder_Source" ToRole="Folder_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Folder_Group" FromRole="Folder_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="LastModifier" Relationship="SAPJam.Folder_LastModifier" FromRole="Folder_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="ParentFolder" Relationship="SAPJam.Folder_ParentFolder" FromRole="Folder_Source" ToRole="Folder_Target"/>
        <NavigationProperty Name="PrivateFolderMembers" Relationship="SAPJam.Folder_PrivateFolderMembers" FromRole="Folder_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="Forum">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Type" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Forum_Creator" FromRole="Forum_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Discussions" Relationship="SAPJam.Forum_Discussions" FromRole="Forum_Source" ToRole="Discussion_Target"/>
        <NavigationProperty Name="ForumItems" Relationship="SAPJam.Forum_ForumItems" FromRole="Forum_Source" ToRole="ForumItem_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Forum_Group" FromRole="Forum_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Ideas" Relationship="SAPJam.Forum_Ideas" FromRole="Forum_Source" ToRole="Idea_Target"/>
        <NavigationProperty Name="Questions" Relationship="SAPJam.Forum_Questions" FromRole="Forum_Source" ToRole="Question_Target"/>
      </EntityType>
      <EntityType Name="ForumItem">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ForumItemType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastActivity" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.ForumItem_Creator" FromRole="ForumItem_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Discussion" Relationship="SAPJam.ForumItem_Discussion" FromRole="ForumItem_Source" ToRole="Discussion_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.ForumItem_Group" FromRole="ForumItem_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Idea" Relationship="SAPJam.ForumItem_Idea" FromRole="ForumItem_Source" ToRole="Idea_Target"/>
        <NavigationProperty Name="Question" Relationship="SAPJam.ForumItem_Question" FromRole="ForumItem_Source" ToRole="Question_Target"/>
      </EntityType>
      <EntityType Name="Group">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="true" sap:updatable="true"/>
        <Property Name="Description" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="IsActive" Type="Edm.Boolean" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="true"/>
        <Property Name="AutoSubscribe" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Announcement" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="OverviewAsLanding" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="Participation" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="InvitePolicy" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="UploadPolicy" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="ModerationPolicy" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="GroupType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastActivityAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="MembersCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="AutoGroup" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="DisableAtNotify" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="TermsOfUse" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="WebURL" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="QuestionsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="IdeasVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="DiscussionsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="TasksVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="EventsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LinksVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="SubgroupsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="RecommendationsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="HasOverview" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TaskPolicy" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsAdmin" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EmailFrequency" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AllContentItems" Relationship="SAPJam.Group_AllContentItems" FromRole="Group_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="AllDiscussions" Relationship="SAPJam.Group_AllDiscussions" FromRole="Group_Source" ToRole="Discussion_Target"/>
        <NavigationProperty Name="AllFolders" Relationship="SAPJam.Group_AllFolders" FromRole="Group_Source" ToRole="Folder_Target"/>
        <NavigationProperty Name="AllIdeas" Relationship="SAPJam.Group_AllIdeas" FromRole="Group_Source" ToRole="Idea_Target"/>
        <NavigationProperty Name="AllQuestions" Relationship="SAPJam.Group_AllQuestions" FromRole="Group_Source" ToRole="Question_Target"/>
        <NavigationProperty Name="ContentItems" Relationship="SAPJam.Group_ContentItems" FromRole="Group_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="ContentListItems" Relationship="SAPJam.Group_ContentListItems" FromRole="Group_Source" ToRole="ContentListItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Group_Creator" FromRole="Group_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="FeaturedExternalObjects" Relationship="SAPJam.Group_FeaturedExternalObjects" FromRole="Group_Source" ToRole="ExternalObject_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.Group_FeedEntries" FromRole="Group_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Folders" Relationship="SAPJam.Group_Folders" FromRole="Group_Source" ToRole="Folder_Target"/>
        <NavigationProperty Name="Forums" Relationship="SAPJam.Group_Forums" FromRole="Group_Source" ToRole="Forum_Target"/>
        <NavigationProperty Name="Memberships" Relationship="SAPJam.Group_Memberships" FromRole="Group_Source" ToRole="GroupMembership_Target"/>
        <NavigationProperty Name="ParentGroup" Relationship="SAPJam.Group_ParentGroup" FromRole="Group_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="PrimaryExternalObject" Relationship="SAPJam.Group_PrimaryExternalObject" FromRole="Group_Source" ToRole="ExternalObject_Target"/>
        <NavigationProperty Name="PrimaryGadgetObject" Relationship="SAPJam.Group_PrimaryGadgetObject" FromRole="Group_Source" ToRole="GroupGadgetObject_Target"/>
        <NavigationProperty Name="ProfilePhoto" Relationship="SAPJam.Group_ProfilePhoto" FromRole="Group_Source" ToRole="Image_Target"/>
        <NavigationProperty Name="SubGroups" Relationship="SAPJam.Group_SubGroups" FromRole="Group_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Tasks" Relationship="SAPJam.Group_Tasks" FromRole="Group_Source" ToRole="Task_Target"/>
        <NavigationProperty Name="Template" Relationship="SAPJam.Group_Template" FromRole="Group_Source" ToRole="GroupTemplate_Target"/>
        <NavigationProperty Name="UpcomingEvents" Relationship="SAPJam.Group_UpcomingEvents" FromRole="Group_Source" ToRole="Event_Target"/>
      </EntityType>
      <EntityType Name="GroupExternalObject">
        <Key>
          <PropertyRef Name="GroupId"/>
          <PropertyRef Name="ExternalObjectId"/>
        </Key>
        <Property Name="GroupId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ExternalObjectId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LinkType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.GroupExternalObject_FeedEntries" FromRole="GroupExternalObject_Source" ToRole="FeedEntry_Target"/>
      </EntityType>
      <EntityType Name="GroupGadget">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="GroupGadgetObject">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="InitializingDataJSON" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.GroupGadgetObject_FeedEntries" FromRole="GroupGadgetObject_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.GroupGadgetObject_Group" FromRole="GroupGadgetObject_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="GroupGadget" Relationship="SAPJam.GroupGadgetObject_GroupGadget" FromRole="GroupGadgetObject_Source" ToRole="GroupGadget_Target"/>
      </EntityType>
      <EntityType Name="GroupMembership">
        <Key>
          <PropertyRef Name="GroupId"/>
          <PropertyRef Name="MemberId"/>
        </Key>
        <Property Name="GroupId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="MemberId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="MemberType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Member" Relationship="SAPJam.GroupMembership_Member" FromRole="GroupMembership_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="GroupTemplate">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="GroupTemplateType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="GroupTemplateType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="Idea">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Content" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Status" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="true"/>
        <Property Name="UpVotes" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="DownVotes" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TotalVotes" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="Vote" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastActivity" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.Idea_AtMentions" FromRole="Idea_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Attachments" Relationship="SAPJam.Idea_Attachments" FromRole="Idea_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Idea_Creator" FromRole="Idea_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Forum" Relationship="SAPJam.Idea_Forum" FromRole="Idea_Source" ToRole="Forum_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Idea_Group" FromRole="Idea_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Posts" Relationship="SAPJam.Idea_Posts" FromRole="Idea_Source" ToRole="WallComment_Target"/>
      </EntityType>
      <EntityType Name="Image" m:HasStream="true">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="Kudo">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="KudoType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="UpdatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="KudoType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ThumbnailKudoImage" Relationship="SAPJam.Kudo_ThumbnailKudoImage" FromRole="Kudo_Source" ToRole="ThumbnailKudoImage_Target"/>
      </EntityType>
      <EntityType Name="Member">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FirstName" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastName" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Nickname" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Email" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FullName" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Role" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsFollowing" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="WebURL" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsAway" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Assistants" Relationship="SAPJam.Member_Assistants" FromRole="Member_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="AwayAlerts" Relationship="SAPJam.Member_AwayAlerts" FromRole="Member_Source" ToRole="AwayAlert_Target"/>
        <NavigationProperty Name="DirectReports" Relationship="SAPJam.Member_DirectReports" FromRole="Member_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.Member_FeedEntries" FromRole="Member_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Followers" Relationship="SAPJam.Member_Followers" FromRole="Member_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Following" Relationship="SAPJam.Member_Following" FromRole="Member_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Managers" Relationship="SAPJam.Member_Managers" FromRole="Member_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="MemberKudos" Relationship="SAPJam.Member_MemberKudos" FromRole="Member_Source" ToRole="MemberKudo_Target"/>
        <NavigationProperty Name="MemberProfile" Relationship="SAPJam.Member_MemberProfile" FromRole="Member_Source" ToRole="MemberProfile_Target"/>
        <NavigationProperty Name="ProfilePhoto" Relationship="SAPJam.Member_ProfilePhoto" FromRole="Member_Source" ToRole="Image_Target"/>
        <NavigationProperty Name="ThumbnailImage" Relationship="SAPJam.Member_ThumbnailImage" FromRole="Member_Source" ToRole="ThumbnailImage_Target"/>
      </EntityType>
      <EntityType Name="MemberKudo">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Comment" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="KudoType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsVisible" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Kudo" Relationship="SAPJam.MemberKudo_Kudo" FromRole="MemberKudo_Source" ToRole="Kudo_Target"/>
        <NavigationProperty Name="Sender" Relationship="SAPJam.MemberKudo_Sender" FromRole="MemberKudo_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="MemberProfile">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FollowersCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FollowingCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="PrimaryEmailAddress" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Twitter" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Address" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="PhoneNumbers" Relationship="SAPJam.MemberProfile_PhoneNumbers" FromRole="MemberProfile_Source" ToRole="PhoneNumber_Target"/>
        <NavigationProperty Name="SecondaryEmailAddresses" Relationship="SAPJam.MemberProfile_SecondaryEmailAddresses" FromRole="MemberProfile_Source" ToRole="SecondaryEmailAddress_Target"/>
      </EntityType>
      <EntityType Name="MirrorLink">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="MirrorLinkType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="MirrorLinkType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="ContentItem" Relationship="SAPJam.MirrorLink_ContentItem" FromRole="MirrorLink_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.MirrorLink_Creator" FromRole="MirrorLink_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="Notification">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EventType" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Message" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Read" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="AcceptText" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="RejectText" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Category" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="FeedEntry" Relationship="SAPJam.Notification_FeedEntry" FromRole="Notification_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Notification_Group" FromRole="Notification_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="ObjectReference" Relationship="SAPJam.Notification_ObjectReference" FromRole="Notification_Source" ToRole="ObjectReference_Target"/>
        <NavigationProperty Name="Sender" Relationship="SAPJam.Notification_Sender" FromRole="Notification_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="ObjectReference">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="Type"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Type" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="WebURL" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ODataURL" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FullPath" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="PhoneNumber">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="PhoneNumber" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="PhoneNumberType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsPrimary" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Member" Relationship="SAPJam.PhoneNumber_Member" FromRole="PhoneNumber_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="Question">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Name" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Content" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="AnswersCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="HasBestAnswer" Type="Edm.Boolean" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastActivity" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="false"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Answers" Relationship="SAPJam.Question_Answers" FromRole="Question_Source" ToRole="WallComment_Target"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.Question_AtMentions" FromRole="Question_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Attachments" Relationship="SAPJam.Question_Attachments" FromRole="Question_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="BestAnswer" Relationship="SAPJam.Question_BestAnswer" FromRole="Question_Source" ToRole="WallComment_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Question_Creator" FromRole="Question_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Forum" Relationship="SAPJam.Question_Forum" FromRole="Question_Source" ToRole="Forum_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Question_Group" FromRole="Question_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.Question_Likers" FromRole="Question_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="SearchResult">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ViewsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="FollowersCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsFeatured" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Tags" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.SearchResult_Creator" FromRole="SearchResult_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Featurer" Relationship="SAPJam.SearchResult_Featurer" FromRole="SearchResult_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.SearchResult_Group" FromRole="SearchResult_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="ObjectReference" Relationship="SAPJam.SearchResult_ObjectReference" FromRole="SearchResult_Source" ToRole="ObjectReference_Target"/>
      </EntityType>
      <EntityType Name="SearchSummary">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TotalCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="PeopleCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="GroupsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ForumsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CommentsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TasksCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EventsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ExObjsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentBlogPostsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentDocumentsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentVideosCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentAudiosCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentImagesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentLinksCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentWikiPagesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentBusinessToolsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ContentPollsCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Results" Relationship="SAPJam.SearchSummary_Results" FromRole="SearchSummary_Source" ToRole="SearchResult_Target"/>
      </EntityType>
      <EntityType Name="SecondaryEmailAddress">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EmailAddress" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="EmailAddressType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="IsPrimary" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Member" Relationship="SAPJam.SecondaryEmailAddress_Member" FromRole="SecondaryEmailAddress_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="SystemGroupTemplate">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="Task">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Description" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Title" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="DueAt" Type="Edm.DateTimeOffset" Nullable="true" sap:filterable="false" sap:sortable="true" sap:updatable="true"/>
        <Property Name="Priority" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="true" sap:updatable="true"/>
        <Property Name="Reminder" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="IsOverdue" Type="Edm.Boolean" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Assignments" Relationship="SAPJam.Task_Assignments" FromRole="Task_Source" ToRole="TaskAssignment_Target"/>
        <NavigationProperty Name="Attachments" Relationship="SAPJam.Task_Attachments" FromRole="Task_Source" ToRole="ContentItem_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.Task_Creator" FromRole="Task_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Event" Relationship="SAPJam.Task_Event" FromRole="Task_Source" ToRole="Event_Target"/>
        <NavigationProperty Name="FeedEntries" Relationship="SAPJam.Task_FeedEntries" FromRole="Task_Source" ToRole="FeedEntry_Target"/>
        <NavigationProperty Name="Followers" Relationship="SAPJam.Task_Followers" FromRole="Task_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.Task_Group" FromRole="Task_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="PendingFollowers" Relationship="SAPJam.Task_PendingFollowers" FromRole="Task_Source" ToRole="Member_Target"/>
      </EntityType>
      <EntityType Name="TaskAssignment">
        <Key>
          <PropertyRef Name="AssigneeId"/>
          <PropertyRef Name="TaskId"/>
        </Key>
        <Property Name="Status" Type="Edm.String" Nullable="false" sap:filterable="true" sap:sortable="false" sap:updatable="true"/>
        <Property Name="AssigneeId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="TaskId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="AssignerId" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="Assignee" Relationship="SAPJam.TaskAssignment_Assignee" FromRole="TaskAssignment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Assigner" Relationship="SAPJam.TaskAssignment_Assigner" FromRole="TaskAssignment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Group" Relationship="SAPJam.TaskAssignment_Group" FromRole="TaskAssignment_Source" ToRole="Group_Target"/>
        <NavigationProperty Name="Task" Relationship="SAPJam.TaskAssignment_Task" FromRole="TaskAssignment_Source" ToRole="Task_Target"/>
      </EntityType>
      <EntityType Name="ThumbnailImage" m:HasStream="true">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="ThumbnailImageType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ThumbnailImageType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="ThumbnailKudoImage" m:HasStream="true">
        <Key>
          <PropertyRef Name="Id"/>
          <PropertyRef Name="ThumbnailImageType"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ThumbnailImageType" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
      </EntityType>
      <EntityType Name="WallComment">
        <Key>
          <PropertyRef Name="Id"/>
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Comment" Type="Edm.String" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="CommentWithPlaceholders" Type="Edm.String" Nullable="true" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="Liked" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="true"/>
        <Property Name="LikesCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="ReplyCount" Type="Edm.Int32" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CreatedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="LastModifiedAt" Type="Edm.DateTimeOffset" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <Property Name="CanDelete" Type="Edm.Boolean" Nullable="false" sap:filterable="false" sap:sortable="false" sap:updatable="false"/>
        <NavigationProperty Name="AtMentions" Relationship="SAPJam.WallComment_AtMentions" FromRole="WallComment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Comments" Relationship="SAPJam.WallComment_Comments" FromRole="WallComment_Source" ToRole="Comment_Target"/>
        <NavigationProperty Name="Creator" Relationship="SAPJam.WallComment_Creator" FromRole="WallComment_Source" ToRole="Member_Target"/>
        <NavigationProperty Name="Likers" Relationship="SAPJam.WallComment_Likers" FromRole="WallComment_Source" ToRole="Member_Target"/>
      </EntityType>
      <Association Name="Activity_AtMentions">
        <End Role="Activity_Source" Type="SAPJam.Activity" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Activity_Distribution">
        <End Role="Activity_Source" Type="SAPJam.Activity" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Activity_FeedEntry">
        <End Role="Activity_Source" Type="SAPJam.Activity" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
      </Association>
      <Association Name="Activity_Object">
        <End Role="Activity_Source" Type="SAPJam.Activity" Multiplicity="0..1"/>
        <End Role="ExternalObject_Target" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
      </Association>
      <Association Name="AwayAlert_Creator">
        <End Role="AwayAlert_Source" Type="SAPJam.AwayAlert" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Comment_AtMentions">
        <End Role="Comment_Source" Type="SAPJam.Comment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Comment_Creator">
        <End Role="Comment_Source" Type="SAPJam.Comment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Comment_Likers">
        <End Role="Comment_Source" Type="SAPJam.Comment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Comment_ThumbnailImage">
        <End Role="Comment_Source" Type="SAPJam.Comment" Multiplicity="0..1"/>
        <End Role="ThumbnailImage_Target" Type="SAPJam.ThumbnailImage" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentItem_CheckedOutByMembers">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="ContentItem_Creator">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentItem_FeedEntries">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="ContentItem_Group">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentItem_LastModifier">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentItem_Likers">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="ContentItem_MirrorSource">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="MirrorLink_Target" Type="SAPJam.MirrorLink" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentItem_Mirrors">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="MirrorLink_Target" Type="SAPJam.MirrorLink" Multiplicity="*"/>
      </Association>
      <Association Name="ContentItem_ParentFolder">
        <End Role="ContentItem_Source" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentListItem_ContentItem">
        <End Role="ContentListItem_Source" Type="SAPJam.ContentListItem" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentListItem_Folder">
        <End Role="ContentListItem_Source" Type="SAPJam.ContentListItem" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="0..1"/>
      </Association>
      <Association Name="ContentListItem_LastModifier">
        <End Role="ContentListItem_Source" Type="SAPJam.ContentListItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Discussion_AtMentions">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Discussion_Attachments">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Discussion_Comments">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Comment_Target" Type="SAPJam.Comment" Multiplicity="*"/>
      </Association>
      <Association Name="Discussion_Creator">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Discussion_Forum">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Forum_Target" Type="SAPJam.Forum" Multiplicity="0..1"/>
      </Association>
      <Association Name="Discussion_Group">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Discussion_Likers">
        <End Role="Discussion_Source" Type="SAPJam.Discussion" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="EventResponse_Event">
        <End Role="EventResponse_Source" Type="SAPJam.EventResponse" Multiplicity="0..1"/>
        <End Role="Event_Target" Type="SAPJam.Event" Multiplicity="0..1"/>
      </Association>
      <Association Name="EventResponse_FeedEntries">
        <End Role="EventResponse_Source" Type="SAPJam.EventResponse" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="EventResponse_Organizer">
        <End Role="EventResponse_Source" Type="SAPJam.EventResponse" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="EventResponse_Respondent">
        <End Role="EventResponse_Source" Type="SAPJam.EventResponse" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Event_Attachments">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Event_Creator">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Event_FeedEntries">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="Event_Group">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Event_Invitees">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Event_Likers">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Event_MemberResponse">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="EventResponse_Target" Type="SAPJam.EventResponse" Multiplicity="0..1"/>
      </Association>
      <Association Name="Event_Responses">
        <End Role="Event_Source" Type="SAPJam.Event" Multiplicity="0..1"/>
        <End Role="EventResponse_Target" Type="SAPJam.EventResponse" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalApplication_ExternalObjectTypes">
        <End Role="ExternalApplication_Source" Type="SAPJam.ExternalApplication" Multiplicity="0..1"/>
        <End Role="ExternalObjectType_Target" Type="SAPJam.ExternalObjectType" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalObjectType_ExternalApplication">
        <End Role="ExternalObjectType_Source" Type="SAPJam.ExternalObjectType" Multiplicity="0..1"/>
        <End Role="ExternalApplication_Target" Type="SAPJam.ExternalApplication" Multiplicity="0..1"/>
      </Association>
      <Association Name="ExternalObjectType_ExternalObjects">
        <End Role="ExternalObjectType_Source" Type="SAPJam.ExternalObjectType" Multiplicity="0..1"/>
        <End Role="ExternalObject_Target" Type="SAPJam.ExternalObject" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalObjectType_Templates">
        <End Role="ExternalObjectType_Source" Type="SAPJam.ExternalObjectType" Multiplicity="0..1"/>
        <End Role="GroupTemplate_Target" Type="SAPJam.GroupTemplate" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalObject_ExternalObjectType">
        <End Role="ExternalObject_Source" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
        <End Role="ExternalObjectType_Target" Type="SAPJam.ExternalObjectType" Multiplicity="0..1"/>
      </Association>
      <Association Name="ExternalObject_FeedEntries">
        <End Role="ExternalObject_Source" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalObject_Groups">
        <End Role="ExternalObject_Source" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="*"/>
      </Association>
      <Association Name="ExternalObject_Templates">
        <End Role="ExternalObject_Source" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
        <End Role="GroupTemplate_Target" Type="SAPJam.GroupTemplate" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_ActionObjectReferences">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="ObjectReference_Target" Type="SAPJam.ObjectReference" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_AtMentions">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_ConsolidatedEntries">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_Creator">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedEntry_Group">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedEntry_LastReply">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Comment_Target" Type="SAPJam.Comment" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedEntry_Likers">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_PreviewImage">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="FeedEntryImage_Target" Type="SAPJam.FeedEntryImage" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedEntry_Replies">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="Comment_Target" Type="SAPJam.Comment" Multiplicity="*"/>
      </Association>
      <Association Name="FeedEntry_TargetObjectReference">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="ObjectReference_Target" Type="SAPJam.ObjectReference" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedEntry_ThumbnailImage">
        <End Role="FeedEntry_Source" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
        <End Role="ThumbnailImage_Target" Type="SAPJam.ThumbnailImage" Multiplicity="0..1"/>
      </Association>
      <Association Name="FeedFilter_FeedEntries">
        <End Role="FeedFilter_Source" Type="SAPJam.FeedFilter" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="Folder_ContentItems">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Folder_ContentListItems">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="ContentListItem_Target" Type="SAPJam.ContentListItem" Multiplicity="*"/>
      </Association>
      <Association Name="Folder_Creator">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Folder_Folders">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="*"/>
      </Association>
      <Association Name="Folder_Group">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Folder_LastModifier">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Folder_ParentFolder">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="0..1"/>
      </Association>
      <Association Name="Folder_PrivateFolderMembers">
        <End Role="Folder_Source" Type="SAPJam.Folder" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="ForumItem_Creator">
        <End Role="ForumItem_Source" Type="SAPJam.ForumItem" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="ForumItem_Discussion">
        <End Role="ForumItem_Source" Type="SAPJam.ForumItem" Multiplicity="0..1"/>
        <End Role="Discussion_Target" Type="SAPJam.Discussion" Multiplicity="0..1"/>
      </Association>
      <Association Name="ForumItem_Group">
        <End Role="ForumItem_Source" Type="SAPJam.ForumItem" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="ForumItem_Idea">
        <End Role="ForumItem_Source" Type="SAPJam.ForumItem" Multiplicity="0..1"/>
        <End Role="Idea_Target" Type="SAPJam.Idea" Multiplicity="0..1"/>
      </Association>
      <Association Name="ForumItem_Question">
        <End Role="ForumItem_Source" Type="SAPJam.ForumItem" Multiplicity="0..1"/>
        <End Role="Question_Target" Type="SAPJam.Question" Multiplicity="0..1"/>
      </Association>
      <Association Name="Forum_Creator">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Forum_Discussions">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="Discussion_Target" Type="SAPJam.Discussion" Multiplicity="*"/>
      </Association>
      <Association Name="Forum_ForumItems">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="ForumItem_Target" Type="SAPJam.ForumItem" Multiplicity="*"/>
      </Association>
      <Association Name="Forum_Group">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Forum_Ideas">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="Idea_Target" Type="SAPJam.Idea" Multiplicity="*"/>
      </Association>
      <Association Name="Forum_Questions">
        <End Role="Forum_Source" Type="SAPJam.Forum" Multiplicity="0..1"/>
        <End Role="Question_Target" Type="SAPJam.Question" Multiplicity="*"/>
      </Association>
      <Association Name="GroupExternalObject_FeedEntries">
        <End Role="GroupExternalObject_Source" Type="SAPJam.GroupExternalObject" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="GroupGadgetObject_FeedEntries">
        <End Role="GroupGadgetObject_Source" Type="SAPJam.GroupGadgetObject" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="GroupGadgetObject_Group">
        <End Role="GroupGadgetObject_Source" Type="SAPJam.GroupGadgetObject" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="GroupGadgetObject_GroupGadget">
        <End Role="GroupGadgetObject_Source" Type="SAPJam.GroupGadgetObject" Multiplicity="0..1"/>
        <End Role="GroupGadget_Target" Type="SAPJam.GroupGadget" Multiplicity="0..1"/>
      </Association>
      <Association Name="GroupMembership_Member">
        <End Role="GroupMembership_Source" Type="SAPJam.GroupMembership" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_AllContentItems">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Group_AllDiscussions">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Discussion_Target" Type="SAPJam.Discussion" Multiplicity="*"/>
      </Association>
      <Association Name="Group_AllFolders">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="*"/>
      </Association>
      <Association Name="Group_AllIdeas">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Idea_Target" Type="SAPJam.Idea" Multiplicity="*"/>
      </Association>
      <Association Name="Group_AllQuestions">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Question_Target" Type="SAPJam.Question" Multiplicity="*"/>
      </Association>
      <Association Name="Group_ContentItems">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Group_ContentListItems">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="ContentListItem_Target" Type="SAPJam.ContentListItem" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Creator">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_FeaturedExternalObjects">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="*"/>
        <End Role="ExternalObject_Target" Type="SAPJam.ExternalObject" Multiplicity="*"/>
      </Association>
      <Association Name="Group_FeedEntries">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Folders">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Folder_Target" Type="SAPJam.Folder" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Forums">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Forum_Target" Type="SAPJam.Forum" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Memberships">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="GroupMembership_Target" Type="SAPJam.GroupMembership" Multiplicity="*"/>
      </Association>
      <Association Name="Group_ParentGroup">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_PrimaryExternalObject">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="ExternalObject_Target" Type="SAPJam.ExternalObject" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_PrimaryGadgetObject">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="GroupGadgetObject_Target" Type="SAPJam.GroupGadgetObject" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_ProfilePhoto">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Image_Target" Type="SAPJam.Image" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_SubGroups">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Tasks">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Task_Target" Type="SAPJam.Task" Multiplicity="*"/>
      </Association>
      <Association Name="Group_Template">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="GroupTemplate_Target" Type="SAPJam.GroupTemplate" Multiplicity="0..1"/>
      </Association>
      <Association Name="Group_UpcomingEvents">
        <End Role="Group_Source" Type="SAPJam.Group" Multiplicity="0..1"/>
        <End Role="Event_Target" Type="SAPJam.Event" Multiplicity="*"/>
      </Association>
      <Association Name="Idea_AtMentions">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Idea_Attachments">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Idea_Creator">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Idea_Forum">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="Forum_Target" Type="SAPJam.Forum" Multiplicity="0..1"/>
      </Association>
      <Association Name="Idea_Group">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Idea_Posts">
        <End Role="Idea_Source" Type="SAPJam.Idea" Multiplicity="0..1"/>
        <End Role="WallComment_Target" Type="SAPJam.WallComment" Multiplicity="*"/>
      </Association>
      <Association Name="Kudo_ThumbnailKudoImage">
        <End Role="Kudo_Source" Type="SAPJam.Kudo" Multiplicity="0..1"/>
        <End Role="ThumbnailKudoImage_Target" Type="SAPJam.ThumbnailKudoImage" Multiplicity="0..1"/>
      </Association>
      <Association Name="MemberKudo_Kudo">
        <End Role="MemberKudo_Source" Type="SAPJam.MemberKudo" Multiplicity="0..1"/>
        <End Role="Kudo_Target" Type="SAPJam.Kudo" Multiplicity="0..1"/>
      </Association>
      <Association Name="MemberKudo_Sender">
        <End Role="MemberKudo_Source" Type="SAPJam.MemberKudo" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="MemberProfile_PhoneNumbers">
        <End Role="MemberProfile_Source" Type="SAPJam.MemberProfile" Multiplicity="0..1"/>
        <End Role="PhoneNumber_Target" Type="SAPJam.PhoneNumber" Multiplicity="*"/>
      </Association>
      <Association Name="MemberProfile_SecondaryEmailAddresses">
        <End Role="MemberProfile_Source" Type="SAPJam.MemberProfile" Multiplicity="0..1"/>
        <End Role="SecondaryEmailAddress_Target" Type="SAPJam.SecondaryEmailAddress" Multiplicity="*"/>
      </Association>
      <Association Name="Member_Assistants">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Member_AwayAlerts">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="AwayAlert_Target" Type="SAPJam.AwayAlert" Multiplicity="*"/>
      </Association>
      <Association Name="Member_DirectReports">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Member_FeedEntries">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="Member_Followers">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="*"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Member_Following">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Member_Managers">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Member_MemberKudos">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="MemberKudo_Target" Type="SAPJam.MemberKudo" Multiplicity="*"/>
      </Association>
      <Association Name="Member_MemberProfile">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="MemberProfile_Target" Type="SAPJam.MemberProfile" Multiplicity="0..1"/>
      </Association>
      <Association Name="Member_ProfilePhoto">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="Image_Target" Type="SAPJam.Image" Multiplicity="0..1"/>
      </Association>
      <Association Name="Member_ThumbnailImage">
        <End Role="Member_Source" Type="SAPJam.Member" Multiplicity="0..1"/>
        <End Role="ThumbnailImage_Target" Type="SAPJam.ThumbnailImage" Multiplicity="0..1"/>
      </Association>
      <Association Name="MirrorLink_ContentItem">
        <End Role="MirrorLink_Source" Type="SAPJam.MirrorLink" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="0..1"/>
      </Association>
      <Association Name="MirrorLink_Creator">
        <End Role="MirrorLink_Source" Type="SAPJam.MirrorLink" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Notification_FeedEntry">
        <End Role="Notification_Source" Type="SAPJam.Notification" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="0..1"/>
      </Association>
      <Association Name="Notification_Group">
        <End Role="Notification_Source" Type="SAPJam.Notification" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Notification_ObjectReference">
        <End Role="Notification_Source" Type="SAPJam.Notification" Multiplicity="0..1"/>
        <End Role="ObjectReference_Target" Type="SAPJam.ObjectReference" Multiplicity="0..1"/>
      </Association>
      <Association Name="Notification_Sender">
        <End Role="Notification_Source" Type="SAPJam.Notification" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="PhoneNumber_Member">
        <End Role="PhoneNumber_Source" Type="SAPJam.PhoneNumber" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Question_Answers">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="WallComment_Target" Type="SAPJam.WallComment" Multiplicity="*"/>
      </Association>
      <Association Name="Question_AtMentions">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Question_Attachments">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Question_BestAnswer">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="WallComment_Target" Type="SAPJam.WallComment" Multiplicity="0..1"/>
      </Association>
      <Association Name="Question_Creator">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Question_Forum">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="Forum_Target" Type="SAPJam.Forum" Multiplicity="0..1"/>
      </Association>
      <Association Name="Question_Group">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Question_Likers">
        <End Role="Question_Source" Type="SAPJam.Question" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="SearchResult_Creator">
        <End Role="SearchResult_Source" Type="SAPJam.SearchResult" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="SearchResult_Featurer">
        <End Role="SearchResult_Source" Type="SAPJam.SearchResult" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="SearchResult_Group">
        <End Role="SearchResult_Source" Type="SAPJam.SearchResult" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="SearchResult_ObjectReference">
        <End Role="SearchResult_Source" Type="SAPJam.SearchResult" Multiplicity="0..1"/>
        <End Role="ObjectReference_Target" Type="SAPJam.ObjectReference" Multiplicity="0..1"/>
      </Association>
      <Association Name="SearchSummary_Results">
        <End Role="SearchSummary_Source" Type="SAPJam.SearchSummary" Multiplicity="0..1"/>
        <End Role="SearchResult_Target" Type="SAPJam.SearchResult" Multiplicity="*"/>
      </Association>
      <Association Name="SecondaryEmailAddress_Member">
        <End Role="SecondaryEmailAddress_Source" Type="SAPJam.SecondaryEmailAddress" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="TaskAssignment_Assignee">
        <End Role="TaskAssignment_Source" Type="SAPJam.TaskAssignment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="TaskAssignment_Assigner">
        <End Role="TaskAssignment_Source" Type="SAPJam.TaskAssignment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="TaskAssignment_Group">
        <End Role="TaskAssignment_Source" Type="SAPJam.TaskAssignment" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="TaskAssignment_Task">
        <End Role="TaskAssignment_Source" Type="SAPJam.TaskAssignment" Multiplicity="0..1"/>
        <End Role="Task_Target" Type="SAPJam.Task" Multiplicity="0..1"/>
      </Association>
      <Association Name="Task_Assignments">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="TaskAssignment_Target" Type="SAPJam.TaskAssignment" Multiplicity="*"/>
      </Association>
      <Association Name="Task_Attachments">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="ContentItem_Target" Type="SAPJam.ContentItem" Multiplicity="*"/>
      </Association>
      <Association Name="Task_Creator">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="Task_Event">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="Event_Target" Type="SAPJam.Event" Multiplicity="0..1"/>
      </Association>
      <Association Name="Task_FeedEntries">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="FeedEntry_Target" Type="SAPJam.FeedEntry" Multiplicity="*"/>
      </Association>
      <Association Name="Task_Followers">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="Task_Group">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="Group_Target" Type="SAPJam.Group" Multiplicity="0..1"/>
      </Association>
      <Association Name="Task_PendingFollowers">
        <End Role="Task_Source" Type="SAPJam.Task" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="WallComment_AtMentions">
        <End Role="WallComment_Source" Type="SAPJam.WallComment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <Association Name="WallComment_Comments">
        <End Role="WallComment_Source" Type="SAPJam.WallComment" Multiplicity="0..1"/>
        <End Role="Comment_Target" Type="SAPJam.Comment" Multiplicity="*"/>
      </Association>
      <Association Name="WallComment_Creator">
        <End Role="WallComment_Source" Type="SAPJam.WallComment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="0..1"/>
      </Association>
      <Association Name="WallComment_Likers">
        <End Role="WallComment_Source" Type="SAPJam.WallComment" Multiplicity="0..1"/>
        <End Role="Member_Target" Type="SAPJam.Member" Multiplicity="*"/>
      </Association>
      <EntityContainer Name="SAPJam" m:IsDefaultEntityContainer="true">
        <EntitySet Name="Activities" EntityType="SAPJam.Activity" sap:creatable="true" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="AwayAlerts" EntityType="SAPJam.AwayAlert" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Comments" EntityType="SAPJam.Comment" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="Companies" EntityType="SAPJam.Company" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ContentItems" EntityType="SAPJam.ContentItem" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="ContentListItems" EntityType="SAPJam.ContentListItem" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="CustomGroupTemplates" EntityType="SAPJam.CustomGroupTemplate" sap:creatable="false" sap:updatable="true" sap:deletable="false"/>
        <EntitySet Name="Discussions" EntityType="SAPJam.Discussion" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="Events" EntityType="SAPJam.Event" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="EventResponses" EntityType="SAPJam.EventResponse" sap:creatable="true" sap:updatable="true" sap:deletable="false"/>
        <EntitySet Name="ExternalApplications" EntityType="SAPJam.ExternalApplication" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ExternalObjects" EntityType="SAPJam.ExternalObject" sap:creatable="true" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ExternalObjectTypes" EntityType="SAPJam.ExternalObjectType" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="FeedEntries" EntityType="SAPJam.FeedEntry" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="FeedEntryImages" EntityType="SAPJam.FeedEntryImage" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="FeedFilters" EntityType="SAPJam.FeedFilter" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Folders" EntityType="SAPJam.Folder" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="Forums" EntityType="SAPJam.Forum" sap:creatable="true" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ForumItems" EntityType="SAPJam.ForumItem" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Groups" EntityType="SAPJam.Group" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="GroupExternalObjects" EntityType="SAPJam.GroupExternalObject" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="GroupGadgets" EntityType="SAPJam.GroupGadget" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="GroupGadgetObjects" EntityType="SAPJam.GroupGadgetObject" sap:creatable="true" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="GroupMemberships" EntityType="SAPJam.GroupMembership" sap:creatable="false" sap:updatable="false" sap:deletable="true"/>
        <EntitySet Name="GroupTemplates" EntityType="SAPJam.GroupTemplate" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Ideas" EntityType="SAPJam.Idea" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="Images" EntityType="SAPJam.Image" sap:creatable="true" sap:updatable="false" sap:deletable="true"/>
        <EntitySet Name="Kudos" EntityType="SAPJam.Kudo" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Members" EntityType="SAPJam.Member" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="MemberKudos" EntityType="SAPJam.MemberKudo" sap:creatable="true" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="MemberProfiles" EntityType="SAPJam.MemberProfile" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="MirrorLinks" EntityType="SAPJam.MirrorLink" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Notifications" EntityType="SAPJam.Notification" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ObjectReferences" EntityType="SAPJam.ObjectReference" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="PhoneNumbers" EntityType="SAPJam.PhoneNumber" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Questions" EntityType="SAPJam.Question" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="SearchResults" EntityType="SAPJam.SearchResult" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="SearchSummaries" EntityType="SAPJam.SearchSummary" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="SecondaryEmailAddresses" EntityType="SAPJam.SecondaryEmailAddress" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="SystemGroupTemplates" EntityType="SAPJam.SystemGroupTemplate" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="Tasks" EntityType="SAPJam.Task" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="TaskAssignments" EntityType="SAPJam.TaskAssignment" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <EntitySet Name="ThumbnailImages" EntityType="SAPJam.ThumbnailImage" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="ThumbnailKudoImages" EntityType="SAPJam.ThumbnailKudoImage" sap:creatable="false" sap:updatable="false" sap:deletable="false"/>
        <EntitySet Name="WallComments" EntityType="SAPJam.WallComment" sap:creatable="true" sap:updatable="true" sap:deletable="true"/>
        <AssociationSet Name="Activity_AtMentions" Association="SAPJam.Activity_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Activities" Role="Activity_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Activity_Distribution" Association="SAPJam.Activity_Distribution" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Activities" Role="Activity_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Activity_FeedEntry" Association="SAPJam.Activity_FeedEntry" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Activities" Role="Activity_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Activity_Object" Association="SAPJam.Activity_Object" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Activities" Role="Activity_Source"/>
          <End EntitySet="ExternalObjects" Role="ExternalObject_Target"/>
        </AssociationSet>
        <AssociationSet Name="AwayAlert_Creator" Association="SAPJam.AwayAlert_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="AwayAlerts" Role="AwayAlert_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Comment_AtMentions" Association="SAPJam.Comment_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Comments" Role="Comment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Comment_Creator" Association="SAPJam.Comment_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Comments" Role="Comment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Comment_Likers" Association="SAPJam.Comment_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Comments" Role="Comment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Comment_ThumbnailImage" Association="SAPJam.Comment_ThumbnailImage" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Comments" Role="Comment_Source"/>
          <End EntitySet="ThumbnailImages" Role="ThumbnailImage_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_CheckedOutByMembers" Association="SAPJam.ContentItem_CheckedOutByMembers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_Creator" Association="SAPJam.ContentItem_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_FeedEntries" Association="SAPJam.ContentItem_FeedEntries" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_Group" Association="SAPJam.ContentItem_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_LastModifier" Association="SAPJam.ContentItem_LastModifier" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_Likers" Association="SAPJam.ContentItem_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_MirrorSource" Association="SAPJam.ContentItem_MirrorSource" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="MirrorLinks" Role="MirrorLink_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_Mirrors" Association="SAPJam.ContentItem_Mirrors" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="MirrorLinks" Role="MirrorLink_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentItem_ParentFolder" Association="SAPJam.ContentItem_ParentFolder" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentItems" Role="ContentItem_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentListItem_ContentItem" Association="SAPJam.ContentListItem_ContentItem" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="ContentListItems" Role="ContentListItem_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentListItem_Folder" Association="SAPJam.ContentListItem_Folder" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentListItems" Role="ContentListItem_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="ContentListItem_LastModifier" Association="SAPJam.ContentListItem_LastModifier" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ContentListItems" Role="ContentListItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_AtMentions" Association="SAPJam.Discussion_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Attachments" Association="SAPJam.Discussion_Attachments" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Comments" Association="SAPJam.Discussion_Comments" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Comments" Role="Comment_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Creator" Association="SAPJam.Discussion_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Forum" Association="SAPJam.Discussion_Forum" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Forums" Role="Forum_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Group" Association="SAPJam.Discussion_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Discussion_Likers" Association="SAPJam.Discussion_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Discussions" Role="Discussion_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="EventResponse_Event" Association="SAPJam.EventResponse_Event" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="EventResponses" Role="EventResponse_Source"/>
          <End EntitySet="Events" Role="Event_Target"/>
        </AssociationSet>
        <AssociationSet Name="EventResponse_FeedEntries" Association="SAPJam.EventResponse_FeedEntries" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="EventResponses" Role="EventResponse_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="EventResponse_Organizer" Association="SAPJam.EventResponse_Organizer" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="EventResponses" Role="EventResponse_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="EventResponse_Respondent" Association="SAPJam.EventResponse_Respondent" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="EventResponses" Role="EventResponse_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Attachments" Association="SAPJam.Event_Attachments" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Creator" Association="SAPJam.Event_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_FeedEntries" Association="SAPJam.Event_FeedEntries" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Group" Association="SAPJam.Event_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Invitees" Association="SAPJam.Event_Invitees" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Likers" Association="SAPJam.Event_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_MemberResponse" Association="SAPJam.Event_MemberResponse" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="EventResponses" Role="EventResponse_Target"/>
        </AssociationSet>
        <AssociationSet Name="Event_Responses" Association="SAPJam.Event_Responses" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Events" Role="Event_Source"/>
          <End EntitySet="EventResponses" Role="EventResponse_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalApplication_ExternalObjectTypes" Association="SAPJam.ExternalApplication_ExternalObjectTypes" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalApplications" Role="ExternalApplication_Source"/>
          <End EntitySet="ExternalObjectTypes" Role="ExternalObjectType_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObjectType_ExternalApplication" Association="SAPJam.ExternalObjectType_ExternalApplication" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjectTypes" Role="ExternalObjectType_Source"/>
          <End EntitySet="ExternalApplications" Role="ExternalApplication_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObjectType_ExternalObjects" Association="SAPJam.ExternalObjectType_ExternalObjects" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjectTypes" Role="ExternalObjectType_Source"/>
          <End EntitySet="ExternalObjects" Role="ExternalObject_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObjectType_Templates" Association="SAPJam.ExternalObjectType_Templates" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjectTypes" Role="ExternalObjectType_Source"/>
          <End EntitySet="GroupTemplates" Role="GroupTemplate_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObject_ExternalObjectType" Association="SAPJam.ExternalObject_ExternalObjectType" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjects" Role="ExternalObject_Source"/>
          <End EntitySet="ExternalObjectTypes" Role="ExternalObjectType_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObject_FeedEntries" Association="SAPJam.ExternalObject_FeedEntries" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjects" Role="ExternalObject_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObject_Groups" Association="SAPJam.ExternalObject_Groups" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjects" Role="ExternalObject_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="ExternalObject_Templates" Association="SAPJam.ExternalObject_Templates" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ExternalObjects" Role="ExternalObject_Source"/>
          <End EntitySet="GroupTemplates" Role="GroupTemplate_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_ActionObjectReferences" Association="SAPJam.FeedEntry_ActionObjectReferences" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="ObjectReferences" Role="ObjectReference_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_AtMentions" Association="SAPJam.FeedEntry_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_ConsolidatedEntries" Association="SAPJam.FeedEntry_ConsolidatedEntries" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_Creator" Association="SAPJam.FeedEntry_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_Group" Association="SAPJam.FeedEntry_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_LastReply" Association="SAPJam.FeedEntry_LastReply" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Comments" Role="Comment_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_Likers" Association="SAPJam.FeedEntry_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_PreviewImage" Association="SAPJam.FeedEntry_PreviewImage" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="FeedEntryImages" Role="FeedEntryImage_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_Replies" Association="SAPJam.FeedEntry_Replies" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="Comments" Role="Comment_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_TargetObjectReference" Association="SAPJam.FeedEntry_TargetObjectReference" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="ObjectReferences" Role="ObjectReference_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedEntry_ThumbnailImage" Association="SAPJam.FeedEntry_ThumbnailImage" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedEntries" Role="FeedEntry_Source"/>
          <End EntitySet="ThumbnailImages" Role="ThumbnailImage_Target"/>
        </AssociationSet>
        <AssociationSet Name="FeedFilter_FeedEntries" Association="SAPJam.FeedFilter_FeedEntries" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="FeedFilters" Role="FeedFilter_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_ContentItems" Association="SAPJam.Folder_ContentItems" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_ContentListItems" Association="SAPJam.Folder_ContentListItems" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="ContentListItems" Role="ContentListItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_Creator" Association="SAPJam.Folder_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_Folders" Association="SAPJam.Folder_Folders" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_Group" Association="SAPJam.Folder_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_LastModifier" Association="SAPJam.Folder_LastModifier" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_ParentFolder" Association="SAPJam.Folder_ParentFolder" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="Folder_PrivateFolderMembers" Association="SAPJam.Folder_PrivateFolderMembers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Folders" Role="Folder_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ForumItem_Creator" Association="SAPJam.ForumItem_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ForumItems" Role="ForumItem_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="ForumItem_Discussion" Association="SAPJam.ForumItem_Discussion" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ForumItems" Role="ForumItem_Source"/>
          <End EntitySet="Discussions" Role="Discussion_Target"/>
        </AssociationSet>
        <AssociationSet Name="ForumItem_Group" Association="SAPJam.ForumItem_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ForumItems" Role="ForumItem_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="ForumItem_Idea" Association="SAPJam.ForumItem_Idea" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ForumItems" Role="ForumItem_Source"/>
          <End EntitySet="Ideas" Role="Idea_Target"/>
        </AssociationSet>
        <AssociationSet Name="ForumItem_Question" Association="SAPJam.ForumItem_Question" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="ForumItems" Role="ForumItem_Source"/>
          <End EntitySet="Questions" Role="Question_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_Creator" Association="SAPJam.Forum_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_Discussions" Association="SAPJam.Forum_Discussions" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="Discussions" Role="Discussion_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_ForumItems" Association="SAPJam.Forum_ForumItems" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="ForumItems" Role="ForumItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_Group" Association="SAPJam.Forum_Group" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_Ideas" Association="SAPJam.Forum_Ideas" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="Ideas" Role="Idea_Target"/>
        </AssociationSet>
        <AssociationSet Name="Forum_Questions" Association="SAPJam.Forum_Questions" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Forums" Role="Forum_Source"/>
          <End EntitySet="Questions" Role="Question_Target"/>
        </AssociationSet>
        <AssociationSet Name="GroupExternalObject_FeedEntries" Association="SAPJam.GroupExternalObject_FeedEntries" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="GroupExternalObjects" Role="GroupExternalObject_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="GroupGadgetObject_FeedEntries" Association="SAPJam.GroupGadgetObject_FeedEntries" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="GroupGadgetObjects" Role="GroupGadgetObject_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="GroupGadgetObject_Group" Association="SAPJam.GroupGadgetObject_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="GroupGadgetObjects" Role="GroupGadgetObject_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="GroupGadgetObject_GroupGadget" Association="SAPJam.GroupGadgetObject_GroupGadget" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="GroupGadgetObjects" Role="GroupGadgetObject_Source"/>
          <End EntitySet="GroupGadgets" Role="GroupGadget_Target"/>
        </AssociationSet>
        <AssociationSet Name="GroupMembership_Member" Association="SAPJam.GroupMembership_Member" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="GroupMemberships" Role="GroupMembership_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_AllContentItems" Association="SAPJam.Group_AllContentItems" sap:creatable="false" sap:deletable="true" sap:updatable="true">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_AllDiscussions" Association="SAPJam.Group_AllDiscussions" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Discussions" Role="Discussion_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_AllFolders" Association="SAPJam.Group_AllFolders" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_AllIdeas" Association="SAPJam.Group_AllIdeas" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Ideas" Role="Idea_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_AllQuestions" Association="SAPJam.Group_AllQuestions" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Questions" Role="Question_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_ContentItems" Association="SAPJam.Group_ContentItems" sap:creatable="true" sap:deletable="true" sap:updatable="true">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_ContentListItems" Association="SAPJam.Group_ContentListItems" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="ContentListItems" Role="ContentListItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Creator" Association="SAPJam.Group_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_FeaturedExternalObjects" Association="SAPJam.Group_FeaturedExternalObjects" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="ExternalObjects" Role="ExternalObject_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_FeedEntries" Association="SAPJam.Group_FeedEntries" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Folders" Association="SAPJam.Group_Folders" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Folders" Role="Folder_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Forums" Association="SAPJam.Group_Forums" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Forums" Role="Forum_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Memberships" Association="SAPJam.Group_Memberships" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="GroupMemberships" Role="GroupMembership_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_ParentGroup" Association="SAPJam.Group_ParentGroup" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_PrimaryExternalObject" Association="SAPJam.Group_PrimaryExternalObject" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="ExternalObjects" Role="ExternalObject_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_PrimaryGadgetObject" Association="SAPJam.Group_PrimaryGadgetObject" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="GroupGadgetObjects" Role="GroupGadgetObject_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_ProfilePhoto" Association="SAPJam.Group_ProfilePhoto" sap:creatable="true" sap:deletable="true" sap:updatable="true">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Images" Role="Image_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_SubGroups" Association="SAPJam.Group_SubGroups" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Tasks" Association="SAPJam.Group_Tasks" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Tasks" Role="Task_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_Template" Association="SAPJam.Group_Template" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="GroupTemplates" Role="GroupTemplate_Target"/>
        </AssociationSet>
        <AssociationSet Name="Group_UpcomingEvents" Association="SAPJam.Group_UpcomingEvents" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Groups" Role="Group_Source"/>
          <End EntitySet="Events" Role="Event_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_AtMentions" Association="SAPJam.Idea_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_Attachments" Association="SAPJam.Idea_Attachments" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_Creator" Association="SAPJam.Idea_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_Forum" Association="SAPJam.Idea_Forum" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="Forums" Role="Forum_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_Group" Association="SAPJam.Idea_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Idea_Posts" Association="SAPJam.Idea_Posts" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Ideas" Role="Idea_Source"/>
          <End EntitySet="WallComments" Role="WallComment_Target"/>
        </AssociationSet>
        <AssociationSet Name="Kudo_ThumbnailKudoImage" Association="SAPJam.Kudo_ThumbnailKudoImage" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Kudos" Role="Kudo_Source"/>
          <End EntitySet="ThumbnailKudoImages" Role="ThumbnailKudoImage_Target"/>
        </AssociationSet>
        <AssociationSet Name="MemberKudo_Kudo" Association="SAPJam.MemberKudo_Kudo" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MemberKudos" Role="MemberKudo_Source"/>
          <End EntitySet="Kudos" Role="Kudo_Target"/>
        </AssociationSet>
        <AssociationSet Name="MemberKudo_Sender" Association="SAPJam.MemberKudo_Sender" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MemberKudos" Role="MemberKudo_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="MemberProfile_PhoneNumbers" Association="SAPJam.MemberProfile_PhoneNumbers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MemberProfiles" Role="MemberProfile_Source"/>
          <End EntitySet="PhoneNumbers" Role="PhoneNumber_Target"/>
        </AssociationSet>
        <AssociationSet Name="MemberProfile_SecondaryEmailAddresses" Association="SAPJam.MemberProfile_SecondaryEmailAddresses" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MemberProfiles" Role="MemberProfile_Source"/>
          <End EntitySet="SecondaryEmailAddresses" Role="SecondaryEmailAddress_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_Assistants" Association="SAPJam.Member_Assistants" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_AwayAlerts" Association="SAPJam.Member_AwayAlerts" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="AwayAlerts" Role="AwayAlert_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_DirectReports" Association="SAPJam.Member_DirectReports" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_FeedEntries" Association="SAPJam.Member_FeedEntries" sap:creatable="true" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_Followers" Association="SAPJam.Member_Followers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_Following" Association="SAPJam.Member_Following" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_Managers" Association="SAPJam.Member_Managers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_MemberKudos" Association="SAPJam.Member_MemberKudos" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="MemberKudos" Role="MemberKudo_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_MemberProfile" Association="SAPJam.Member_MemberProfile" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="MemberProfiles" Role="MemberProfile_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_ProfilePhoto" Association="SAPJam.Member_ProfilePhoto" sap:creatable="true" sap:deletable="true" sap:updatable="true">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="Images" Role="Image_Target"/>
        </AssociationSet>
        <AssociationSet Name="Member_ThumbnailImage" Association="SAPJam.Member_ThumbnailImage" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Members" Role="Member_Source"/>
          <End EntitySet="ThumbnailImages" Role="ThumbnailImage_Target"/>
        </AssociationSet>
        <AssociationSet Name="MirrorLink_ContentItem" Association="SAPJam.MirrorLink_ContentItem" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MirrorLinks" Role="MirrorLink_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="MirrorLink_Creator" Association="SAPJam.MirrorLink_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="MirrorLinks" Role="MirrorLink_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Notification_FeedEntry" Association="SAPJam.Notification_FeedEntry" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Notifications" Role="Notification_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Notification_Group" Association="SAPJam.Notification_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Notifications" Role="Notification_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Notification_ObjectReference" Association="SAPJam.Notification_ObjectReference" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Notifications" Role="Notification_Source"/>
          <End EntitySet="ObjectReferences" Role="ObjectReference_Target"/>
        </AssociationSet>
        <AssociationSet Name="Notification_Sender" Association="SAPJam.Notification_Sender" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Notifications" Role="Notification_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="PhoneNumber_Member" Association="SAPJam.PhoneNumber_Member" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="PhoneNumbers" Role="PhoneNumber_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Answers" Association="SAPJam.Question_Answers" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="WallComments" Role="WallComment_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_AtMentions" Association="SAPJam.Question_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Attachments" Association="SAPJam.Question_Attachments" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_BestAnswer" Association="SAPJam.Question_BestAnswer" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="WallComments" Role="WallComment_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Creator" Association="SAPJam.Question_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Forum" Association="SAPJam.Question_Forum" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="Forums" Role="Forum_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Group" Association="SAPJam.Question_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Question_Likers" Association="SAPJam.Question_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Questions" Role="Question_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="SearchResult_Creator" Association="SAPJam.SearchResult_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SearchResults" Role="SearchResult_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="SearchResult_Featurer" Association="SAPJam.SearchResult_Featurer" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SearchResults" Role="SearchResult_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="SearchResult_Group" Association="SAPJam.SearchResult_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SearchResults" Role="SearchResult_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="SearchResult_ObjectReference" Association="SAPJam.SearchResult_ObjectReference" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SearchResults" Role="SearchResult_Source"/>
          <End EntitySet="ObjectReferences" Role="ObjectReference_Target"/>
        </AssociationSet>
        <AssociationSet Name="SearchSummary_Results" Association="SAPJam.SearchSummary_Results" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SearchSummaries" Role="SearchSummary_Source"/>
          <End EntitySet="SearchResults" Role="SearchResult_Target"/>
        </AssociationSet>
        <AssociationSet Name="SecondaryEmailAddress_Member" Association="SAPJam.SecondaryEmailAddress_Member" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="SecondaryEmailAddresses" Role="SecondaryEmailAddress_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="TaskAssignment_Assignee" Association="SAPJam.TaskAssignment_Assignee" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="TaskAssignments" Role="TaskAssignment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="TaskAssignment_Assigner" Association="SAPJam.TaskAssignment_Assigner" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="TaskAssignments" Role="TaskAssignment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="TaskAssignment_Group" Association="SAPJam.TaskAssignment_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="TaskAssignments" Role="TaskAssignment_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="TaskAssignment_Task" Association="SAPJam.TaskAssignment_Task" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="TaskAssignments" Role="TaskAssignment_Source"/>
          <End EntitySet="Tasks" Role="Task_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Assignments" Association="SAPJam.Task_Assignments" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="TaskAssignments" Role="TaskAssignment_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Attachments" Association="SAPJam.Task_Attachments" sap:creatable="false" sap:deletable="true" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="ContentItems" Role="ContentItem_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Creator" Association="SAPJam.Task_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Event" Association="SAPJam.Task_Event" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="Events" Role="Event_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_FeedEntries" Association="SAPJam.Task_FeedEntries" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="FeedEntries" Role="FeedEntry_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Followers" Association="SAPJam.Task_Followers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_Group" Association="SAPJam.Task_Group" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="Groups" Role="Group_Target"/>
        </AssociationSet>
        <AssociationSet Name="Task_PendingFollowers" Association="SAPJam.Task_PendingFollowers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="Tasks" Role="Task_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="WallComment_AtMentions" Association="SAPJam.WallComment_AtMentions" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="WallComments" Role="WallComment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="WallComment_Comments" Association="SAPJam.WallComment_Comments" sap:creatable="true" sap:deletable="false" sap:updatable="false">
          <End EntitySet="WallComments" Role="WallComment_Source"/>
          <End EntitySet="Comments" Role="Comment_Target"/>
        </AssociationSet>
        <AssociationSet Name="WallComment_Creator" Association="SAPJam.WallComment_Creator" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="WallComments" Role="WallComment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <AssociationSet Name="WallComment_Likers" Association="SAPJam.WallComment_Likers" sap:creatable="false" sap:deletable="false" sap:updatable="false">
          <End EntitySet="WallComments" Role="WallComment_Source"/>
          <End EntitySet="Members" Role="Member_Target"/>
        </AssociationSet>
        <FunctionImport Name="Company" m:HttpMethod="GET" EntitySet="Companies" ReturnType="SAPJam.Company"></FunctionImport>
        <FunctionImport Name="ContentItem_IncrementViews" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="ContentItemType" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ContentItem_MirrorToFolder" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="ContentItemType" Type="Edm.String"/>
          <Parameter Name="FolderId" Type="Edm.String"/>
          <Parameter Name="FolderType" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ContentItem_MirrorToGroup" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="ContentItemType" Type="Edm.String"/>
          <Parameter Name="GroupId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ContentListItems_CopyMultiple" m:HttpMethod="POST">
          <Parameter Name="TargetGroupId" Type="Edm.String"/>
          <Parameter Name="TargetFolderId" Type="Edm.String"/>
          <Parameter Name="Ids" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ContentListItems_MoveMultiple" m:HttpMethod="POST">
          <Parameter Name="TargetFolderId" Type="Edm.String"/>
          <Parameter Name="Ids" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ExternalObject_FeedLatestCount" m:HttpMethod="GET" ReturnType="Edm.Int32">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="LatestTopLevelId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ExternalObjects_FindByExidAndObjectType" m:HttpMethod="GET" EntitySet="ExternalObjects" ReturnType="SAPJam.ExternalObject">
          <Parameter Name="Exid" Type="Edm.String"/>
          <Parameter Name="ObjectType" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="FeedEntries_MarkAsRead" m:HttpMethod="POST">
          <Parameter Name="Ids" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="FeedEntries_Mentions" m:HttpMethod="GET" EntitySet="FeedEntries" ReturnType="Collection(SAPJam.FeedEntry)"></FunctionImport>
        <FunctionImport Name="FeedEntries_Replies" m:HttpMethod="GET" EntitySet="FeedEntries" ReturnType="Collection(SAPJam.FeedEntry)"></FunctionImport>
        <FunctionImport Name="FeedEntries_ShareToCompany" m:HttpMethod="POST" EntitySet="FeedEntries" ReturnType="SAPJam.FeedEntry">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="Comment" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="FeedEntries_ShareToGroup" m:HttpMethod="POST" EntitySet="FeedEntries" ReturnType="SAPJam.FeedEntry">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="Comment" Type="Edm.String"/>
          <Parameter Name="GroupId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ForumItem_IncrementViews" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="ForumItems_MoveMultiple" m:HttpMethod="POST">
          <Parameter Name="TargetForumId" Type="Edm.String"/>
          <Parameter Name="Ids" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupExternalObject_FeedLatestCount" m:HttpMethod="GET" ReturnType="Edm.Int32">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="ExternalObjectId" Type="Edm.String"/>
          <Parameter Name="LatestTopLevelId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_CancelInvite" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_DefaultTaskAssignee" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_Feature" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_MakeAdmin" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_RemoveAdmin" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_RemoveDefaultTaskAssignee" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_RemoveFromGroup" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="GroupMembership_Unfeature" m:HttpMethod="POST">
          <Parameter Name="GroupId" Type="Edm.String"/>
          <Parameter Name="MemberId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_AcceptTermsOfUse" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_Copy" m:HttpMethod="POST" EntitySet="Groups" ReturnType="SAPJam.Group">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="NewName" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_FeedLatestCount" m:HttpMethod="GET" ReturnType="Edm.Int32">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="LatestTopLevelId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_Invite" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="Email" Type="Edm.String"/>
          <Parameter Name="Message" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_InviteByMemberIds" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="MemberIds" Type="Edm.String"/>
          <Parameter Name="Message" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_InviteByMemberSyncIds" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="MemberSyncIds" Type="Edm.String"/>
          <Parameter Name="Message" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_Join" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_OverrideEmailFrequency" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="EmailFrequency" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Group_SaveAsTemplate" m:HttpMethod="POST" EntitySet="CustomGroupTemplates" ReturnType="SAPJam.CustomGroupTemplate">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="Title" Type="Edm.String"/>
          <Parameter Name="Description" Type="Edm.String"/>
          <Parameter Name="Enabled" Type="Edm.Boolean"/>
        </FunctionImport>
        <FunctionImport Name="Groups_Autocomplete" m:HttpMethod="GET" EntitySet="Groups" ReturnType="Collection(SAPJam.Group)">
          <Parameter Name="Query" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Groups_IAdminister" m:HttpMethod="GET" EntitySet="Groups" ReturnType="Collection(SAPJam.Group)"></FunctionImport>
        <FunctionImport Name="MemberKudo_ChangeVisibility" m:HttpMethod="POST" EntitySet="MemberKudos" ReturnType="SAPJam.MemberKudo">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Member_FollowsFeedLatestCount" m:HttpMethod="GET" ReturnType="Edm.Int32">
          <Parameter Name="LatestTopLevelId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Member_ProfileFeedLatestCount" m:HttpMethod="GET" ReturnType="Edm.Int32">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="LatestTopLevelId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Members_Autocomplete" m:HttpMethod="GET" EntitySet="Members" ReturnType="Collection(SAPJam.Member)">
          <Parameter Name="Query" Type="Edm.String"/>
          <Parameter Name="GroupId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Members_FindByEmail" m:HttpMethod="GET" EntitySet="Members" ReturnType="SAPJam.Member">
          <Parameter Name="Email" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Members_FindBySyncId" m:HttpMethod="GET" EntitySet="Members" ReturnType="SAPJam.Member">
          <Parameter Name="SyncId" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Notification_Accept" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Notification_Dismiss" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Notification_MarkAsRead" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Notifications_DismissAll" m:HttpMethod="POST" EntitySet="Notifications">
          <Parameter Name="Category" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Notifications_UnreadCount" m:HttpMethod="GET" ReturnType="Edm.Int32"></FunctionImport>
        <FunctionImport Name="Search" m:HttpMethod="GET" EntitySet="SearchResults" ReturnType="Collection(SAPJam.SearchResult)">
          <Parameter Name="Query" Type="Edm.String"/>
          <Parameter Name="Group" Type="Edm.String"/>
          <Parameter Name="Creator" Type="Edm.String"/>
          <Parameter Name="Tag" Type="Edm.String"/>
          <Parameter Name="Category" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="SearchSummary" m:HttpMethod="GET" EntitySet="SearchSummaries" ReturnType="SAPJam.SearchSummary">
          <Parameter Name="Query" Type="Edm.String"/>
          <Parameter Name="Group" Type="Edm.String"/>
          <Parameter Name="Creator" Type="Edm.String"/>
          <Parameter Name="Tag" Type="Edm.String"/>
          <Parameter Name="Category" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Self" m:HttpMethod="GET" EntitySet="Members" ReturnType="SAPJam.Member"></FunctionImport>
        <FunctionImport Name="Task_Unfollow" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Task_UpdateAssigneeByMemberIds" m:HttpMethod="POST">
          <Parameter Name="Id" Type="Edm.String"/>
          <Parameter Name="OpenIds" Type="Edm.String"/>
          <Parameter Name="InProgressIds" Type="Edm.String"/>
          <Parameter Name="CompletedIds" Type="Edm.String"/>
        </FunctionImport>
        <FunctionImport Name="Tasks_AllForMe" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_AssignedToOthers" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_Completed" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_Following" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_InProgress" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_Overdue" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
        <FunctionImport Name="Tasks_Unassigned" m:HttpMethod="GET" EntitySet="Tasks" ReturnType="Collection(SAPJam.Task)"></FunctionImport>
      </EntityContainer>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>
Former Member
0 Kudos

Hi Christian,

Could you please explain me more which event you want to attach.

Do you have a problem of uploading file ?

I used to upload attachments with SAPUI5 and Odata , if it helps I can send you steps to do that.

Regards.