DBA Data[Home] [Help]

APPS.WIP_COMMON dependencies on WIP_ACCOUNTING_CLASSES

Line 250: from wip_accounting_classes wac

246: V_DISABLE_DATE DATE;
247:
248: BEGIN
249: select nvl(wac.disable_date, SYSDATE + 1) into V_DISABLE_DATE
250: from wip_accounting_classes wac
251: where
252: wac.organization_id = X_ORG_ID and
253: wac.class_type = DECODE(X_ENTITY_TYPE, 1, WIP_CONSTANTS.DISC_CLASS,
254: 2, WIP_CONSTANTS.REP_CLASS,

Line 295: /*if no entry in cst_cg_wip_acct_classes, we will only check disabled from wip_accounting_classes*/

291: return v_ret;
292: end if;
293: exception
294: when NO_DATA_FOUND then
295: /*if no entry in cst_cg_wip_acct_classes, we will only check disabled from wip_accounting_classes*/
296: v_ret := check_disabled(X_CLASS, X_ORG_ID, X_ENTITY_TYPE);
297: return v_ret;
298:
299: END;