DBA Data[Home] [Help]

APPS.WMS_ATF_DESTINATION_LPN dependencies on FND_MESSAGE

Line 556: fnd_message.set_name('WMS', 'WMS_OPERTN_PLAN_ID_INVALID');

552: l_operation_type, l_is_in_inventory, l_organization_id;
553:
554: if c_oper_plan_details%NOTFOUND
555: then
556: fnd_message.set_name('WMS', 'WMS_OPERTN_PLAN_ID_INVALID');
557: fnd_msg_pub.ADD;
558: raise fnd_api.g_exc_error; -- Added after Code Review on Sept 11th 2003.
559: else
560: -- ### Print values detived from teh cursor in nthe log file.

Line 585: fnd_message.set_name('WMS', 'WMS_MTRL_GRP_RULE_ID_IS_NULL');

581: -- ### Check to see if a valid Material Grouping Rule is stamped on the oeration plan detail.
582: -- ### The LOV on the Form field allows to select a valid Rule only. Hence the possible cases
583: -- ### are that either there is a value which is valid or a null value. Hence check only for null.
584: if l_lpn_mtrl_grp_rule_id is null then
585: fnd_message.set_name('WMS', 'WMS_MTRL_GRP_RULE_ID_IS_NULL');
586: fnd_msg_pub.ADD;
587: raise fnd_api.g_exc_error; -- Added after Code Review on Sept 11th 2003.
588: end if;
589: end if;