DBA Data[Home] [Help]

APPS.WIP_FLOW_VALIDATION dependencies on WIP_ENTITIES

Line 1011: from wip_entities

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

Line 1016: from wip_entities

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

Line 1043: from wip_entities

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