DBA Data[Home] [Help]

APPS.OE_SCH_FIRM_CONC dependencies on FND_FILE

Line 158: fnd_file.put_line(FND_FILE.LOG, '***** Processing item key '||

154: -- MOAC End
155:
156: FOR k IN wf_item LOOP
157:
158: fnd_file.put_line(FND_FILE.LOG, '***** Processing item key '||
159: k.item_key||' *****');
160:
161: -- MOAC Start. Set policy context if the OU changes on lines.
162: IF NOT l_single_org and k.org_id <> l_old_org_id then

Line 186: fnd_file.put_line(FND_FILE.LOG, l_msg_data);

182:
183: FOR I in 1..l_msg_count LOOP
184: l_msg_data := OE_MSG_PUB.Get(I,'F');
185: -- Write Messages in the log file
186: fnd_file.put_line(FND_FILE.LOG, l_msg_data);
187: -- Write the message to the database
188:
189: END LOOP;
190:

Line 387: fnd_file.put_line(FND_FILE.LOG, '***** Processing Line id '||

383: DBMS_SQL.COLUMN_VALUE(l_sqlCursor,2,l_org_id);
384:
385: IF Firm_Eligible(p_line_id => v_line_id) THEN
386:
387: fnd_file.put_line(FND_FILE.LOG, '***** Processing Line id '||
388: v_line_id||' *****');
389:
390: -- Moac Start
391: IF NOT l_single_org and l_org_id <> l_old_org_id THEN

Line 415: FND_FILE.PUT_LINE(FND_FILE.LOG, l_msg_data);

411:
412: FOR I in 1..l_msg_count loop
413: l_msg_data := OE_MSG_PUB.Get(I,'F');
414: -- Write Messages in the log file
415: FND_FILE.PUT_LINE(FND_FILE.LOG, l_msg_data);
416: -- Write the message to the database
417: END LOOP;
418: END IF;
419:

Line 432: fnd_file.put_line(FND_FILE.LOG,

428:
429: WHEN OTHERS THEN
430:
431: oe_debug_pub.add('Error executing Scheduling ' || SQLERRM,1);
432: fnd_file.put_line(FND_FILE.LOG,
433: 'Error executing Scheduling, ' || SQLERRM);
434: END Request;
435:
436: END OE_SCH_FIRM_CONC;