Skip to contents

This function retrieves the project configuration (if existent) from an iDAI.field project. The list will only contain fields and valuelists that have been edited in the project configuration editor in iDAI.field 3 (Field Desktop) and does not encompass fields, valuelists and translation added before the update to iDAI.field 3.

Usage

get_configuration(connection, projectname = NULL)

Arguments

connection

A connection object as returned by connect_idaifield()

projectname

(deprecated) The name of the project in the Field Client that one wishes to load. Will overwrite the project argument that was set in connect_idaifield().

Value

A list containing the project configuration; NA if the configuration could not be found or the connection failed.

See also

Examples

if (FALSE) {
conn <- connect_idaifield(serverip = "127.0.0.1",
user = "R", pwd = "hallo", project = "rtest")
config <- get_configuration(connection = conn,
projectname = "rtest")
}