How automatic cursor move to next lline or next specific control in RTC

Hi

In Nav 2009 R2 RTC there is no NextControl property. So in RTC How automatic cursor move to next line when barcode scan.

Please suggest me some solution.

Thanks

Abhishek

If I’m not wrong it’s not possible in NAV 2009 R2…

Hi Abhishek

I have written following code

Onvalidate Trigger

“Serial No.”:=txtSerialNo;

UpdateExpDateEditable;

“Quantity (Base)”:=1;

VALIDATE(“Quantity (Base)”);

VALIDATE(“Serial No.”);

txtSerialNo:=’’;

“Entry No.” := NextEntryNo;

“Qty. per Unit of Measure” := QtyPerUOM;

IF (NOT InsertIsBlocked) AND (NOT ZeroLineExists) THEN

IF NOT TestTempSpecificationExists THEN BEGIN

TempItemTrackLineInsert.TRANSFERFIELDS(Rec);

TempItemTrackLineInsert.INSERT;

INSERT;

ItemTrackingDataCollection.UpdateLotSNDataSetWithChange(

TempItemTrackLineInsert,CurrentSignFactor * SourceQuantityArray[1] < 0,CurrentSignFactor,0);

END;

CalculateSums;

CurrPage.UPDATE:=FALSE;

HI Amol,

Thanks for reply.

Have you written this code to move cursor at specific control in RTC.

I have defined one variable and wrote a code on on validate trigger.

Dear Amol,

We are currently implementing NAV 2013R2 at a client’s place and the client wants to shift to next line in same column upon scanning of serial no. in item tracking line. We have added an additional column to scan the barcode as the barcode and serial no. fields are not same for the client. I have used the code you gave but upon scanning, the next line is not shifting in the good column but rather in the next column on the next line. Any idea please on what can be causing this. Thank you for your help

Prema