DBA Data[Home] [Help]

APPS.MO_GLOBAL dependencies on MO_UTILS

Line 48: -- APIs provided within this package and the MO_UTILS package.

44: --
45: -- Product teams should never access the temporary table directly
46: -- because it may become obsolete in the future.
47: -- The contents of the temporary table can be accessed by the
48: -- APIs provided within this package and the MO_UTILS package.
49:
50: PROCEDURE populate_orgs (p_org_id_char IN VARCHAR2,
51: p_sp_id_char IN VARCHAR2,
52: p_current_org_id OUT NOCOPY VARCHAR2,

Line 1226: mo_utils.get_default_org_id);

1222: -- from current org_id. If that is also not available, get the default
1223: -- org_id
1224: --
1225: l_org_id := NVL(mo_global.get_current_org_id,
1226: mo_utils.get_default_org_id);
1227: ELSE
1228: --
1229: -- If p_org_id is null or different from G_MISS_NUM
1230: -- use explicitly passed in org_id

Line 1354: FND_MESSAGE.SET_TOKEN('ORG_NAME', mo_utils.get_org_name(ORG_ID));

1350: STATUS:='S';
1351: ELSE
1352: IF ERROR_MESG_SUPPR = 'N' THEN
1353: FND_MESSAGE.SET_NAME('FND','FND_MO_INVALID_OU_API');
1354: FND_MESSAGE.SET_TOKEN('ORG_NAME', mo_utils.get_org_name(ORG_ID));
1355: FND_MESSAGE.SET_TOKEN('ORG_ID', ORG_ID);
1356: FND_MSG_PUB.ADD;
1357: APP_EXCEPTION.RAISE_EXCEPTION;
1358: END IF;