このプロシージャを使用して、アプリケーションの翻訳バージョンを公開します。このプロシージャは基礎となる、プライマリ・アプリケーションの非表示のレプリカを作成し、この新しいアプリケーションの翻訳リポジトリからの文字列をマージします。アプリケーションの翻訳バージョンを更新するたびに、シードおよび公開プロセスを実行し、プライマリ・アプリケーションと同期させます。
このアプリケーションはアプリケーション・ビルダーでは表示できません。公開およびエクスポートはできますが、直接編集することはできません。
注意:
このプロシージャはApplication Expressリリース4.2.3以降で使用できます。
構文
APEX_LANG.PUBLISH_APPLICATION ( p_application_id IN NUMBER, p_language IN VARCHAR2 )
パラメータ
表21-5 PUBLISH_APPLICATIONパラメータ
パラメータ | 説明 |
---|---|
|
翻訳バージョンを公開および作成するアプリケーションのID。これはプライマリ言語アプリケーションのIDです。 |
|
既存の翻訳マッピング用のIANA言語コード。たとえば、en-us、fr-ca、ja、heがあります。 |
例
次の例に、Application Expressアプリケーションおよび言語の公開プロセスを示します。
begin -- -- If running from SQL*Plus, we need to set the environment -- for the Application Express workspace associated with this schema. The -- call to apex_util.set_security_group_id is not necessary if -- you're running within the context of the App Builder -- or an Application Express application. -- for c1 in (select workspace_id from apex_workspaces) loop apex_util.set_security_group_id( c1.workspace_id ); exit; end loop; -- Now, publish the translated version of the application apex_lang.publish_application( p_application_id => 63969, p_language => 'ja' ); commit; end; /
親トピック: APEX_LANG