def delete_wfc(wfcname):
    return bops.delete_ops('Workfunctioncontext', wfcname)
def delete_role(rolename):
    return bops.delete_ops('Role', rolename)
def delete_dept(deptname):
    return bops.delete_ops('Department', deptname)
def delete_ou(ouname):
    return bops.delete_ops('Orgunit', ouname)
def delete_org(oname):
    return bops.delete_ops('Organization', oname)
def delete_user(uname):
    return bops.delete_ops('User', uname)