Contact for Service
catworkx GmbH
Schellerdamm 16
21079 Hamburg
Germany
> Get Support
<
Content
...
| Tip |
|---|
See the demo package under Downloads. |
Configure Read the following:
| Table of Contents |
|---|
...
call: Prefix to tell the mapping it is a functionPerl::Path: Module's Perl packageModule: odule's namefunctionName: Name of the function to call inside of the module...
Functions called on the left hand side, the function mapOTRSOptionFieldDemoUser2JIRAAssignee in the screenshot above, will be passed three parameters:
...
| Code Block | ||
|---|---|---|
| ||
my ($TicketJIRAObj, $fieldmapping, %Ticket) = @_; |
...
Functions called on the right hand side, the function mapOTRSOptionToJIRAOption in the screenshot above, will be passed four parameters:
...
Strictly speaking you can do anything, even just create a value to be send to Jira for a special field.
...
| Key | Contents |
|---|---|
call:Douglas::Adams::HHGTTG,answer | cust:answer |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
package call:Douglas::Adams;
use strict;
sub answer {
my ($TicketJIRAObj, $fieldmapping, %Ticket) = @_; // ignored in this example anyway
return 42; // this is the only important answer anyway :-)
} |