DBA Data[Home] [Help]

APPS.XLA_MO_REPORTING_API dependencies on GL_MC_INFO

Line 469: gl_mc_info.get_sob_type(p_reporting_entity_id, l_sob_type);

465: -- If reporting, we need to get the primary set of books and then use that
466: -- value to get the operating unit information from HR tables. There is no
467: -- association of primary and reporting set of books in HR.
468: IF p_reporting_level = '1000' then
469: gl_mc_info.get_sob_type(p_reporting_entity_id, l_sob_type);
470:
471: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
472: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,
473: 'xla.plsql.XLA_MO_REPORTING_API.INITIALIZE.get_sob_type',

Line 474: 'gl_mc_info.get_sob_type='||l_sob_type);

470:
471: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
472: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,
473: 'xla.plsql.XLA_MO_REPORTING_API.INITIALIZE.get_sob_type',
474: 'gl_mc_info.get_sob_type='||l_sob_type);
475: END IF;
476:
477: IF l_sob_type = 'R' then
478:

Line 485: gl_mc_info.get_primary_set_of_books_id(p_reporting_entity_id);

481: -- primary SOB. MRC team mentioned that this is not supported currently.
482: -- When this is supported both MRC and our code needs to be changed.
483: -- a given reporting set of books.
484: l_reporting_entity_id :=
485: gl_mc_info.get_primary_set_of_books_id(p_reporting_entity_id);
486:
487: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
488: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,
489: 'xla.plsql.XLA_MO_REPORTING_API.INITIALIZE.primary_sob_id',

Line 490: 'gl_mc_info.primary_set_of_books_id='||l_reporting_entity_id);

486:
487: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
488: FND_LOG.STRING(FND_LOG.LEVEL_EVENT,
489: 'xla.plsql.XLA_MO_REPORTING_API.INITIALIZE.primary_sob_id',
490: 'gl_mc_info.primary_set_of_books_id='||l_reporting_entity_id);
491: END IF;
492:
493: END IF;
494: END IF;