DBA Data[Home] [Help]

APPS.PA_PROJECT_SUBTEAM_UTILS dependencies on PA_TEAM_TEMPLATES

Line 91: from pa_team_templates

87: where name = p_object_name;
88:
89: cursor c_team_template is
90: select team_template_id
91: from pa_team_templates
92: where team_template_name=p_object_name;
93: BEGIN
94: if (p_object_type = 'PA_PROJECTS') then
95: open c_project;

Line 104: elsif (p_object_type = 'PA_TEAM_TEMPLATES') then

100: close c_project;
101: return;
102: end if;
103: close c_project;
104: elsif (p_object_type = 'PA_TEAM_TEMPLATES') then
105: open c_team_template;
106: fetch c_team_template into p_object_id;
107: if (c_team_template%NOTFOUND) then
108: x_return_status := FND_API.G_RET_STS_ERROR;