DBA Data[Home] [Help]

APPS.XLA_ACCT_ATTRIBUTES_F_PKG dependencies on XLA_UTILITY_PKG

Line 52: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.insert_row' ,20);

48: WHERE accounting_attribute_code = x_accounting_attribute_code
49: ;
50:
51: BEGIN
52: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.insert_row' ,20);
53:
54: INSERT INTO xla_acct_attributes_b
55: (creation_date
56: ,created_by

Line 121: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.insert_row' ,20);

117: RAISE NO_DATA_FOUND;
118: END IF;
119: CLOSE c;
120:
121: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.insert_row' ,20);
122: END insert_row;
123:
124: /*======================================================================+
125: | |

Line 167: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.lock_row' ,20);

163: AND USERENV('LANG') IN (language ,source_lang)
164: FOR UPDATE OF accounting_attribute_code NOWAIT;
165:
166: BEGIN
167: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.lock_row' ,20);
168:
169: OPEN c;
170: FETCH c INTO recinfo;
171:

Line 208: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.lock_row' ,20);

204: END IF;
205: END LOOP;
206:
207:
208: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.lock_row' ,20);
209: RETURN;
210:
211: END lock_row;
212:

Line 235: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.update_row' ,20);

231:
232: IS
233:
234: BEGIN
235: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.update_row' ,20);
236: UPDATE xla_acct_attributes_b
237: SET
238: last_update_date = x_last_update_date
239: ,assignment_required_code = x_assignment_required_code

Line 268: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.update_row' ,20);

264: IF (SQL%NOTFOUND) THEN
265: RAISE NO_DATA_FOUND;
266: END IF;
267:
268: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.update_row' ,20);
269: END update_row;
270:
271: /*======================================================================+
272: | |

Line 282: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.delete_row' ,20);

278:
279: IS
280:
281: BEGIN
282: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.delete_row' ,20);
283: DELETE FROM xla_acct_attributes_tl
284: WHERE accounting_attribute_code = x_accounting_attribute_code;
285:
286:

Line 300: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.delete_row' ,20);

296: RAISE NO_DATA_FOUND;
297: END IF;
298:
299:
300: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.delete_row' ,20);
301: END delete_row;
302:
303: /*======================================================================+
304: | |

Line 313: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.add_language' ,20);

309:
310: IS
311:
312: BEGIN
313: xla_utility_pkg.trace('> xla_acct_attributes_f_pkg.add_language' ,20);
314:
315: DELETE FROM xla_acct_attributes_tl T
316: WHERE NOT EXISTS
317: (SELECT NULL

Line 369: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.add_language' ,20);

365: FROM xla_acct_attributes_tl t
366: WHERE t.accounting_attribute_code = b.accounting_attribute_code
367: AND t.language = l.language_code);
368:
369: xla_utility_pkg.trace('< xla_acct_attributes_f_pkg.add_language' ,20);
370: END add_language;
371:
372: /*======================================================================+
373: | |