DBA Data[Home] [Help]

APPS.WIP_FLOW_DERIVE dependencies on FND_USER

Line 526: from FND_USER

522: if (p_last_up_id is null) and (p_last_up_by_name is not null) then
523:
524: select USER_ID
525: into p_last_up_id
526: from FND_USER
527: where USER_NAME = p_last_up_by_name ;
528:
529: elsif (p_last_up_id is not null) and (p_last_up_by_name is null) then
530:

Line 533: from FND_USER

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

Line 555: from FND_USER

551: if (p_created_id is null) and (p_created_by_name is not null) then
552:
553: select USER_ID
554: into p_created_id
555: from FND_USER
556: where USER_NAME = p_created_by_name ;
557:
558: elsif (p_created_id is not null) and (p_created_by_name is null) then
559:

Line 562: from FND_USER

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