Agus Mujtahid
11th February 2010, 11:27
Dear all,
Please help me,We have session with form type 3 (Multi occurence with view).
We have form fields (not multi occurence field) "vinil.code" and "label". in our process we fill field "vinil.code" with barcode.after we fill this field, we must press "TAB" button to go next field (field "label").and the same condition must be do by us to run function after we fill field "label". Can we do it automatically without press "TAB" button?detail session,see attachment.

Regards,

Mujtahid

manish_patel
11th February 2010, 12:52
In after.input subsection of the "vinil.code" field, you can use the function to.field() to transfers control to the specified field.

field.vinil.code:
after.input:
to.field("label")

mark_h
11th February 2010, 16:30
Or you can code a tab into the barcode field. On a couple of our internal tags that is how we handled it. Or in some cases you can code the bar code scanner to append a tab.

Agus Mujtahid
12th February 2010, 05:10
In after.input subsection of the "vinil.code" field, you can use the function to.field() to transfers control to the specified field.

field.vinil.code:
after.input:
to.field("label")

Hi Manish,
We tried this function,but there are no result.there are others idea?thanks

Agus Mujtahid
12th February 2010, 05:22
Or you can code a tab into the barcode field. On a couple of our internal tags that is how we handled it. Or in some cases you can code the bar code scanner to append a tab.

Guru, We tried to barcode our "vinil" and "tab" code, first we scan our "vinil" code then we scan our "tab" code, but cursor doesn't move to label field.
Can we combine vinil code and tab code in 1 line barcode? we tried it with bc$(10,4,"vinil")&bc$(10,4,chr$(9)), but our scanner can not read it.

Hitesh Shah
12th February 2010, 18:46
Dear all,
Can we do it automatically without press "TAB" button?detail session,see attachment.


Generally generating a TAB / ENTER after a bar code is read is a function bar code reader interface . If u configure bar code reader to generate TAB after bar code is read , Baan will execute all logical events and your problem should be resolved.

Agus Mujtahid
15th February 2010, 04:29
We use scanner Symbol LS2208. With this scanner we san set up for "Enter" ,but we could not set up it for "TAB". did you ever set up for this merk?

mark_h
16th February 2010, 02:43
I have not set this up for something like this. We use barcode 3 of 9 and on a couple of tags I just added a $I to the end of the field on the barcode. We use the RMC label product to generate barcodes on zebra label printers.

Agus Mujtahid
17th February 2010, 03:06
Hi, we tried your suggestion with this script:
asal=bc$(10,4,("AGUS MUJTAHID"&"$I")), but it is not work correctly.
Can you share your script to us? thanks

bdittmar
17th February 2010, 10:40
We use scanner Symbol LS2208. With this scanner we san set up for "Enter" ,but we could not set up it for "TAB". did you ever set up for this merk?

Hello,

change CR to TAB after reading Barcode.

Use the LS2208 product reference guide 5880806a.pdf downloadable fron Symbol.

Regards

Agus Mujtahid
18th February 2010, 06:51
Hello,

change CR to TAB after reading Barcode.

Use the LS2208 product reference guide 5880806a.pdf downloadable fron Symbol.

Regards

In this reference guide, "ENTER" displayed as single barcode, so we can set up it.But for "TAB", there are no single barcode for it, when we tried scan barcode 7 then 0,0 and then 9, the scanner can not work with the new setting. when we tried scan barcode on notepad, default setting still work on it (CR). what must we do after we scan 4 digit barcode 7,0,0,9 (TAB)?

Agus Mujtahid
24th February 2010, 07:12
Thank all,
We have been finished our explore on product reference guide 5880806a.pdf, we tried Guru's suggestion, it's solved our problems. thanks very much.