Hello, I'm new to APEX and I'm trying understand some concepts. I've found that in several forums and question discussions sometimes the terms security group and workspace are mixed up. Also when making use of the APEX API, in function calls like the following:
APEX_UTIL.FIND_WORKSPACE (p_security_group_id =>'20'); -- it's passing the security group id to get the workspace name, why not workspace ID? are they the same?
apex_util.find_security_group_id (p_workspace => 'PROJECTS'); -- it's passing the workspace name to get the security group id
Are these two concepts the same thing? So, whenever I refer to security_group_id, I'm refering to workspace_id.
Thank you in advance!