460 ! & ! & ! MAPADD - Contents of an Address Record & ! & ! ADD.PRIME.ID$ primary ID (=primary key) & ! ADD.ALTERNATE.ID$ alternate ID & ! ADD.COUNTER% counter number & ! ADD.NAME$ address name & ! ADD.ADDRn$ address line number n & ! ADD.CITY$ city or town name & ! ADD.STATE$ state code or country name & ! ADD.ZIP$ zip code & ! ADD.CATn$ category information for category n & ! ADD.FUTURE$ unused & ! ADD.COMMENT$ remarks & ! & ! ADD.SECT1$ the address up to city & ! ADD.SECT2$ the address after zip & ! & ! ADD.COUNTER$ string counter (used for conversion) & ! ADD.ZIP.NUM$(9%) zip code in individual characters & ! ADD.CATEGORIES$(5%) categories (as an array) & ! & ! & ! ADD.CVF.1$ the address up to ADD.FUTURE$ & ! ADD.CVF.2$ the address after ADD.FUTURE$ & ! & ! ADD.ALL$ an entire address record & ! & !------------------------------------------------------------------- 660 & MAP (MAPADD) & & ADD.PRIME.ID$ = 16% & ,ADD.ALTERNATE.ID$ = 10% & ,ADD.COUNTER% & ,ADD.NAME$ = 30% & ,ADD.ADDR1$ = 30% & ,ADD.ADDR2$ = 30% & ,ADD.ADDR3$ = 30% & ,ADD.CITY$ = 30% & ,ADD.STATE$ = 12% & ,ADD.ZIP$ = 10% & ,ADD.CAT1$ = 10% & ,ADD.CAT2$ = 10% & ,ADD.CAT3$ = 10% & ,ADD.CAT4$ = 10% & ,ADD.CAT5$ = 10% & ,ADD.CAT6$ = 10% & ,ADD.FUTURE$ = 10% & ,ADD.COMMENT$ = 65% & ,FILL$ = 1% & ! Map of a mailing list record. & & \ MAP (MAPADD) & ADD.SECT1$ = 148% & ,FILL$ = 52% & ,ADD.SECT2$ = 136% & ! Breaks map into sections. Clearing ADD.SECT1$ & ADD.SECT2$ & ! only will leave the city, state, & zip fields intact. & & \ MAP (MAPADD) & FILL$ = 26% & ,ADD.COUNTER$ = 2% & ,ADD.ADDR$(4%) = 30% & ,FILL$ = 12% & ,ADD.ZIP.NUM$(9%) = 1% & ,ADD.CATEGORIES$(5%) = 10% & ,FILL$ = 76% & ! Map to convert ADD.COUNTER$ to ADD.COUNTER% & ! Also to refer to category entries by subscript. & ! Also to refer to zip code by individual characters. & & \ MAP (MAPADD) & ADD.CVF.1$ = 260% & ,FILL$ = 10% & ,ADD.CVF.2$ = 66% & ! These fields are used by M11FLC for packed/fixed record conversion. & ! ADD.FUTURE$ is not output to the fixed length file in order to get & ! a better record fit. & & & \ MAP (MAPADD) & ADD.ALL$ = 336% & &