DBA Data[Home] [Help]

APPS.JTF_UM_ROLE_VERIFICATION dependencies on FND_MESSAGE

Line 75: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_REQUIRED_FIELD');

71:
72: -- Validate required fields for not null values
73: if (auth_principal_name is null) then
74: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
75: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_REQUIRED_FIELD');
76: --FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME, FALSE);
77: FND_MESSAGE.Set_Token('API_NAME', 'IS_AUTH_PRINCIPAL_REFERRED', FALSE);
78: FND_MESSAGE.Set_Token('FIELD', 'auth_principal_name', FALSE);
79: FND_MSG_PUB.ADD;

Line 76: --FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME, FALSE);

72: -- Validate required fields for not null values
73: if (auth_principal_name is null) then
74: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
75: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_REQUIRED_FIELD');
76: --FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME, FALSE);
77: FND_MESSAGE.Set_Token('API_NAME', 'IS_AUTH_PRINCIPAL_REFERRED', FALSE);
78: FND_MESSAGE.Set_Token('FIELD', 'auth_principal_name', FALSE);
79: FND_MSG_PUB.ADD;
80: END IF;

Line 77: FND_MESSAGE.Set_Token('API_NAME', 'IS_AUTH_PRINCIPAL_REFERRED', FALSE);

73: if (auth_principal_name is null) then
74: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
75: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_REQUIRED_FIELD');
76: --FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME, FALSE);
77: FND_MESSAGE.Set_Token('API_NAME', 'IS_AUTH_PRINCIPAL_REFERRED', FALSE);
78: FND_MESSAGE.Set_Token('FIELD', 'auth_principal_name', FALSE);
79: FND_MSG_PUB.ADD;
80: END IF;
81: RAISE FND_API.G_EXC_ERROR;

Line 78: FND_MESSAGE.Set_Token('FIELD', 'auth_principal_name', FALSE);

74: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
75: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_REQUIRED_FIELD');
76: --FND_MESSAGE.Set_Token('PKG_NAME', G_PKG_NAME, FALSE);
77: FND_MESSAGE.Set_Token('API_NAME', 'IS_AUTH_PRINCIPAL_REFERRED', FALSE);
78: FND_MESSAGE.Set_Token('FIELD', 'auth_principal_name', FALSE);
79: FND_MSG_PUB.ADD;
80: END IF;
81: RAISE FND_API.G_EXC_ERROR;
82: end if;

Line 108: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_USERTYPE_ROLE');

104: and b.effective_end_date is null
105: and rownum = 1;
106:
107: -- throw exception for the usertype found
108: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_USERTYPE_ROLE');
109: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
110: FND_MESSAGE.Set_Token('USERTYPE_NAME', l_usertype_key , FALSE);
111:
112: FND_MSG_PUB.ADD;

Line 109: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);

105: and rownum = 1;
106:
107: -- throw exception for the usertype found
108: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_USERTYPE_ROLE');
109: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
110: FND_MESSAGE.Set_Token('USERTYPE_NAME', l_usertype_key , FALSE);
111:
112: FND_MSG_PUB.ADD;
113: RAISE FND_API.G_EXC_ERROR;

Line 110: FND_MESSAGE.Set_Token('USERTYPE_NAME', l_usertype_key , FALSE);

106:
107: -- throw exception for the usertype found
108: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_USERTYPE_ROLE');
109: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
110: FND_MESSAGE.Set_Token('USERTYPE_NAME', l_usertype_key , FALSE);
111:
112: FND_MSG_PUB.ADD;
113: RAISE FND_API.G_EXC_ERROR;
114: END IF;

Line 139: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');

135: and b.effective_end_date is null
136: and rownum = 1;
137:
138: -- throw exception for the enrollment found
139: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
140: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
141: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
142:
143: FND_MSG_PUB.ADD;

Line 140: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);

136: and rownum = 1;
137:
138: -- throw exception for the enrollment found
139: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
140: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
141: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
142:
143: FND_MSG_PUB.ADD;
144: RAISE FND_API.G_EXC_ERROR;

Line 141: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);

137:
138: -- throw exception for the enrollment found
139: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
140: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
141: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
142:
143: FND_MSG_PUB.ADD;
144: RAISE FND_API.G_EXC_ERROR;
145: END IF;

Line 166: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');

162: and a.effective_end_date is null
163: and rownum = 1;
164:
165: -- throw exception for the enrollment found
166: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
167: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
168: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
169:
170: FND_MSG_PUB.ADD;

Line 167: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);

163: and rownum = 1;
164:
165: -- throw exception for the enrollment found
166: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
167: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
168: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
169:
170: FND_MSG_PUB.ADD;
171: RAISE FND_API.G_EXC_ERROR;

Line 168: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);

164:
165: -- throw exception for the enrollment found
166: FND_MESSAGE.Set_Name('JTF', 'JTA_UM_ENROLLMENT_ROLE');
167: FND_MESSAGE.Set_Token('PRINCIPAL_NAME', auth_principal_name , FALSE);
168: FND_MESSAGE.Set_Token('ENROLLMENT_NAME', l_enrollment_key , FALSE);
169:
170: FND_MSG_PUB.ADD;
171: RAISE FND_API.G_EXC_ERROR;
172: END IF;