-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read and write metadata of a list item --------- Co-authored-by: Konrad Milewski <[email protected]> Co-authored-by: mazhelez <[email protected]> Co-authored-by: Maria Zhelezova <[email protected]>
- Loading branch information
1 parent
535ebb0
commit 9232b26
Showing
10 changed files
with
263 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Modules/System/SharePoint/src/SharePointEvents.Codeunit.al
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
codeunit 9112 "SharePoint Events" | ||
{ | ||
Access = Public; | ||
|
||
[IntegrationEvent(false, false)] | ||
/// <summary> | ||
/// Process SharePointFile Metadata - Use to extract custom meta data into model record | ||
/// </summary> | ||
/// <remarks>Extend the "SharePoint File" table to store any custom data.</remarks> | ||
/// <param name="Metadata">__metadata node of SharePointFile Json Object</param> | ||
/// <param name="SharePointFile">SharePointFile temporary record.</param> | ||
internal procedure ProcessSharePointFileMetadata(Metadata: JsonToken; var SharePointFile: Record "SharePoint File" temporary) | ||
begin | ||
end; | ||
|
||
[IntegrationEvent(false, false)] | ||
/// <summary> | ||
/// Process SharePointListItem Metadata - Use to extract custom mete data into model record | ||
/// </summary> | ||
/// <remarks>Extend the "SharePoint List Item" table to store any custom data.</remarks> | ||
/// <param name="Metadata">__metadata node of SharePointListItem Json Object</param> | ||
/// <param name="SharePointListItem">SharePointListItem temporary record.</param> | ||
internal procedure ProcessSharePointListItemMetadata(Metadata: JsonToken; var SharePointListItem: Record "SharePoint List Item" temporary) | ||
begin | ||
end; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.