Syntax

Invoked when the XML parser detects an entity that it does not parse (where "unparsed entity" has the definition given in the XML 1.0 specification).

PROCEDURE UnparsedEntityDecl:
  DEFINE INPUT PARAMETER name         AS CHARACTER.
  DEFINE INPUT PARAMETER publicID     AS CHARACTER.
  DEFINE INPUT PARAMETER systemID     AS CHARACTER.
  DEFINE INPUT PARAMETER notationName AS CHARACTER.
name
A character string indicating the name of the entity.
publicID
Optional. A character string indicating the public identifier of the entity. If publicID is not supplied, the character string is of length zero.
systemID
Optional. A character string representing the system identifier of the entity. If systemID is not supplied, the character string is of length zero. systemID must be one of the following:
  • Absolute file path
  • Relative file path
  • Absolute URI
notationName
A character string indicating the name of the notation associated with the entity.