Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PentaHelix/7ef2ba2210d15201dcb4ffbd4d728e0a to your computer and use it in GitHub Desktop.
Save PentaHelix/7ef2ba2210d15201dcb4ffbd4d728e0a to your computer and use it in GitHub Desktop.
Check of character set / codepage inconistency at PDF generation
The error message "PPPD9026E: Character definition UNIC0009 is missing from C0COUN90 characterset"
or "PPPD9026E;"Character definition 09 is missing from T1GI0361 characterset." (since v080724.v620)
indicate that the character referenced with codepoint "UNIC0009" (older message) resp. decimal code
"09" (newer message; decimal code, e.g. 64 refers to x"40" which usually refers to the space character
frequently defined as default character in AFP fonts) is not defined in the character set. In this sample
the error refers to the control character "TAB". In many cases the control characters located in the line
data and taken over into AFP text are the reason for this message. Therefore the solution in such cases is
to remove the control characters from the input data.
Note: Different behavior between older and newer versions: The default behavior was improved.
Upgrading from older versions to the version on this CD may lead to different results. Please carefully
read the description and check if existing projects are concerned.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment