DBA Data[Home] [Help]

APPS.MSD_SCE_PUBLISH_FORECAST_PKG dependencies on FND_LOOKUP_VALUES_VL

Line 188: from fnd_lookup_values_vl

184: p_horizon_end := nvl(l_horizon_start, sysdate)+nvl(p_horizon_days, 365);
185:
186: select meaning
187: into l_order_type
188: from fnd_lookup_values_vl
189: where lookup_type = 'MSC_X_ORDER_TYPE'
190: and lookup_code = p_order_type;
191:
192: if p_org_code is not null then

Line 473: from fnd_lookup_values_vl

469: for j in numFirst..numLast loop
470:
471: select meaning
472: into l_bkt_desc
473: from fnd_lookup_values_vl
474: where lookup_type = 'MSC_X_BUCKET_TYPE' and
475: lookup_code = decode(t_bkt_type(j), 9, 1, 1, 2, 3);
476:
477: t_bkt_type_desc(j) := l_bkt_desc;