InsertEBXCodeList.Rd
This function aimed to insert data rows into a code list stored in EBX5 through R.
InsertEBXCodeList(data, cl_name, folder, branch = "Fishery", instance = "Fishery")
data | a |
---|---|
folder | folder name in EBX that the code list is stored. Please, see
the code list options by running the function |
boolean
Note that the new rows must have the same columns name os the table that will be appended.
# NOT RUN { cl_new <- data.frame( Identifier = c(999, 888), Acronym = 'TEST_ACRONYM', Folder = 'TESTFOLDER', Name = 'TEST_NAME', Branch = 'Fishery', Instance = 'Fishery') InsertEBXCodeList(data = cl_new, cl_name = 'EBXCodelist', folder = 'Metadata', branch = 'Fishery', instance = 'Fishery') # }