id stringlengths 14 16 | text stringlengths 2 3.14k | source stringlengths 45 175 |
|---|---|---|
0da44a89e833-10 | // Loads a LOB system instances.
lobSystem = wfEntity.getLobSystem();
lobSystemInstanceCollection = lobSystem.getLobSystemInstances();
context.load(lobSystemInstanceCollection);
context.executeQueryAsync(onLoadingLOBInstanceSucceeded, onError);
function onLoadingLOBInstanceSucceeded() {
lobSystemInstanc... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-11 | var decFilterCollection = wfDecisionsEntity.getFilters(
"GetDecisionOptionsFromWorkflowTaskCollection");
context.load(decFilterCollection);
decisionsCollection = wfDecisionsEntity.findAssociated(
wfEntityInstance, "GetDecisionOptionsFromWorkflowTaskCollection",
decFilterCollection, lobS... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-12 | function onError(sender, e) {
alert("Request failed. " + e.get_message() +
"\\n" + e.get_stackTrace());
}
}
// Retrieves a query string value.
function getQueryStringParameter(paramToRetrieve) {
var params = document.URL.split("")[1].split("&");
var strParams = "";
for (var i = 0; i < params.... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-13 | Adding Lync Control to your details page
Here is one option for your custom user interface. Adding a Lync control will give you the ability to communicate with your Lync contacts from the custom page.
To add a Lync control:
Right-click the Scripts folder in solution explorer, add a JavaScript file and nam... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-14 | jQuery.ajax({
url: queryURL,
type: "GET",
headers: {
"ACCEPT": "application/json;odata=verbose"
},
success: function (data) {
var html = [];
var i = 0;
var id = htmlElement[0].id + "_";
var about_info;
if (data.d.UserProfileProperties != n... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-15 | var html = [
"<table>",
"<tr>",
"<td>",
"<span class='ms-spimn-presenceWrapper ms-spimn-imgSize-5x48'> ",
"<img id='imn_" + id + "_" + i++ + ",type=smtp'" ,
"onload=\\"IMNRC('", email, "')\\" ",
"class='ms-spimn-img ms-spimn-presenc... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-16 | "<span style='width: 48px; height: 48px;'" ,
"class='ms-peopleux-userImgWrapper'>",
"<img style='cliptop: 0px; clipright: 48px;" ,
"clipbottom: 48px; clipleft: 0px; ",
"min-height: 48px; min-width: 48px; max-width: 48px;' ",
"class=... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-17 | "align='center' ",
"style='cursor:pointer; font-size:small;' > more... </div>",
"<script>",
"RegisterCallOut(\\"people_callout_" + id + "_" + i +
"\\",\\"" + name + "\\",\\"" + encodeURI(about_info) +
"\\",\\"" + profile... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-18 | htmlElement.html(html.join(''));
}
});
}
function onRequestFailed(sender, args) {
alert('Error: ' + args.get_message());
}
}
function RegisterCallOut(divId, displayName, aboutme, userUrl, isFollowed) {
if (typeof CalloutManager !== "object" || typeof Callout !== "function" || typeof CalloutActi... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
0da44a89e833-19 | Note
The user name of the participant in company's network is same as that in SAP.
Open the AppManifest.xml page.
In Permission Requests , select Scope , User Profiles and Permission and set its value to Read .
Copy the following markup and paste it in the PlaceHolderAdditionalPageHead secti... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-sap-workflow-with-duet-enterprise-2-0 |
7dcf88b9ff8c-0 | Learn about the process of developing and deploying apps for SharePoint hybrid connectivity solutions.
Hybrid connectivity in SharePoint and SharePoint Online
As businesses move to using SharePoint Online, they need a way to expose large amounts of proprietary data safely and securely. To help solve this challenge,... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/create-hybrid-connectivity-apps-for-sharepoint |
7dcf88b9ff8c-1 | Create an SharePoint Add-in
To add an external content ty
Deploy the hybrid app
Prepare the data source
Most of the time, the data source is already in place and is servicing any number of business applications. However, that data may only be available from inside the corporate security infrastructure. If you... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/create-hybrid-connectivity-apps-for-sharepoint |
7dcf88b9ff8c-2 | In Solution Explorer add a new ADO.NET Entity Data Model .
Choose the Generate from database option in the Entity Data Model Wizard .
Select an existing connection, or create a new one.
Provide the URL and connection security information.
Select the items that you want to include in the model, and... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/create-hybrid-connectivity-apps-for-sharepoint |
7dcf88b9ff8c-3 | Create a new app for SharePoint.
Specify the name of the app, the local SharePoint URL that will host your site for testing, and ### Create an external content type
To add a BDC model or external content type to your project, do the following.
To add an external content type
With your new project still open... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/create-hybrid-connectivity-apps-for-sharepoint |
7dcf88b9ff8c-4 | Deploy the hybrid app
When it is time to deploy your app, you have a couple of choices. You can deploy it directly to a tenancy using F5 deployment, or you can package it using the publishing features of Visual Studio to create an .app file. This file can then be given to the SharePoint Online tenant administrator an... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/create-hybrid-connectivity-apps-for-sharepoint |
d4c531538401-0 | Contains reference documentation for the BDC model schema (BDCMetadata.xsd), which you can use to create external content types in SharePoint.
AccessControlEntry element
Contains an access control entry (ACE) that specifies access rights for the parent element.
See Business Connectivity Services security ov... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-1 | Attributes
None
Child elements
Element
Description
AccessControlEntry Element in AccessControlList (BDCMetadata Schema)
An access control entry (ACE).
Parent element
Element
Description
Model Element (BDCMetadata Schema)
A model that contains external conten... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-2 | By default, the Business Data Connectivity (BDC) service provides actions such as View Item , Edit Item , and Delete Item after you model these operations in the BDC model. In addition to these default actions, you can create actions for other functionality you want to attach to your external content type. For exam... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-3 | ImageUrl
Optional. The absolute or relative path to the icon image for the action. The icon image should be 16 x 16 pixels. Attribute type: String
Name
Required. The name of this action. Attribute type: String
DefaultDisplayName
Optional. The default display name for this ac... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-4 | Important:
ActionParameters can either represent identifier values, or values that correspond to TypeDescriptors in a SpecificFinder of the Entity . The ActionParameter represents an identifier value when the IdOrdinal property is present. The value of the property specifies the index of the identifier whos... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-5 | IsCached
Optional. Specifies whether this ActionParameter is used frequently. This attribute is used by the BDC client runtime to cache this Action . Default value: true Attribute type: Boolean
Child elements
Element
Description
LocalizedDisplayNames Element in MetadataOb... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-6 | Actions element
Specifies a list of actions of an external content type.
Namespace: http://schemas.microsoft.com/windows/2007/BusinessDataCatalog
Schema: BDCMetadata
<Actions></Actions>
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child element... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-7 | HideOnProfilePage
System.Boolean
Specifies whether the related external content type should be added to the profile page of the master external content type.
Optional
<Association Type = "String" Default = "Boolean" ReturnParameterName = "String" ReturnTypeDescriptorName = "String" ReturnTypeD... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-8 | ReturnParameterName
Optional. The name of the parameter that contains the ReturnTypeDescriptor of the Association. The Direction attribute of the parameter must contain a value of either "Out", "InOut", or "Return". Attribute type: String
ReturnTypeDescriptorName
Optional. This has been dep... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-9 | SourceEntity Element in Association (BDCMetadata Schema)
The SourceEntity element specifies the source external content type in the association.
DestinationEntity Element in Association (BDCMetadata Schema)
The DestinationEntity element specifies the destination external content type in the Associati... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-10 | IsCached
Optional. Specifies whether the AssociationGroup is used frequently. Default value: true Attribute type: Boolean
Child elements
Element
Description
LocalizedDisplayNames Element in MetadataObject (BDCMetadata Schema)
The localized names of the AssociationGroup... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-11 | AssociationReference element
Specifies an AssociationReference in an AssociationGroup .
Namespace: http://schemas.microsoft.com/windows/2007/BusinessDataCatalog
Schema: BDCMetadata
<AssociationReference EntityNamespace = "String" EntityName = "String" AssociationName = "String" Reverse = "Boolean"> </... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-12 | Child elements
None
Parent element
Element
Description
AssociationGroup Element in AssociationGroups (BDCMetadata Schema)
The AssociationGroup that this AssociationReference belongs to.
ConvertType element
Specifies the rule to convert the data type of a data value into an... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-13 | BDCType
Required. The data type to convert the data value into when the rules are applied in order. Attribute type: String
LOBLocale
Optional. The locale of the data that is received from the external system.
Child elements
None
Parent element
Element
Description
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-14 | Child elements
None
Parent element
Element
Description
DefaultValues Element in TypeDescriptor (BDCMetadata Schema)
DefaultValues element
Specifies a list of DefaultValues of a TypeDescriptor .
Namespace: http://schemas.microsoft.com/windows/2007/BusinessDataCatalog
Sche... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-15 | Required. The name of the destination entity. Attribute type: String
Child elements
None
Parent element
Element
Description
Association Element in MethodInstances (BDCMetadata Schema)
Entities element
Specifies a list of external content types in an external syst... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-16 | Attribute
Description
Namespace
Required. The namespace that this external content type belongs to. Attribute type: String Note : The namespace should not contain the asterisk special character " * ".
Version
Required. The version number of this external content type. Attribu... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-17 | DefaultOperationMode
Optional. Specifies the default behavior when interacting with the external system while creating, deleting, updating, or reading external items. Default value: Default The following table lists the possible values for this attribute. Value Description Online Bypass the cached exte... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-18 | Properties Element in MetadataObject (BDCMetadata Schema)
The properties of this external content type.
AccessControlList Element (BDCMetadata Schema)
The access control list (ACL) of this external content type.
Identifiers Element in Entity (BDCMetadata Schema)
The identifiers of the extern... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-19 | Required. The type of the filter descriptor. The following table lists the possible values for this attribute. Value Description Limit Used while querying an external system and the value of which can be interpreted as a limit on the number of external items EntityInstances that are returned when the method... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-20 | and additional results of an operation that cannot be captured by ReturnTypeDescriptor can be retrieved as a value of the InputOutputFilter . Batching BatchingTermination ActivityId ActivityId is used when calling an operation on the external system. Its value is set to a GUID that represents the current operation ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-21 | FilterField
Optional. Attribute type: String
Name
Required. The name of the filter descriptor. Attribute type: String
DefaultDisplayName
Optional. The default display name of the filter descriptor. Attribute type: String
IsCached
Optional. Specifies whether t... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-22 | A filter descriptor.
Parent element
Element
Description
Method Element in Methods (BDCMetadata Schema)
The method this list of filter descriptors belongs to.
Identifier element
Specifies an identifier of an external content type.
Namespace: http://schemas.microsoft.... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-23 | Required. The data type of the value that corresponds to the identifier. The following table lists the possible values for this attribute. Value Description System.Boolean A bit. System.Byte A number ranging from 0 to 255 inclusive. System.Char A Unicode character. System.DateTime A date and time ranging from... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-24 | 800 nanoseconds to positive 10675199 days 2 hours 48 minutes 5 seconds 477 milliseconds 580 microseconds 800 nanoseconds inclusive, in resolution of 100 nanoseconds. System.UInt16 A number ranging from 0 to 65535 inclusive. System.UInt32 A number ranging from 0 to 4,294,967,295 inclusive. System.UInt64 A number ranging... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-25 | Name
Required. The name of the identifier. Attribute type: String
DefaultDisplayName
Optional. The default display name of the identifier. Attribute type: String
IsCached
Optional. Specifies whether this identifier is used frequently. If set to true , Business Data Connecti... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-26 | Element
Description
Entity Element in Entities (BDCMetadata Schema)
The external content type that contains this list of identifiers.
Interpretation element
Specifies the rules to apply to the data stored in the data structures represented by a TypeDescriptor . These rules are typically... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-27 | NormalizeDateTime Element in Interpretation (BDCMetadata Schema)
A NormalizeDateTime element that specifies the conversion of the date and time representation of a value obtained from an external system into another representation.
NormalizeString
A NormalizeString element that specifies the conversi... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-28 | DefaultDisplayName
The default display name of the LobSystem . Optional. Attribute type: String
IsCached
Specifies whether the LobSystem is frequently used. If frequently used, Business Data Connectivity (BDC) service caches the LobSystem . Optional. Default value: true Attribute ty... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-29 | Namespace: http://schemas.microsoft.com/windows/2007/BusinessDataCatalog
Schema: BDCMetadata
<LobSystemInstance Name = "String" DefaultDisplayName = "String" IsCached = "Boolean"> </LobSystemInstance>
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribu... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-30 | Schema: BDCMetadata
<LobSystemInstances></LobSystemInstances>
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child elements
Element
Description
LobSystemInstance Element in LobSystemInstances (BDCMetadata Schema)
An external system in... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-31 | <LocalizedDisplayName LCID = "Integer"> </LocalizedDisplayName>
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute
Description
LCID
Required. The language code identifier (LCID). Attribute type: Integer
Child elements
Non... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-32 | Entity Element in Entities (BDCMetadata Schema)
Identifier Element in Identifiers (BDCMetadata Schema)
Method Element in Methods (BDCMetadata Schema)
FilterDescriptor Element in FilterDescriptors (BDCMetadata Schema)
Parameter Element in Parameters (BDCMetadata Schema)
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-33 | Attribute
Description
IsStatic
Optional. Specifies whether the execution of this method requires an external item ( EntityInstance ) to serve as a context for execution. If set to true , the method represents a static method and does not require a specific EntityInstance to provide context for ex... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-34 | The filter descriptors of the method.
Parameters Element in Method (BDCMetadata Schema)
The parameters of the method. A method cannot have more than one return parameter.
MethodInstances Element in Method (BDCMetadata Schema)
The method instances of the method.
Parent element
E... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-35 | Required. Specifies the type of the MethodInstance . The following table lists the possible values for this attribute. Value Description Finder A type of MethodInstance that can be called to return a collection of zero or more EntityInstances of a particular Entity . Finder input is defined by the Fi... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-36 | scalar method instance to get the total sales made to date from the external system. Entities have zero or more scalar method instances. AccessChecker A type of MethodInstance that can be called to retrieve the permissions that the calling security principal has for each of a collection of EntityInstances that ar... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-37 | of cached data. This method should return only the identities and version information of the external items that correspond to given Identities , which the calling application can compare with the local version to identify if anything has changed, and if so, request the changed external items to update the cached data... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-38 | Default
Optional. Specifies whether the MethodInstance is the default among all MethodInstances that share its type within the containing external content type ( Entity ). Default value: false Attribute type: Boolean
ReturnParameterName
Optional. The name of the Parameter that conta... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-39 | Properties Element in MetadataObject (BDCMetadata Schema)
The properties of the MethodInstance .
AccessControlList Element (BDCMetadata Schema)
The access control lists (ACLs) of the MethodInstance .
Parent element
Element
Description
MethodInstances Element in Method (BD... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-40 | Attributes
None
Child elements
Element
Description
Method Element in Methods (BDCMetadata Schema)
Specifies a method.
Parent element
Element
Description
Entity Element in Entities (BDCMetadata Schema)
The external content type that this list of methods belon... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-41 | The localized names of the Model .
Properties Element in MetadataObject (BDCMetadata Schema)
The properties of the Model .
AccessControlList Element (BDCMetadata Schema)
The access control list (ACL) of the Model .
LobSystems Element in Model (BDCMetadata Schema)
The LobSystems ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-42 | Attribute
Description
LobDateTimeMode
Required. Specifies the conversion to apply. The following table lists the possible values for this attribute. Value Description UTC The value that is received from the external system is UTC (Coordinated Universal Time). If the value received is Local , ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-43 | Schema: BDCMetadata
<Parameter Direction = "String" Name = "String" DefaultDisplayName = "String" IsCached = "Boolean"> </Parameter>
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute
Description
Direction
Required. The direction of t... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-44 | The Parameters element that contains this parameter.
Parameters element
Specifies a list of parameters of a method.
Namespace: http://schemas.microsoft.com/windows/2007/BusinessDataCatalog
Schema: BDCMetadata
<Parameters></Parameters>
The following sections describe attributes, child elemen... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-45 | Entity Element in Entities (BDCMetadata Schema)
Identifier Element in Identifiers (BDCMetadata Schema)
Method Element in Methods (BDCMetadata Schema)
FilterDescriptor Element in FilterDescriptors (BDCMetadata Schema)
Parameter Element in Parameters (BDCMetadata Schema)
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-46 | Child elements
None
Parent element
Element
Description
Properties Element in MetadataObject (BDCMetadata Schema)
The Properties element that contains this property.
Proxy element
Specifies a user-provided proxy that is identical to the one that would be generated if this ele... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-47 | Attribute
Description
BdcRight
Required. The permission available to the security principal holding the right. The following table lists the possible values for this attribute. Value Description None No permissions. Execute The represented security principal has the permission to invoke a Met... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-48 | Name
Required. The name of the external content type that is the source of the Association that contains this element. Attribute type: String
Child elements
None
Parent element
Element
Description
Association Element in MethodInstances (BDCMetadata Schema)
The Associat... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-49 | LobName
Optional. The data structure that is represented by the TypeDescriptor . The default value of this attribute is the name of the TypeDescriptor . For example, a line-of-business (LOB) system data structure named "CN1A" can be represented by a TypeDescriptor with Name attribute equal to "Customer Nam... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-50 | ForeignIdentifierAssociationName
Optional. The name of the Association referenced by the TypeDescriptor . If the TypeDescriptor does not reference an Association , this attribute must not be present. When this attribute is present, the IdentifierName attribute must also be present. The ForeignIdentifier... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-51 | AssociatedFilter
Optional. The name of a FilterDescriptor that is associated with the TypeDescriptor . If the TypeDescriptor is not associated with a FilterDescriptor this attribute must not be present. Attribute type: String
IsCollection
Optional. Specifies whether the TypeDescriptor ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-52 | PreUpdaterField
Optional. Specifies whether data structure represented by the TypeDescriptor stores the latest data value received from the external system of a field for MethodInstances of type Updater . When this attribute is specified, a UpdaterField attribute must not be specified. Default value: f... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-53 | The localized names of the TypeDescriptor .
Properties Element in MetadataObject (BDCMetadata Schema)
The properties of the TypeDescriptor . When the TypeDescriptor is of type System.String , the Properties element can contain a Property of type System.Int32 with the Name attribute set to S... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
d4c531538401-54 | Parent element
Element
Description
TypeDescriptor Element (BDCMetadata Schema)
TypeDescriptor
See also
Changes in the BDC model schema for SharePoint
External content types in SharePoint
Get started using the client object model with external data in SharePoint ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bdc-model-schema-reference-for-sharepoint |
fce509d1d0bb-0 | Learn what has changed in SharePoint for the BDC model schema.
The number of changes in the schema (BDCMetadata.xsd) for creating BDC models in SharePoint is relatively small. But these changes have significant impact on the feature set offerings of Business Connectivity Services (BCS).
For more information about the... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/changes-in-the-bdc-model-schema-for-sharepoint |
fce509d1d0bb-1 | What's new in Business Connectivity Services in SharePoint
Get started with Business Connectivity Services in SharePoint
Business Connectivity Services programmers reference for SharePoint
BDC model schema reference for SharePoint | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/changes-in-the-bdc-model-schema-for-sharepoint |
97dd9c1746c0-0 | Learn about the objects that are available for creating client-side scripts using the SharePoint client object model to access external data exposed by Business Connectivity Services (BCS).
The following objects are available for creating client-side scripts using the SharePoint client object model to access external d... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-1 | GetSpecificFinderView_Client
View GetDefaultSpecificFinderView()
GetUpdaterView_Client
View GetSpecificFinderView_Client( string specificFinderName)
GetIdentifiers
View GetUpdaterView_Client(string updaterName)
GetIdentifiers()
Properties
Property
Descri... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-2 | Retrieves the values in XML format.
Update
void
Submits the changes made to the External Item.
Properties
Property
Return type
Description
this[string fieldDotNotation] { get; set; }
Object
Gets or sets the value of the field referred to by the dot notation.
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-3 | Name { get; }
string
Gets the name of this View object
RelatedSpecificFinderName { get; }
string
Retrieves the name of the specific finder MethodInstance that this view is tied to.
LobSystem method
Namespaces
Managed
JavaScript
Microsoft.BusinessData.Metadat... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-4 | Microsoft.BusinessData.MetadataModel
SP.BusinessData
Methods
Method
Return type
Description
ContainsLocalizedDisplayName
bool
Determines whether the metadata object contains localized display name.
GetDefaultDisplayName
string
Returns the default display name.... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-5 | public Identity (Object[] identifierValues)
Constructs a new instance of the class by using an array of identifier values.
Methods
Method
Return type
Description
Serialize
string
Gets a string representation of the identity.
Properties
Property
Return type... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-6 | Properties
Property
Description
Object this[string fieldDotNotation] { get; set; }
Gets or sets the value of the field referred to by the dot notation.
EntityFieldCollection method
Namespaces
Managed
JavaScript
Microsoft.BusinessData.Runtime
SP.BusinessDat... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-7 | Name
string
Yes
Retrieves the name of the Field.
TypeDescriptor class
Namespaces
Managed
JavaScript
Microsoft.BusinessData.MetadataModel
SP.BusinessData
Methods
Method
Return type
Read Only
Description
ContainsLocalizedDisplayName() ... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-8 | Interface
Description
IMetadataCatalog
The entry point into the BDC object model. Use the DatabaseBasedMetadataCatalog on the server.
ILobSystem
Contains the details about an external system.
IEntity
An external content type in the BDC Metadata Store.
IMethod
An oper... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
97dd9c1746c0-9 | No.
Do all fields in the external list need to be specified in the CAML query?
Using the ViewXML tag in the BDC model, the developer can specify only those fields that are required and the CSOM APIs for Lists will return only those fields.
See also
Business Connectivity Services programmers referenc... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-client-object-model-reference-for-sharepoint |
c9b16889a8ce-0 | Contains reference information for constructing Representational State Transfer (REST) URLs to access and manipulate external data sources using Business Connectivity Services (BCS) in SharePoint.
Using RESTful APIs to access external data in SharePoint
The REST interface provided by SharePoint enables you to a... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-rest-api-reference-for-sharepoint |
c9b16889a8ce-1 | Retrieves all lists on a site.
GET
http://[sharepointsite]/_api/lists/getbytitle('listname')
Retrieves the metadata for a specified list.
GET
http://[sharepointsite]/_api/lists/getbytitle('listname')/items
Retrieves the list items in a specified list.
GET
http://[sharepointsi... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-rest-api-reference-for-sharepoint |
c9b16889a8ce-2 | Use OData query operations in SharePoint REST requests
SharePoint 2013: Perform basic data access operations by using REST in apps
Basic CRUD operations in SharePoint Add-ins using the REST/OData APIs
Choose the right API set in SharePoint
Complete basic operations using JavaScript library code in Share... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/bcs-rest-api-reference-for-sharepoint |
55c35f20f413-0 | Learn how to use the SharePoint client object model to work with Business Connectivity Services (BCS) objects in SharePoint using browser-based scripting.
This article demonstrates how to set up an external list that retrieves data from an Open Data protocol (OData) source using the client object model in SharePoint.... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-the-client-code-library-to-access-external-data-in-sharepoint |
55c35f20f413-1 | Create an App for SharePoint project.
Specify the app settings, including app name, the site URL for debugging the app, and how you want to host the app (Autohosted, Provider-hosted, SharePoint-hosted). For more information about hosting options, see Choose patterns for developing and hosting your SharePoint Ad... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-the-client-code-library-to-access-external-data-in-sharepoint |
55c35f20f413-2 | The next objective is to modify the default.aspx page that you created when you created your app. You add a container that will hold the results of the query that is executed with the page loads. By executing the scripts on the page load event, you ensure that the script will be executed every time the page is browsed,... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-the-client-code-library-to-access-external-data-in-sharepoint |
55c35f20f413-3 | // Namespace
window.AppLevelECT = window.AppLevelECT || {};
// Constructor
AppLevelECT.Grid = function (hostElement, surlWeb) {
this.hostElement = hostElement;
if (surlWeb.length > 0 && surlWeb.substring(surlWeb.length - 1, surlWeb.length) != "/")
surlWeb += "/";
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-the-client-code-library-to-access-external-data-in-sharepoint |
55c35f20f413-4 | ExecuteOrDelayUntilScriptLoaded(getCustomers, "sp.js");
});
function getCustomers() {
var grid = new AppLevelECT.Grid($("#displayDiv"), _spPageContextInfo.webServerRelativeUrl);
grid.init();
}
Press F5 to deploy the app to SharePoint. Browse to the Default.aspx page in the app, and a list of customers appea... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-use-the-client-code-library-to-access-external-data-in-sharepoint |
aa0401507e86-0 | Learn the steps for creating external event receivers for on-premises installations of Business Connectivity Services (BCS) external lists.
External event receivers are classes that enable SharePoint Add-ins to respond to events that occur to SharePoint items, such as lists or list items. For example, you can respond... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-1 | Northwind sample database
Build the components for external systems
The biggest part of the configuration actually happens on the external system. For external event receivers to work correctly, the following components must be present and working on the external system:
Subscription store: A table tha... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-2 | Create the subscription store
When the Northwind database is installed, open a new query window and execute the following script.
USE [Northwind]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[EntitySubscribe](
[SubscriptionId] [int] IDENTITY(1,1) NOT NULL,
[EntityName] [nvarchar](... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-3 | GO
This creates a table in the Northwind database named EntitySubscribe. This serves as the subscription store referred to earlier.
Create the change store
Run the following script to create the change table that will record changes to the data in the Customers table.
USE [Northwind]
GO
SET ANSI_NULLS ON
GO
... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-4 | GO
This adds a table named Customers_Updates that stores the information about the record that was added to the Customers table.
Create the change trigger
The change trigger is fired when changes happen to the Customers table. Whenever a record is added to Customers, SQL Server executes the trigger, which insert... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-5 | SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE trigger [dbo].[Customer_insupd] on [dbo].[Customers] for
INSERT
AS
DECLARE
@CustomerID nchar(5),
@CompanyName nvarchar(40),
@ContactName nvarchar(30) ,
@ContactTitle nvarchar(30) ,
@Address nvarchar(60) ,
@City nvarchar(15) ,
@Region... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-6 | Note
f you are using your own custom stored procedures as defined in your BDC model, you might also want to create the delete and update triggers. The additional triggers are not be covered as part of this scenario.
Create the stored procedures
If you are using direct table access with Business Connectivity Ser... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-7 | Create the OData Service
The OData feed is hosted inside a WCF Data Service . This WCF service is then hosted by IIS in a web application.
The following steps create a new ASP.NET WCF data service.
To create the WCF Data Service application
In Visual Studio 2012, on the File menu, choose New , Projec... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-8 | -or-
If you have a database connection already configured to connect to the Northwind database, choose that connection from the list of connections, and then choose Next .
On the final page of the wizard, select the check boxes for all tables in the database, and clear the check boxes for views and stored proc... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
aa0401507e86-9 | To set the security on the service
You now have to modify the security to allow access to the data from the OData feed by external consumers. When a WCF service is created, all access is denied by default. Make the following changes to the class you just created.
config.SetEntitySetAccessRule("*", EntitySetR... | https://learn.microsoft.com/en-us/sharepoint/dev/general-development/how-to-create-external-event-receivers |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.