DBA Data[Home] [Help]

APPS.PO_GMS_INTEGRATION_PVT dependencies on GMS_INSTALL

Line 210: -- @depends GMS_INSTALL.enabled()

206: -- @return
207: -- 'Y' if Grants is enabled for the specified organization; 'N' if
208: -- grants is not enabled for the specified organization.
209:
210: -- @depends GMS_INSTALL.enabled()
211: --
212: ---------------------------------------------------------------------
213: FUNCTION get_gms_enabled_flag(
214: p_org_id IN NUMBER

Line 223: IF(GMS_INSTALL.enabled(x_org_id => p_org_id)) THEN

219: BEGIN
220:
221: x_enabled_flag := 'N';
222:
223: IF(GMS_INSTALL.enabled(x_org_id => p_org_id)) THEN
224: x_enabled_flag := 'Y';
225: END IF;
226:
227: RETURN x_enabled_flag;