DBA Data[Home] [Help]

APPS.GMD_RECIPE_HEADER dependencies on FND_MESSAGE

Line 117: FND_MESSAGE.SET_NAME('GMD', 'GMD_MISSING_ORGANIZATION_ID');

113: END IF;
114:
115: --Check that owner organization id is not null if raise an error message
116: IF (p_recipe_header_rec.owner_organization_id IS NULL) THEN
117: FND_MESSAGE.SET_NAME('GMD', 'GMD_MISSING_ORGANIZATION_ID');
118: FND_MSG_PUB.Add;
119: RAISE FND_API.G_EXC_ERROR;
120: ELSE
121: --Check the owner organization id passed is process enabled if not raise an error message

Line 123: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');

119: RAISE FND_API.G_EXC_ERROR;
120: ELSE
121: --Check the owner organization id passed is process enabled if not raise an error message
122: IF NOT (gmd_api_grp.check_orgn_status(p_recipe_header_rec.owner_organization_id)) THEN
123: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
124: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.owner_organization_id);
125: FND_MSG_PUB.Add;
126: RAISE FND_API.G_EXC_ERROR;
127: END IF;

Line 124: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.owner_organization_id);

120: ELSE
121: --Check the owner organization id passed is process enabled if not raise an error message
122: IF NOT (gmd_api_grp.check_orgn_status(p_recipe_header_rec.owner_organization_id)) THEN
123: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
124: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.owner_organization_id);
125: FND_MSG_PUB.Add;
126: RAISE FND_API.G_EXC_ERROR;
127: END IF;
128: END IF;

Line 132: FND_MESSAGE.SET_NAME('GMD', 'GMD_MISSING_ORGANIZATION_ID');

128: END IF;
129:
130: --Check that creation organization id is not null if raise an error message
131: IF (p_recipe_header_rec.creation_organization_id IS NULL) THEN
132: FND_MESSAGE.SET_NAME('GMD', 'GMD_MISSING_ORGANIZATION_ID');
133: FND_MSG_PUB.Add;
134: RAISE FND_API.G_EXC_ERROR;
135: ELSE
136: --Check the creation organization id passed is process enabled if not raise an error message

Line 138: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');

134: RAISE FND_API.G_EXC_ERROR;
135: ELSE
136: --Check the creation organization id passed is process enabled if not raise an error message
137: IF NOT (gmd_api_grp.check_orgn_status(p_recipe_header_rec.creation_organization_id)) THEN
138: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
139: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.creation_organization_id);
140: FND_MSG_PUB.Add;
141: RAISE FND_API.G_EXC_ERROR;
142: END IF;

Line 139: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.creation_organization_id);

135: ELSE
136: --Check the creation organization id passed is process enabled if not raise an error message
137: IF NOT (gmd_api_grp.check_orgn_status(p_recipe_header_rec.creation_organization_id)) THEN
138: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
139: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_recipe_header_rec.creation_organization_id);
140: FND_MSG_PUB.Add;
141: RAISE FND_API.G_EXC_ERROR;
142: END IF;
143: END IF;

Line 168: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_RECIPE_TYPE');

164:
165: /* Validate the recipe_type field passed in */
166: IF p_recipe_header_rec.recipe_type IS NOT NULL THEN
167: IF p_recipe_header_rec.recipe_type NOT IN (0,1,2) THEN
168: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_RECIPE_TYPE');
169: FND_MSG_PUB.Add;
170: RAISE FND_API.G_EXC_ERROR;
171: END IF;
172: ELSE

Line 385: FND_MESSAGE.SET_NAME('GMD', 'GMD_RECIPE_DOES_NOT_EXIST');

381: X_RETURN_CODE => l_return_code ,
382: X_RECIPE_ID => l_recipe_id
383: );
384: IF (X_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
385: FND_MESSAGE.SET_NAME('GMD', 'GMD_RECIPE_DOES_NOT_EXIST');
386: FND_MSG_PUB.ADD;
387: RAISE FND_API.G_EXC_ERROR;
388: END IF;
389:

Line 550: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_RECIPE_TYPE');

546:
547: /* Validate the recipe_type field passed in */
548: IF p_recipe_header_rec.recipe_type IS NOT NULL THEN
549: IF p_recipe_header_rec.recipe_type NOT IN (0,1,2) THEN
550: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_RECIPE_TYPE');
551: FND_MSG_PUB.Add;
552: RAISE FND_API.G_EXC_ERROR;
553: END IF;
554: ELSE