DBA Data[Home] [Help]

APPS.GMD_OPERATIONS_PVT dependencies on FND_DATE

Line 221: := FND_DATE.canonical_to_date(p_update_table(i).p_value);

217: gmd_debug.put_line('The eff_start_date for operation prior to update = '||
218: p_update_table(i).p_value);
219: END IF;
220: v_update_rec.effective_start_date
221: := FND_DATE.canonical_to_date(p_update_table(i).p_value);
222: ELSIF UPPER(p_update_table(i).p_col_to_update) like '%END_DATE%' THEN
223: IF (l_debug = 'Y') THEN
224: gmd_debug.put_line('The eff_end_date for operation prior to update = '||
225: p_update_table(i).p_value) ;

Line 228: := FND_DATE.canonical_to_date(p_update_table(i).p_value);

224: gmd_debug.put_line('The eff_end_date for operation prior to update = '||
225: p_update_table(i).p_value) ;
226: END IF;
227: v_update_rec.effective_end_date
228: := FND_DATE.canonical_to_date(p_update_table(i).p_value);
229: ELSIF UPPER(p_update_table(i).p_col_to_update) = 'OWNER_ORGANIZATION_ID' THEN
230: v_update_rec.owner_organization_id := p_update_table(i).p_value;
231: ELSIF UPPER(p_update_table(i).p_col_to_update) = 'DELETE_MARK' THEN
232: v_update_rec.delete_mark := p_update_table(i).p_value;