DBA Data[Home] [Help]

APPS.WSH_WV_UTILS dependencies on INV_CONVERT

Line 80: result := INV_CONVERT.inv_um_convert(item_id,

76: -- p_max_decimal_digits has a default value of 5. Therefore
77: -- for all the outbound transactions, it will be passed as 5.
78: -- But for inbound data the value will be 38.
79:
80: result := INV_CONVERT.inv_um_convert(item_id,
81: lot_number,
82: org_id,
83: p_max_decimal_digits, -- Bug 1842481 : precision digits changed to 5
84: quantity,

Line 92: result := INV_CONVERT.inv_um_convert(item_id,

88: NULL
89: );
90: -- Use old call
91: ELSE
92: result := INV_CONVERT.inv_um_convert(item_id,
93: p_max_decimal_digits, -- Bug 1842481 : precision digits changed to 5
94: quantity,
95: from_uom,
96: to_uom,

Line 172: result := INV_CONVERT.inv_um_convert(item_id,

168: -- p_max_decimal_digits has a default value of 5. Therefore
169: -- for all the outbound transactions, it will be passed as 5.
170: -- But for inbound data the value will be 38.
171:
172: result := INV_CONVERT.inv_um_convert(item_id,
173: lot_number,
174: org_id,
175: p_max_decimal_digits, -- Bug 1842481 : precision digits changed to 5
176: quantity,

Line 184: result := INV_CONVERT.inv_um_convert(item_id,

180: NULL
181: );
182: -- Use old call
183: ELSE
184: result := INV_CONVERT.inv_um_convert(item_id,
185: p_max_decimal_digits, -- Bug 1842481 : precision digits changed to 5
186: quantity,
187: from_uom,
188: to_uom,

Line 6107: -- Description: This function calls new INV routine INV_CONVERT.within_deviation

6103: -- p_quantity - Primary Qty
6104: -- p_uom1 - Uom code to convert from
6105: -- p_quantity2 - Secondary Qty
6106: -- p_uom2 - Uom code to convert to
6107: -- Description: This function calls new INV routine INV_CONVERT.within_deviation
6108: -- to check if Qtys are within deviation for item types 'D' and 'N'
6109:
6110: FUNCTION within_deviation (
6111: p_organization_id IN NUMBER,

Line 6151: result := INV_CONVERT.within_deviation(

6147: WSH_DEBUG_SV.log(l_module_name,'p_precision',p_precision);
6148: END IF;
6149:
6150:
6151: result := INV_CONVERT.within_deviation(
6152: p_organization_id,
6153: p_inventory_item_id,
6154: p_lot_number,
6155: p_precision,