DBA Data[Home] [Help]

APPS.WIP_FLOW_DERIVE dependencies on FND_USER

Line 535: from FND_USER

531: if (p_last_up_id is null) and (p_last_up_by_name is not null) then
532:
533: select USER_ID
534: into p_last_up_id
535: from FND_USER
536: where USER_NAME = p_last_up_by_name ;
537:
538: elsif (p_last_up_id is not null) and (p_last_up_by_name is null) then
539:

Line 542: from FND_USER

538: elsif (p_last_up_id is not null) and (p_last_up_by_name is null) then
539:
540: select USER_NAME
541: into p_last_up_by_name
542: from FND_USER
543: where USER_ID = p_last_up_id ;
544:
545: end if ;
546:

Line 564: from FND_USER

560: if (p_created_id is null) and (p_created_by_name is not null) then
561:
562: select USER_ID
563: into p_created_id
564: from FND_USER
565: where USER_NAME = p_created_by_name ;
566:
567: elsif (p_created_id is not null) and (p_created_by_name is null) then
568:

Line 571: from FND_USER

567: elsif (p_created_id is not null) and (p_created_by_name is null) then
568:
569: select USER_NAME
570: into p_created_by_name
571: from FND_USER
572: where USER_ID = p_created_id ;
573:
574: end if ;
575: