Skip to main content
Solved

Concatenate Barcode

  • 24 July 2023
  • 1 reply
  • 87 views

Has anyone tried to concatenate a barcode for the Scan Move form?  For example, I would like to concatenate Production Nbr & Operation & Quantity into one bar code.  I attempted to modify the Production Ticket with Barcode and attemped these codes for starters: 

=pAMProdItem.ProdOrdID]+'<CR>'+;AMProdOper.OperationCD]

=pAMProdItem.ProdOrdID]+'Chr(13)'+)AMProdOper.OperationCD]

=pAMProdItem.ProdOrdID]+'Chr(19)'+)AMProdOper.OperationCD]

=pAMProdItem.ProdOrdID]+’\n’+™AMProdOper.OperationCD]

=/AMProdItem.ProdOrdID]+’\r’+’\n’+\AMProdOper.OperationCD]

 

I obviously don’t know what I’m doing trying to code the carriage return / pause/break / line feed to make it work with the Scan Move form.  The codes above do combine it into one barcode, but the issue is whether I can code something into the barcode that pauses for a second while the Scan Move form moves on to the next prompt.

 

Just here to point out that these two lines 

==AMProdItem.ProdOrdID]+’\n’+nAMProdOper.OperationCD]

=rAMProdItem.ProdOrdID]+’\r’+’\n’+âAMProdOper.OperationCD]

use the 

’

instead of 

'

I can’t speak to your use case, but I would suggest trying this format:

=Concat(gAMProdItem.ProdOrdID],'\r\n',.AMProdOper.OperationCD])

 


Reply