DBA Data[Home] [Help]

APPS.WMS_OP_PLANS_PKG dependencies on WMS_OP_PLANS_PKG

Line 1: PACKAGE BODY WMS_OP_PLANS_PKG AS

1: PACKAGE BODY WMS_OP_PLANS_PKG AS
2: /* $Header: WMSOPTBB.pls 120.1 2006/06/19 06:55:28 amohamme noship $ */
3:
4: --
5: PROCEDURE INSERT_ROW (

Line 310: WMS_OP_PLANS_PKG.update_row (

306: -- Test for customization and version
307: if (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
308: db_ludate, X_CUSTOM_MODE)) then
309: -- Update existing row
310: WMS_OP_PLANS_PKG.update_row (
311: x_operation_plan_id => l_operation_plan_id
312: ,x_last_updated_by => f_luby
313: ,x_last_update_date => f_ludate
314: ,x_last_update_login => 0

Line 352: WMS_OP_PLANS_PKG.insert_row (

348: end if;
349: EXCEPTION
350: WHEN no_data_found THEN
351: -- Record doesn't exist - insert in all cases
352: WMS_OP_PLANS_PKG.insert_row (
353: x_rowid => l_row_id
354: ,x_operation_plan_id => l_operation_plan_id
355: ,x_last_updated_by => f_luby
356: ,x_last_update_date => f_ludate

Line 743: END WMS_OP_PLANS_PKG;

739: where T.OPERATION_PLAN_ID = B.OPERATION_PLAN_ID
740: and T.LANGUAGE = L.LANGUAGE_CODE);
741: end ADD_LANGUAGE;
742:
743: END WMS_OP_PLANS_PKG;