DBA Data[Home] [Help]

APPS.WMS_RULE_FORM_PKG dependencies on WMS_RULES_PKG

Line 240: wms_rules_pkg.insert_row

236: l_user_id := fnd_global.user_id;
237: l_login_id := fnd_global.login_id;
238:
239: /* call the table handler to do the insert */
240: wms_rules_pkg.insert_row
241: (
242: x_rowid => l_row_id
243: ,x_rule_id => l_rule_id
244: ,x_organization_id => p_organization_id

Line 393: wms_rules_pkg.lock_row

389: elsif x_return_status = fnd_api.g_ret_sts_error then
390: raise fnd_api.g_exc_error;
391: end if;
392:
393: wms_rules_pkg.lock_row
394: (
395: x_rule_id => p_rule_id
396: ,x_organization_id => p_organization_id
397: ,x_type_code => p_type_code

Line 548: wms_rules_pkg.update_row

544: l_user_id := fnd_global.user_id;
545: l_login_id := fnd_global.login_id;
546:
547: /* call the table handler to do the update */
548: wms_rules_pkg.update_row
549: (
550: x_rule_id => p_rule_id
551: ,x_organization_id => p_organization_id
552: ,x_type_code => p_type_code

Line 743: wms_rules_pkg.delete_row(p_rule_id);

739: /* we want to delete all restrictions and sort criteria records that tie to */
740: /* this rule */
741: wms_restriction_form_pkg.delete_restrictions(p_rule_id);
742: /* wms_sort_criteria_form_pkg.delete_sort_criteria(p_rule_id); */
743: wms_rules_pkg.delete_row(p_rule_id);
744:
745: x_return_status := l_return_status;
746:
747: EXCEPTION