DBA Data[Home] [Help]

APPS.FLM_EKB_UNMOVED_CARDS dependencies on MTL_PARAMETERS

Line 62: from MTL_PARAMETERS;

58:
59: select organization_id
60: Bulk Collect
61: into l_all_orgs
62: from MTL_PARAMETERS;
63:
64: For i in l_all_orgs.First..l_all_orgs.Last loop
65:
66: -- dbms_output.put_line('Current Org is : '||l_all_orgs(i));

Line 82: from MTL_PARAMETERS

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
83: where organization_code = p_organization_code;
84:
85: process_unmoved_cards(
86: p_organization_id => p_organization_id

Line 183: from mtl_parameters

179: if l_unmoved_table.count = 0 then
180:
181: select 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');