DBA Data[Home] [Help]

APPS.WMS_CATCH_WEIGHT_GRP dependencies on INV_VALIDATE

Line 41: l_org inv_validate.org;

37: l_msgdata VARCHAR2(1000);
38:
39: -- Variables for validation
40: l_result NUMBER;
41: l_org inv_validate.org;
42: l_item inv_validate.item;
43:
44: -- Variables for processing
45: l_tracking_quantity_ind VARCHAR2(30);

Line 42: l_item inv_validate.item;

38:
39: -- Variables for validation
40: l_result NUMBER;
41: l_org inv_validate.org;
42: l_item inv_validate.item;
43:
44: -- Variables for processing
45: l_tracking_quantity_ind VARCHAR2(30);
46: l_ont_pricing_qty_source VARCHAR2(30);

Line 76: l_result := inv_validate.ORGANIZATION(l_org);

72:
73: IF ( p_validation_level <> fnd_api.g_valid_level_none ) THEN
74: l_progress := 'Validate Organization ID';
75: l_org.organization_id := p_organization_id;
76: l_result := inv_validate.ORGANIZATION(l_org);
77:
78: IF ( l_result = inv_validate.f ) THEN
79: IF ( l_debug = 1 ) THEN
80: print_debug(p_organization_id || ' is not a valid org id', 1);

Line 78: IF ( l_result = inv_validate.f ) THEN

74: l_progress := 'Validate Organization ID';
75: l_org.organization_id := p_organization_id;
76: l_result := inv_validate.ORGANIZATION(l_org);
77:
78: IF ( l_result = inv_validate.f ) THEN
79: IF ( l_debug = 1 ) THEN
80: print_debug(p_organization_id || ' is not a valid org id', 1);
81: END IF;
82: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_ORG');

Line 89: l_result := inv_validate.inventory_item(l_item, l_org);

85: END IF;
86:
87: l_progress := 'Validate Inventory Item ID';
88: l_item.inventory_item_id := p_inventory_item_id;
89: l_result := inv_validate.inventory_item(l_item, l_org);
90:
91: IF ( l_result = inv_validate.f ) THEN
92: IF (l_debug = 1) THEN
93: print_debug(p_inventory_item_id || ' is not a valid inventory item id', 1);

Line 91: IF ( l_result = inv_validate.f ) THEN

87: l_progress := 'Validate Inventory Item ID';
88: l_item.inventory_item_id := p_inventory_item_id;
89: l_result := inv_validate.inventory_item(l_item, l_org);
90:
91: IF ( l_result = inv_validate.f ) THEN
92: IF (l_debug = 1) THEN
93: print_debug(p_inventory_item_id || ' is not a valid inventory item id', 1);
94: END IF;
95: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_ITEM');

Line 111: l_result := inv_validate.uom(p_uom_code, l_org, l_item);

107: RAISE fnd_api.g_exc_error;
108: END IF;
109:
110: l_progress := 'Validate UOM code';
111: l_result := inv_validate.uom(p_uom_code, l_org, l_item);
112:
113: IF ( l_result = inv_validate.f ) THEN
114: IF ( l_debug = 1 ) THEN
115: print_debug(p_uom_code || ' is an invalid UOM', 1);

Line 113: IF ( l_result = inv_validate.f ) THEN

109:
110: l_progress := 'Validate UOM code';
111: l_result := inv_validate.uom(p_uom_code, l_org, l_item);
112:
113: IF ( l_result = inv_validate.f ) THEN
114: IF ( l_debug = 1 ) THEN
115: print_debug(p_uom_code || ' is an invalid UOM', 1);
116: END IF;
117: fnd_message.set_name('WMS', 'WMS_CONT_INVALID_UOM');