33.8 GET_XLIFF_DOCUMENT Function
This function returns the XLIFF document for the specified language.
Syntax
APEX_LANG.GET_XLIFF_DOCUMENT (
  p_application_id          IN NUMBER,
  p_page_id                 IN NUMBER  DEFAULT NULL,
  p_language                IN VARCHAR2,
  p_only_modified_elements  IN BOOLEAN DEFAULT FALSE )
  RETURN CLOB;Parameters
| Parameter | Description | 
|---|---|
| p_application_id | Application ID of the primary application. | 
| p_page_id | (Optional) Page ID if the XLIFF document must only contain the specified page. | 
| p_language | The IANA language code for the existing translation mapping (such as en-us,fr-ca,ja,he). | 
| p_only_modified_elements | Choose whether to export all translatable elements of the application or only those elements which are new or have been updated. | 
Parent topic: APEX_LANG