InsertEBXCodeList.RdThis 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  | 
|---|---|
| cl_name | code list name which the data will be read from. Please, see
the code list options by running the function  | 
| folder | folder name in EBX that the code list is stored.  Please, see
the code list options by running the function  | 
| branch | branch name. | 
| instance | instance name. | 
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') # }