DBA Data[Home] [Help]

APPS.PA_PAXMGPBS_XMLP_PKG dependencies on PA_LOOKUPS

Line 61: select meaning into enter_param from pa_lookups where

57:
58:
59: if (p_start_organization_id is null and
60: project_member is null) then
61: select meaning into enter_param from pa_lookups where
62: lookup_type = 'ENTER VALUE' and
63: lookup_code = 'ENTER_ORG_MGR';
64: end if;
65: c_enter := enter_param;

Line 114: from pa_lookups where

110: c_never_billed := p_never_billed;
111:
112: if billing_method is not null then
113: select meaning into p_billing_method
114: from pa_lookups where
115: billing_method = lookup_code
116: and lookup_type = 'BILLING_TYPE';
117: end if;
118: c_billing_method := p_billing_method;

Line 219: from pa_lookups

215: l_meaning varchar2(20);
216: begin
217: select meaning
218: into l_meaning
219: from pa_lookups
220: where lookup_type = 'YES_NO'
221: and lookup_code = nvl(enable_top_task_inv_mth_flag, 'N');
222:
223: return l_meaning;