DBA Data[Home] [Help]

APPS.EDR_PSIG dependencies on FND_DOCUMENT_CATEGORIES_VL

Line 296: from fnd_document_categories_vl

292: l_erecord_id := p_target_value;
293:
294: /* obtain the category id of the document category 'ERES' */
295: select category_id into l_eres_category_id
296: from fnd_document_categories_vl
297: where name = 'ERES';
298:
299: --Bug 4006844: Start
300: --Obtain the ID of the document category specified in workflow.

Line 303: from fnd_document_categories_vl

299: --Bug 4006844: Start
300: --Obtain the ID of the document category specified in workflow.
301: if(l_category_name is not null) then
302: select category_id into l_category_id
303: from fnd_document_categories_vl
304: where name = l_category_name;
305: end if;
306: --Bug 4006844: End
307: