DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_LOGINS

Line 609: From Fnd_Logins

605: else
606: begin
607: Select Submitted_Login_ID
608: Into subloginid
609: From Fnd_Logins
610: Where Login_ID = loginid;
611:
612: exception
613: when no_data_found then

Line 1308: -- Insert the record in Fnd_Logins if the request submission

1304: raise;
1305: end;
1306:
1307: -- Fetch Login ID for the request from the sequnce generator.
1308: -- Insert the record in Fnd_Logins if the request submission
1309: -- successful.
1310: begin
1311: Select Fnd_Logins_S.nextval
1312: Into loginid

Line 1311: Select Fnd_Logins_S.nextval

1307: -- Fetch Login ID for the request from the sequnce generator.
1308: -- Insert the record in Fnd_Logins if the request submission
1309: -- successful.
1310: begin
1311: Select Fnd_Logins_S.nextval
1312: Into loginid
1313: From Sys.Dual;
1314:
1315: exception

Line 1997: -- Insert into Fnd_Logins

1993:
1994: end;
1995: end if;
1996:
1997: -- Insert into Fnd_Logins
1998: if (subloginid is not null) then
1999: begin
2000: Insert
2001: into Fnd_Logins (

Line 2001: into Fnd_Logins (

1997: -- Insert into Fnd_Logins
1998: if (subloginid is not null) then
1999: begin
2000: Insert
2001: into Fnd_Logins (
2002: Login_Id, User_Id,
2003: Start_Time, End_Time,
2004: Pid, Spid, Terminal_ID,
2005: Login_Name, Submitted_Login_Id)