DBA Data[Home] [Help]

APPS.WIP_JOB_DTLS_SUBSTITUTIONS dependencies on WIP_JSI_UTILS

Line 1308: wip_jsi_utils.record_error_text(p_err_msg, TRUE);

1304: exception
1305: when others then
1306: p_err_msg := 'WIPJDSTB, Delete_Requirement: ' || SQLERRM;
1307: p_err_code := SQLCODE;
1308: wip_jsi_utils.record_error_text(p_err_msg, TRUE);
1309: end;
1310:
1311: END Delete_Requirement;
1312:

Line 1455: wip_jsi_utils.record_error_text(p_err_msg, TRUE);

1451: exception
1452: when others then
1453: p_err_msg := 'WIPJDSTB, Add_Requirement: ' || SQLERRM;
1454: p_err_code := SQLCODE;
1455: wip_jsi_utils.record_error_text(p_err_msg, TRUE);
1456: end;
1457:
1458: END Add_Requirement;
1459:

Line 1530: wip_jsi_utils.record_current_error(TRUE) ;

1526: p_operation_seq_num => cur_row.operation_seq_num,
1527: p_inventory_item_id => cur_row.inventory_item_id_old)) then
1528:
1529: FND_MESSAGE.set_name('WIP', 'WIP_QTY_REQ_CHANGE_WARNING');
1530: wip_jsi_utils.record_current_error(TRUE) ;
1531:
1532: wip_picking_pub.Update_Component_BackOrdQty(p_wip_entity_id => p_wip_entity_id,
1533: p_operation_seq_num => cur_row.operation_seq_num,
1534: p_new_component_qty => cur_row.required_quantity,

Line 1560: wip_jsi_utils.record_current_error(TRUE);

1556: x_return_status => x_return_status,
1557: x_msg_data => x_msg_data);
1558:
1559: FND_MESSAGE.set_name('WIP', 'WIP_SUPPLY_CHANGE_WARNING2');
1560: wip_jsi_utils.record_current_error(TRUE);
1561: end if;
1562:
1563: --Bug#4675116
1564: IF (CUR_ROW.INVENTORY_ITEM_ID_OLD <> CUR_ROW.INVENTORY_ITEM_ID_NEW) THEN

Line 1686: wip_jsi_utils.record_error_text(p_err_msg, TRUE);

1682: exception
1683: when others then
1684: p_err_msg := 'ERROR IN WIPJDSTB.PLS: CHANGE_REQ ' || SQLERRM;
1685: p_err_code := SQLCODE;
1686: wip_jsi_utils.record_error_text(p_err_msg, TRUE);
1687: end;
1688:
1689: END Change_Requirement;
1690:

Line 1832: wip_jsi_utils.record_current_error(FALSE);

1828: END;
1829:
1830: IF l_op_exists = 1 THEN
1831: fnd_message.set_name('WIP','WIP_ADD_OP_INVALID');
1832: wip_jsi_utils.record_current_error(FALSE);
1833:
1834: update wip_job_dtls_interface wjdi
1835: set process_status = wip_constants.error
1836: where group_id = p_group_id

Line 1875: wip_jsi_utils.record_current_error(FALSE);

1871: END;
1872:
1873: IF l_txn_exists = 1 THEN
1874: fnd_message.set_name('WIP','WIP_ADD_OP_INVALID');
1875: wip_jsi_utils.record_current_error(FALSE);
1876: update wip_job_dtls_interface wjdi
1877: set process_status = wip_constants.error
1878: where group_id = p_group_id
1879: and process_phase = wip_constants.ml_validation

Line 2267: WIP_JSI_Utils.record_error_text

2263: FOR cur_oper IN oper_info(p_group_id,p_wip_entity_id,p_organization_id) LOOP
2264:
2265: /* fix for bug#2653621, disable update of std_op_id and its department, same as form */
2266: if (cur_oper.curr_standard_operation_id is not null or cur_oper.standard_operation_id is not null ) then
2267: WIP_JSI_Utils.record_error_text
2268: ( 'Changing of Std Operation ID, and its associated Department ID in an operation is disallowed',
2269: true);
2270: cur_oper.standard_operation_id := null;
2271: cur_oper.department_id := null;

Line 2471: wip_interface_err_Utils.add_error(p_interface_id => wip_jsi_utils.current_interface_id,

2467: wip_interface_err_Utils.add_error(p_interface_id => l_inv_row.interface_id,
2468: p_text => substrb(fnd_message.get,1,500),
2469: p_error_type => wip_jdi_utils.msg_error);
2470: else
2471: wip_interface_err_Utils.add_error(p_interface_id => wip_jsi_utils.current_interface_id,
2472: p_text => substrb(fnd_message.get,1,500),
2473: p_error_type => wip_jdi_utils.msg_error);
2474: end if;
2475: end loop;