DBA Data[Home] [Help]

APPS.FLM_EKB_UNMOVED_CARDS dependencies on FND_FILE

Line 57: FND_FILE.put_line(FND_FILE.LOG, 'Organization Code : ALL Organizations');

53:
54:
55: If p_organization_code is null then
56:
57: FND_FILE.put_line(FND_FILE.LOG, 'Organization Code : ALL Organizations');
58:
59: select organization_id
60: Bulk Collect
61: into l_all_orgs

Line 78: FND_FILE.put_line(FND_FILE.LOG, 'Organization Code : '||p_organization_code);

74: end loop;
75:
76: else
77:
78: FND_FILE.put_line(FND_FILE.LOG, 'Organization Code : '||p_organization_code);
79:
80: select organization_id
81: into p_organization_id
82: from MTL_PARAMETERS

Line 186: FND_FILE.put_line(FND_FILE.LOG, 'No Setups Exists for Unmoved Cards for organization : '||l_organization_code);

182: into l_organization_code
183: from mtl_parameters
184: where organization_id = p_organization_id;
185:
186: FND_FILE.put_line(FND_FILE.LOG, 'No Setups Exists for Unmoved Cards for organization : '||l_organization_code);
187: -- dbms_output.put_line('Please run the Actual Demand Calculation first');
188: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning: No Setups Exists for Unmoved Cards');
189: elsif l_unmoved_table.count > 0 then
190:

Line 425: FND_FILE.put_line(FND_FILE.LOG, 'Total rows with Unmoved cards are : '||l_row_count);

421: into l_row_count
422: from mtl_kanban_cards
423: where Move_status = 1;
424:
425: FND_FILE.put_line(FND_FILE.LOG, 'Total rows with Unmoved cards are : '||l_row_count);
426: dbms_output.put_line('Total rows with Unmoved cards are : '||l_row_count);
427:
428: end of testing */
429: