DBA Data[Home] [Help]

APPS.OKE_DELIVERABLE_UTILS_PKG dependencies on FND_API

Line 854: return fnd_api.g_false;

850: update oke_deliverable_actions set expected_date = p_expected_date
851: where pa_action_id=p_pa_action_id
852: ;
853: if sql%rowcount <> 1 then
854: return fnd_api.g_false;
855: else
856: return fnd_api.g_true;
857: end if;
858: exception

Line 856: return fnd_api.g_true;

852: ;
853: if sql%rowcount <> 1 then
854: return fnd_api.g_false;
855: else
856: return fnd_api.g_true;
857: end if;
858: exception
859: when others then
860: return fnd_api.g_false;

Line 860: return fnd_api.g_false;

856: return fnd_api.g_true;
857: end if;
858: exception
859: when others then
860: return fnd_api.g_false;
861: end;
862:
863: end OKE_DELIVERABLE_UTILS_PKG;