EInvoiceJourBaseMap_MX.nextLine Method [AX 2012]

Moves the line collection to the next line.

public boolean nextLine()

Run On

Server

Return Value

Type: boolean
true if the line collection still has elements; otherwise, false.

Use this method to iterate through the map lines together with the current method.

The following example shows how to use the nextLine method:

while(map.nextLine())
{
EInvoiceTransBaseMap = map.currentLine();
//Stuff to do
}

Community Additions

ADD
Show: