Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.
SOLVED

Need Help Barcodes code 128

Avatar

Former Community Member

I cannot find any reference instructions for adobe x livecycle to add barcodes for code 128 and code 39.  Found a lot of information for 2D, QR Code and DataMatrix barcodes.    I need to generate a barcode for user entered information from 4 fields on the form: invoice number (6 numbers), customer number (6 numbers), branch ID (3 numbers) and document date (mmddyyy).

I have tried many times without success.  There are great step-by-step instructions for 2D barcode but not code 39 or code 128a,b,c.

Can another please help me out.  Point me to a good example or walk me thru how to do this with code 128.

Thank you

David

 

1 Accepted Solution

Avatar

Correct answer by
Former Community Member

Code 309 and 128 barcodes are just part of the standard design environment without any special requirements. Simply treat the barcode values as you would standard text fields to change their values.  (ie: barcode128.rawValue = mynewfield.rawValue;).

View solution in original post

2 Replies

Avatar

Correct answer by
Former Community Member

Code 309 and 128 barcodes are just part of the standard design environment without any special requirements. Simply treat the barcode values as you would standard text fields to change their values.  (ie: barcode128.rawValue = mynewfield.rawValue;).

The following has evaluated to null or missing: ==> liqladmin("SELECT id, value FROM metrics WHERE id = 'net_accepted_solutions' and user.id = '${acceptedAnswer.author.id}'").data.items [in template "analytics-container" at line 83, column 41] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign answerAuthorNetSolutions = li... [in template "analytics-container" at line 83, column 5] ----