DBA Data[Home] [Help]

APPS.PN_DEBUG dependencies on DUAL

Line 241: FROM dual;

237: SELECT DECODE(x_Process,'PLSQL','PLSQL','SQL','SQL','REPORT',
238: 'REPORT','FORM','FORM','PLSQL'),
239: DECODE(x_Write_File,'LOG','LOG','OUT','OUT','LOG')
240: INTO G_Process, G_WriteFile
241: FROM dual;
242:
243: IF (x_Debug_Mode = 'Y') THEN
244: Enable_Debug;
245: ELSE

Line 252: FROM dual;

248:
249: IF (G_Process = 'PLSQL') THEN
250: SELECT DECODE(G_WriteFile,'LOG',Fnd_File.LOG,Fnd_File.OUTPUT )
251: INTO G_WriteFileID
252: FROM dual;
253: ELSIF (G_Process = 'REPORT') THEN
254: Enable_Debug; /* If REPORT is used, then need to enable debug */
255: ELSIF (G_Process = 'FORM') THEN
256: Enable_Debug;