機械翻訳について

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

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

インタビューのロケーションの詳細を正しく表示するには、ロケーション情報およびInterviewSchedulingLocationSingleLineAddressトークンを示すメッセージ・テキストにgroovy式を追加する必要があります。 次に例を示します。

ノート: 例では、英語のラベルを使用しています("Location: ", "Phone Number: " and "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);%>