DBA Data[Home] [Help]

APPS.WMA_MATERIAL dependencies on STANDARD

Line 173: --Bug12912518 Shouldn't allow Same Assembly item to be issued to itself as Component for standard WO

169: errMsg := FND_MESSAGE.get;
170: return false;
171: end if;
172:
173: --Bug12912518 Shouldn't allow Same Assembly item to be issued to itself as Component for standard WO
174: --which is consistent with Form/MES
175: if (job.primaryItemID is not null
176: AND job.primaryItemID = item.invItemID
177: AND job.jobType = 1) then -- for standard Job don't allow issue assembly as components

Line 177: AND job.jobType = 1) then -- for standard Job don't allow issue assembly as components

173: --Bug12912518 Shouldn't allow Same Assembly item to be issued to itself as Component for standard WO
174: --which is consistent with Form/MES
175: if (job.primaryItemID is not null
176: AND job.primaryItemID = item.invItemID
177: AND job.jobType = 1) then -- for standard Job don't allow issue assembly as components
178: fnd_message.set_name ('WIP', 'WIP_NO_SAME_ASSEMBLY_ISSUE');
179: errMsg := fnd_message.get;
180: return false;
181: end if;