DBA Data[Home] [Help]

APPS.INV_TXN_MANAGER_PUB dependencies on INV_VALIDATE

Line 4132: -- Call the inv_validate.check_location_required_setup procedure

4128: DECLARE
4129: l_location_required_flag mtl_transaction_types.location_required_flag%TYPE;
4130: BEGIN
4131: l_location_required_flag := 'N';
4132: -- Call the inv_validate.check_location_required_setup procedure
4133: -- and pass l_line_rec_type.transaction_type_id as parameter to
4134: -- check if the Location has to be made mandatory. If this procedure
4135: -- returns 'Y' then check if the Location Code is specified or not.
4136: -- If it is not specified then error out the interface record.

Line 4137: inv_validate.check_location_required_setup(

4133: -- and pass l_line_rec_type.transaction_type_id as parameter to
4134: -- check if the Location has to be made mandatory. If this procedure
4135: -- returns 'Y' then check if the Location Code is specified or not.
4136: -- If it is not specified then error out the interface record.
4137: inv_validate.check_location_required_setup(
4138: p_transaction_type_id => l_line_rec_type.transaction_type_id,
4139: p_required_flag => l_location_required_flag);
4140:
4141: IF l_location_required_flag = 'Y' AND