DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_LOG

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 996: if (FND_LOG.LEVEL_EVENT >=

992: if ((fcp_printer is not null) and (curr_printer <> fcp_printer)) then
993: if (P_VALIDATE_PRINTER = 'FAIL') then
994: raise printer_error;
995: elsif (P_VALIDATE_PRINTER = 'SKIP') then
996: if (FND_LOG.LEVEL_EVENT >=
997: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
998: fnd_message.set_name('FND','CONC-Illegal printer spec');
999: fnd_log.message(FND_LOG.LEVEL_EVENT,
1000: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);

Line 997: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then

993: if (P_VALIDATE_PRINTER = 'FAIL') then
994: raise printer_error;
995: elsif (P_VALIDATE_PRINTER = 'SKIP') then
996: if (FND_LOG.LEVEL_EVENT >=
997: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
998: fnd_message.set_name('FND','CONC-Illegal printer spec');
999: fnd_log.message(FND_LOG.LEVEL_EVENT,
1000: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);
1001: end if;

Line 999: fnd_log.message(FND_LOG.LEVEL_EVENT,

995: elsif (P_VALIDATE_PRINTER = 'SKIP') then
996: if (FND_LOG.LEVEL_EVENT >=
997: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
998: fnd_message.set_name('FND','CONC-Illegal printer spec');
999: fnd_log.message(FND_LOG.LEVEL_EVENT,
1000: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);
1001: end if;
1002: GOTO next_iteration;
1003: else -- P_VALIDATE_PRINTER = 'RESOLVE'

Line 1004: if (FND_LOG.LEVEL_EVENT >=

1000: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);
1001: end if;
1002: GOTO next_iteration;
1003: else -- P_VALIDATE_PRINTER = 'RESOLVE'
1004: if (FND_LOG.LEVEL_EVENT >=
1005: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
1006: fnd_message.set_name ('FND',
1007: 'CONC-Illegal printer spec');
1008: fnd_log.message(FND_LOG.LEVEL_EVENT,

Line 1005: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then

1001: end if;
1002: GOTO next_iteration;
1003: else -- P_VALIDATE_PRINTER = 'RESOLVE'
1004: if (FND_LOG.LEVEL_EVENT >=
1005: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
1006: fnd_message.set_name ('FND',
1007: 'CONC-Illegal printer spec');
1008: fnd_log.message(FND_LOG.LEVEL_EVENT,
1009: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);

Line 1008: fnd_log.message(FND_LOG.LEVEL_EVENT,

1004: if (FND_LOG.LEVEL_EVENT >=
1005: FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
1006: fnd_message.set_name ('FND',
1007: 'CONC-Illegal printer spec');
1008: fnd_log.message(FND_LOG.LEVEL_EVENT,
1009: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);
1010: fnd_log.string(FND_LOG.LEVEL_EVENT,
1011: 'fnd.plsql.FND_REQUEST.SUBMIT.printer',
1012: 'Invalid printer('||curr_printer||

Line 1010: fnd_log.string(FND_LOG.LEVEL_EVENT,

1006: fnd_message.set_name ('FND',
1007: 'CONC-Illegal printer spec');
1008: fnd_log.message(FND_LOG.LEVEL_EVENT,
1009: 'fnd.plsql.FND_REQUEST.SUBMIT.printer', FALSE);
1010: fnd_log.string(FND_LOG.LEVEL_EVENT,
1011: 'fnd.plsql.FND_REQUEST.SUBMIT.printer',
1012: 'Invalid printer('||curr_printer||
1013: ') specified for program(' ||program||
1014: '). Attempting to resolve by using printer: '

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)