DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_LOGINS

Line 560: From Fnd_Logins

556: else
557: begin
558: Select Submitted_Login_ID
559: Into subloginid
560: From Fnd_Logins
561: Where Login_ID = loginid;
562:
563: exception
564: when no_data_found then

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

1201: raise;
1202: end;
1203:
1204: -- Fetch Login ID for the request from the sequnce generator.
1205: -- Insert the record in Fnd_Logins if the request submission
1206: -- successful.
1207: begin
1208: Select Fnd_Logins_S.nextval
1209: Into loginid

Line 1208: Select Fnd_Logins_S.nextval

1204: -- Fetch Login ID for the request from the sequnce generator.
1205: -- Insert the record in Fnd_Logins if the request submission
1206: -- successful.
1207: begin
1208: Select Fnd_Logins_S.nextval
1209: Into loginid
1210: From Sys.Dual;
1211:
1212: exception

Line 1892: -- Insert into Fnd_Logins

1888:
1889: end;
1890: end if;
1891:
1892: -- Insert into Fnd_Logins
1893: if (subloginid is not null) then
1894: begin
1895: Insert
1896: into Fnd_Logins (

Line 1896: into Fnd_Logins (

1892: -- Insert into Fnd_Logins
1893: if (subloginid is not null) then
1894: begin
1895: Insert
1896: into Fnd_Logins (
1897: Login_Id, User_Id,
1898: Start_Time, End_Time,
1899: Pid, Spid, Terminal_ID,
1900: Login_Name, Submitted_Login_Id)