DBA Data[Home] [Help]

APPS.PA_UTILS2 dependencies on PA_INTEGRATION

Line 914: 'N', pa_integration.get_raw_cdl_pa_date(exp_item_date,accounting_date,org_id))

910:
911: /* Commented and added the following code as part of 10359385
912: SELECT decode(nvl(g_profile_value,'N'),
913: 'Y', pa_utils2.get_pa_date( exp_item_date,accounting_date,org_id),
914: 'N', pa_integration.get_raw_cdl_pa_date(exp_item_date,accounting_date,org_id))
915: INTO l_return_date
916: FROM DUAL;
917: */
918: IF nvl(g_profile_value,'N') ='Y'

Line 922: l_return_date:= pa_integration.get_raw_cdl_pa_date(exp_item_date,accounting_date,org_id);

918: IF nvl(g_profile_value,'N') ='Y'
919: THEN
920: l_return_date:= pa_utils2.get_pa_date( exp_item_date,accounting_date,org_id);
921: ELSE
922: l_return_date:= pa_integration.get_raw_cdl_pa_date(exp_item_date,accounting_date,org_id);
923: END IF;
924: RETURN l_return_date;
925: END pa_date_profile;
926:

Line 939: 'N', pa_integration.get_period_name())

935:
936: /* Commented and added the following code as part of 10359385
937: SELECT decode(nvl(g_profile_value,'N'),
938: 'Y', pa_utils2.get_period_name(),
939: 'N', pa_integration.get_period_name())
940: INTO l_return_name
941: FROM DUAL;
942: */
943: IF nvl(g_profile_value,'N') ='Y'

Line 947: l_return_name := pa_integration.get_period_name();

943: IF nvl(g_profile_value,'N') ='Y'
944: THEN
945: l_return_name := pa_utils2.get_period_name();
946: ELSE
947: l_return_name := pa_integration.get_period_name();
948: END IF;
949: RETURN l_return_name;
950: END pa_period_name_profile;
951: