インタビュー・スケジュール済通知の作成およびインタビューの場所の正しい表示

通知テンプレートのコンテンツをコピーしてインタビュー・スケジュール済通知を作成すると、テンプレートで使用されるGroovy式は失われます。

インタビューの場所の詳細を正しく表示するには、場所情報とInterviewSchedulingLocationSingleLineAddressトークンを示すメッセージ・テキストにGroovy式を追加する必要があります。次に例を示します。

ノート: この例では、英語のラベル("Location: "、"Phone Number:"、"Access Code:")を使用しています。他の言語では、これらのラベルを適切な言語で翻訳する必要があります。

<% if (InterviewSchedulingLocationTypeCode == "ORA_IS_LOCATION_PHONE") print("Location:" + InterviewSchedulingLocationPhoneNumber); %> <% if (InterviewSchedulingLocationTypeCode == "ORA_IS_LOCATION_WEBCONFERENCE" && InterviewSchedulingOnlineMeetingProvider != "ORA_IS_TEAMS" && InterviewSchedulingOnlineMeetingProvider != "ORA_IS_ZOOM") print("Location:" + InterviewSchedulingLocationWebConferenceLink + " Phone Number: " + InterviewSchedulingLocationPhoneNumber + " Access Code: " + InterviewSchedulingLocationPhoneNumberPasscode); %> <% if (InterviewSchedulingLocationTypeCode == "ORA_IS_LOCATION_WEBCONFERENCE" && (InterviewSchedulingOnlineMeetingProvider == "ORA_IS_TEAMS" || InterviewSchedulingOnlineMeetingProvider == "ORA_IS_ZOOM")) { print("Location: " + InterviewSchedulingLocationWebConferenceLink); if (InterviewSchedulingLocationPhoneNumberPasscode != null && InterviewSchedulingLocationPhoneNumberPasscode != "") print(" Access Code: " + InterviewSchedulingLocationPhoneNumberPasscode);}%> <% if (InterviewSchedulingLocationTypeCode == "ORA_IS_LOCATION_IN_PERSON") print("Location: " + InterviewSchedulingLocationSingleLineAddress);%>