Module CAP Online - Webmarketing Flow
Send your segments as marketing campaigns or e-mailing lists to your preferred e-mailing service. Get feedbacks from contacts that unsubscribe or do not want to be contacted anymore.
Properties
| Name | Value |
|---|---|
| Version | 25.202411.31834.0 |
| Publisher | Cap Vision |
| Brief | Synchronize your segments and contacts with an external e-mailing service. |
Namespace
| Name | Summary |
|---|---|
| CapVision |
Ajouter le composant SharePoint à des pages personnalisées
Vous pouvez ajouter le composant SharePoint à de nouvelles pages. Vous trouverez ci-dessous un exemple de code pour le faire.
namespace CapVision.Samples;
using Microsoft.HumanResources.Employee;
using CapVision.Online.WebmarketingFlow.SharePoint;
pageextension 50000 "My Employee List" extends "Employee List"
{
layout
{
addlast(factboxes)
{
part("Drop Record Link Part MJCAP"; "Drop Record Link Part MJCAP")
{
ApplicationArea = All;
UpdatePropagation = Both;
}
}
}
trigger OnAfterGetCurrRecord()
begin
CurrPage."Drop Record Link Part MJCAP".Page.SetRecordRef(Rec);
end;
}