Sometimes you want use different delivery methods between your local and remote environments. This can be implemented with the help of LinkId parameter, which links unique number aliases for your environments and allows to switch between them by a single task parameter in the RTR.
First of all, edit the config file.
<CODE>
IF :param_SpokeSID: = 'SPOKE_SID_1' THEN Â [
IF :LinkId: = '1' THEN Â [
Delivery Method and Destination Credentials 1
];
IF :LinkId: = '2' THEN Â [
Delivery Method and Destination Credentials 2
];
];
IF :param_SpokeSID: = 'SPOKE_SID_2' Â THEN Â [
IF : LinkId: = '1' THEN Â [
Delivery Method and Destination Credentials 1
];
IF : LinkId: = '2' THEN Â [
Delivery Method and Destination Credentials 2
];
];
</CODE>