Synergex / CodeGen

CodeGen is a tool that Synergy/DE developers can use to generate source code and other types of content based on the meta-data stored in a Synergy Repository.
Other
16 stars 8 forks source link

<TAGLOOP_TAG_VALUE> Error #39

Open glewis64 opened 10 months ago

glewis64 commented 10 months ago
  1. We use CodeGen to generate out code for SQL Replication
  2. We have a structure that has: Tag FIELD PRPROD NE " "
  3. PRPROD is defined as an ALPHA, Size 16 in the structure
  4. Our CodeGen template contains
  5. if (tmprec.) begin
  6. Generated code:
  7. if (tmprec.prprod.NE." ") begin
  8. The quoted blank string is only 15 characters long
  9. This field contains right justified alpha characters.
  10. “xxxxxxxxxxxxxxx1”, x’s represents blanks, specified only for clarity of discussion.

We just tried the latest version of CodeGen and it made no difference.