DBA Data[Home] [Help]

APPS.PA_UTILS2 dependencies on DUAL

Line 915: FROM DUAL;

911: SELECT decode(nvl(g_profile_value,'N'),
912: 'Y', pa_utils2.get_pa_date( exp_item_date,accounting_date,org_id),
913: 'N', pa_integration.get_raw_cdl_pa_date(exp_item_date,accounting_date,org_id))
914: INTO l_return_date
915: FROM DUAL;
916: RETURN l_return_date;
917: END pa_date_profile;
918:
919: FUNCTION pa_period_name_profile

Line 932: FROM DUAL;

928: SELECT decode(nvl(g_profile_value,'N'),
929: 'Y', pa_utils2.get_period_name(),
930: 'N', pa_integration.get_period_name())
931: INTO l_return_name
932: FROM DUAL;
933: RETURN l_return_name;
934: END pa_period_name_profile;
935:
936: --------------------------------------------------------------