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 6127: -- Description: This function calls new INV routine INV_CONVERT.within_deviation

6123: to be called for the remaining quantity and p_split_check should be passed as 'Y'. If
6124: the deviation check fails, then a new message is shown.
6125: */
6126: -- p_split_check - check for remaining split qty
6127: -- Description: This function calls new INV routine INV_CONVERT.within_deviation
6128: -- to check if Qtys are within deviation for item types 'D' and 'N'
6129:
6130: FUNCTION within_deviation (
6131: p_organization_id IN NUMBER,

Line 6176: result := INV_CONVERT.within_deviation(

6172: WSH_DEBUG_SV.log(l_module_name,'p_split_check',p_split_check);
6173: END IF;
6174:
6175:
6176: result := INV_CONVERT.within_deviation(
6177: p_organization_id,
6178: p_inventory_item_id,
6179: p_lot_number,
6180: p_precision,