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 1361: mo_utils.get_default_org_id);

1357: -- from current org_id. If that is also not available, get the default
1358: -- org_id
1359: --
1360: l_org_id := NVL(mo_global.get_current_org_id,
1361: mo_utils.get_default_org_id);
1362: ELSE
1363: --
1364: -- If p_org_id is null or different from G_MISS_NUM
1365: -- use explicitly passed in org_id

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

1485: STATUS:='S';
1486: ELSE
1487: IF ERROR_MESG_SUPPR = 'N' THEN
1488: FND_MESSAGE.SET_NAME('FND','FND_MO_INVALID_OU_API');
1489: FND_MESSAGE.SET_TOKEN('ORG_NAME', mo_utils.get_org_name(ORG_ID));
1490: FND_MESSAGE.SET_TOKEN('ORG_ID', ORG_ID);
1491: FND_MSG_PUB.ADD;
1492: APP_EXCEPTION.RAISE_EXCEPTION;
1493: END IF;