DBA Data[Home] [Help]

APPS.WIP_FLOW_VALIDATION dependencies on WIP_ENTITIES

Line 1010: from wip_entities

1006: where mti.rowid = p_rowid
1007: and((mti.scheduled_flag <> 1
1008: and not exists(
1009: select 'exists'
1010: from wip_entities
1011: where wip_entity_name = mti.schedule_number))
1012: or(mti.scheduled_flag = 1
1013: and exists(
1014: select 'exists'

Line 1015: from wip_entities

1011: where wip_entity_name = mti.schedule_number))
1012: or(mti.scheduled_flag = 1
1013: and exists(
1014: select 'exists'
1015: from wip_entities
1016: where wip_entity_id = mti.transaction_source_id)));
1017:
1018: return x_success ;
1019:

Line 1042: from wip_entities

1038: select 1 into x_success
1039: from sys.dual
1040: where not exists(
1041: select 'exists'
1042: from wip_entities
1043: where wip_entity_name = p_schedule_number );
1044:
1045:
1046: return x_success ;