Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
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>