we have a business requirement to get lot number from M3 then generate barcode and send that in notification through workflow.Are there any ways to implement this in Infor M3/ION Or any other Infor products?
Basic workflow.
Declare variables like this:
''chaine'' is the input parameter = your batch number. Suppose chaine = ABCDEF.
Il you want to create a 1D Code128 barcode for the string ABCDEF, URL is the following one:
https://barcode.tec-it.com/barcode.ashxABCDEF&code=Code128&translate-esc=on
http1 = ''https://barcode.tec-it.com/barcode.ashx?data=''
http2 = ''&code=Code128&translate-esc=on''
Set parameter activity to concatenate variables in order to create the proper URL
Send notification with http parameter as a link. Receive it.
Hello,
What kind of object are you expecting in the notification ? An attachment ? A simple link to a barcode ?
Hi,
I need barcode as an attachment in notification.
Unless i am wrong, Mingle ION API is deprecated.
I would investigate two options :
easy one : use a link (barcode.tec-it.com for example)
more complex: use a drillback in the notification to IDM where the barcode has been previously stored.
You can use a XML adhoc on MILOMA table to send the corresponding printer to IDM print (API AHS150MI to submit the job). With a dedicated layout_template in IDM, you should be able to transform your batch string to a barcode, store the document with particular document type and trigger the workflow from SyncContentDocument.
Thank you!