This function deletes a single data row from a code list stored in EBX5.

EBXRemove(branch, instance, table, data, connection = NA)

Arguments

branch

dataset branch

instance

dataset instance

table

ebx5 table name

data

a data.frame that will be removed. data must specify the unique primary key(s); which identify the row to be removed.

connection

the result of GetEBXConnection; optional

Value

boolean

Details

All fields of a primary key (usually the Identifier) must be present. Using the SOAP-API the column names and tabe table name are not the label visible in EBX, but the name. Requires that the EBX5 connection was configured using SetupEBXConnection.

Author

Thomas Berger, thomas.berger@fao.org

Examples

if (FALSE) { cl_remove <- data.frame( Identifier = c(999)) EBXRemove( branch = 'Fishery', instance = 'Fishery', table = 'Test_table', data = cl_remove) }