SQL Object
 
Syntax
 
SQL.SearchLocation([Warehouse][, Location][, OnlyAutoNumbering][, AltCaption])
 
Description
High-level function used to select a location in a warehouse.
 
After selection, the function returns a string value in which the warehouse and location are represented, separated by a tab character (ASCII 9).
 
Parameter
Description
Warehouse
Optional. Specifies which warehouse should be selected. If not specified, the default warehouse for the active user is selected.
Location
Optional. Specifies which location should be selected. If not specified, then no location is entered in the dialog box.
OnlyAutoNumbering
Optional, default value FALSE. When TRUE, only locations used for car numbering are listed (with wildcard characters "#")
AltCaption
Optional. Allows an alternative title to be specified in the dialog box.
 
See Also
other SQL.Searchxxxxxxxx functions.
Example
 
Sub Main
 
      Debug.Print SQL.SearchLocation("CENTRAAL", "A1", False, "Hello!")
 
End Sub