DBA Data[Home] [Help]

APPS.GMD_RECIPE_HEADER_PVT dependencies on GMD_API_GRP

Line 212: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,

208: /* owner_orgn_code and creation_orgn_code */
209: /* is the creators orgn code. */
210: /* ============================================ */
211:
212: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,
213: X_out_rec => l_out_rec,
214: X_return_status => l_return_status);
215:
216: /*IF (l_out_rec.plant_ind <> 1 OR l_out_rec.lab_ind <> 1) THEN

Line 293: ,gmd_api_grp.user_id),

289: X_ATTRIBUTE30 => p_recipe_hdr_flex_rec.attribute30,
290: X_DELETE_MARK => 0,
291: X_TEXT_CODE => p_recipe_header_rec.text_code,
292: X_OWNER_ID => NVL(p_recipe_header_rec.owner_id
293: ,gmd_api_grp.user_id),
294: X_CREATION_DATE => NVL(p_recipe_header_rec.creation_date
295: ,SYSDATE),
296: X_CREATED_BY => NVL(p_recipe_header_rec.created_by
297: ,gmd_api_grp.user_id),

Line 297: ,gmd_api_grp.user_id),

293: ,gmd_api_grp.user_id),
294: X_CREATION_DATE => NVL(p_recipe_header_rec.creation_date
295: ,SYSDATE),
296: X_CREATED_BY => NVL(p_recipe_header_rec.created_by
297: ,gmd_api_grp.user_id),
298: X_LAST_UPDATE_DATE => NVL(p_recipe_header_rec.last_update_date
299: ,SYSDATE),
300: X_LAST_UPDATED_BY => NVL(p_recipe_header_rec.last_updated_by
301: ,gmd_api_grp.user_id),

Line 301: ,gmd_api_grp.user_id),

297: ,gmd_api_grp.user_id),
298: X_LAST_UPDATE_DATE => NVL(p_recipe_header_rec.last_update_date
299: ,SYSDATE),
300: X_LAST_UPDATED_BY => NVL(p_recipe_header_rec.last_updated_by
301: ,gmd_api_grp.user_id),
302: X_LAST_UPDATE_LOGIN => NVL(p_recipe_header_rec.last_update_login
303: ,gmd_api_grp.login_id),
304: X_FIXED_PROCESS_LOSS => p_recipe_header_rec.fixed_process_loss,
305: X_FIXED_PROCESS_LOSS_UOM => p_recipe_header_rec.fixed_process_loss_uom

Line 303: ,gmd_api_grp.login_id),

299: ,SYSDATE),
300: X_LAST_UPDATED_BY => NVL(p_recipe_header_rec.last_updated_by
301: ,gmd_api_grp.user_id),
302: X_LAST_UPDATE_LOGIN => NVL(p_recipe_header_rec.last_update_login
303: ,gmd_api_grp.login_id),
304: X_FIXED_PROCESS_LOSS => p_recipe_header_rec.fixed_process_loss,
305: X_FIXED_PROCESS_LOSS_UOM => p_recipe_header_rec.fixed_process_loss_uom
306: );
307: END IF;

Line 525: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,

521: /* Validate Owner and Creators */
522: /* Organization code */
523: /* ===================================== */
524:
525: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,
526: X_out_rec => l_out_rec,
527: X_return_status => l_return_status);
528:
529: /*IF (l_out_rec.plant_ind <> 1 OR l_out_rec.lab_ind <> 1) THEN

Line 1011: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,

1007: ELSIF -- the owner orgn code is diff from that in db
1008: p_recipe_header_rec.owner_organization_id
1009: <> old_recipe_rec.owner_organization_id THEN
1010:
1011: gmd_api_grp.fetch_parm_values ( P_orgn_id => p_recipe_header_rec.owner_organization_id,
1012: X_out_rec => l_out_rec,
1013: X_return_status => l_return_status);
1014:
1015: IF (l_out_rec.plant_ind <> 1 OR l_out_rec.lab_ind <> 1) THEN

Line 1047: gmd_api_grp.fetch_parm_values (P_orgn_id => p_recipe_header_rec.creation_organization_id,

1043: ELSIF -- the creation orgn code is diff from that in db
1044: p_recipe_header_rec.creation_organization_id
1045: <> old_recipe_rec.creation_organization_id THEN
1046:
1047: gmd_api_grp.fetch_parm_values (P_orgn_id => p_recipe_header_rec.creation_organization_id,
1048: X_out_rec => l_out_rec,
1049: X_return_status => l_return_status);
1050:
1051: IF (l_out_rec.plant_ind <> 1 OR l_out_rec.lab_ind <> 1) THEN

Line 2147: GMD_API_GRP.check_item_exists (p_formula_id => x_formula_id

2143:
2144: /* Check if all the items in the formula exists in the current organization */
2145: IF (p_owner_organization_id IS NOT NULL) AND
2146: (x_formula_id IS NOT NULL) THEN
2147: GMD_API_GRP.check_item_exists (p_formula_id => x_formula_id
2148: ,p_organization_id => p_owner_organization_id
2149: ,x_return_status => l_return_status);
2150: IF l_return_status <> FND_API.g_ret_sts_success THEN
2151: x_return_status := l_return_status;