Codeunit CCS DIS Mapping Adapter
codeunit 5100925 "CCS DIS Mapping Adapter"
Properties
Name |
Value |
TableNo |
CCS DIS Mapping Version |
Events
OnAfterMappingLine
event "CCS DIS Mapping Adapter" OnAfterMappingLine(var MappingLine: Record "CCS DIS Mapping Line")
The event is fired after the entire mapping line and it's sub-lines are executed.
All global mapping variables have been restored to pre-line values.
Parameters
Name |
Type |
Description |
MappingLine |
Record "CCS DIS Mapping Line" |
The mapping line that was executed. |
Attributes
Name |
Arguments |
IntegrationEvent |
False, False |
OnAfterProcessMapping
event "CCS DIS Mapping Adapter" OnAfterProcessMapping(MappingVersion: Record "CCS DIS Mapping Version")
The event is fired after the mapping is entirely executed.
All components are not disposed and available in register management.
If an error occurs, this event will not be fired.
Parameters
Name |
Type |
Description |
MappingVersion |
Record "CCS DIS Mapping Version" |
The mapping version that was executed. |
Attributes
Name |
Arguments |
IntegrationEvent |
False, False |
OnBeforeMappingLine
event "CCS DIS Mapping Adapter" OnBeforeMappingLine(var MappingLine: Record "CCS DIS Mapping Line")
The event is fired before the mapping line is executed.
The criteria have not been checked, yet. Neighter have the codeunits or variables been executed.
Parameters
Name |
Type |
Description |
MappingLine |
Record "CCS DIS Mapping Line" |
The mapping line to be executed. |
Attributes
Name |
Arguments |
IntegrationEvent |
False, False |
OnBeforeProcessMapping
event "CCS DIS Mapping Adapter" OnBeforeProcessMapping(MappingVersion: Record "CCS DIS Mapping Version")
The event is fired before the mapping is executing the lines, even before the dialog is created.
All components (record pool, variables, xml, json, ...) are already initialized.
Parameters
Name |
Type |
Description |
MappingVersion |
Record "CCS DIS Mapping Version" |
The mapping version to be executed. |
Attributes
Name |
Arguments |
IntegrationEvent |
False, False |
OnBreakLoop
event "CCS DIS Mapping Adapter" OnBreakLoop(MappingLine: Record "CCS DIS Mapping Line"; var RecordSet: Interface "CCS DIS Record Set Interface"; var BreakLoop: Boolean; EndOfRecords: Boolean)
The event is fired after a break loop was checked.
Parameters
Name |
Type |
Description |
MappingLine |
Record "CCS DIS Mapping Line" |
The current mappin line. |
RecordSet |
Interface "CCS DIS Record Set Interface" |
The current record set. |
BreakLoop |
Boolean |
Defines if a loop should be interrupted. |
EndOfRecords |
Boolean |
Shows if into the next record was put into register. |
Attributes
Name |
Arguments |
IntegrationEvent |
False, False |