DBA Data[Home] [Help]

APPS.GCS_TRANSLATION_PKG dependencies on GL_DAILY_CONVERSION_TYPES

Line 367: FROM gl_daily_conversion_types

363:
364: -- Used to get the end and average rate type names
365: CURSOR rate_type_name_c(c_rate_type VARCHAR2) IS
366: SELECT user_conversion_type
367: FROM gl_daily_conversion_types
368: WHERE conversion_type = c_rate_type;
369:
370: -- Used to get the entity type
371: CURSOR entity_type_c(c_entity_id NUMBER) IS

Line 529: 'FROM gl_daily_conversion_types' || g_nl ||

525: CLOSE curr_treatment_c;
526:
527: write_to_log(module, FND_LOG.LEVEL_STATEMENT,
528: 'SELECT user_conversion_type' || g_nl ||
529: 'FROM gl_daily_conversion_types' || g_nl ||
530: 'WHERE conversion_type = ''' || per_rate_type || '''');
531:
532: OPEN rate_type_name_c(per_rate_type);
533: FETCH rate_type_name_c INTO x_per_rate_type_name;

Line 542: 'FROM gl_daily_conversion_types' || g_nl ||

538: CLOSE rate_type_name_c;
539:
540: write_to_log(module, FND_LOG.LEVEL_STATEMENT,
541: 'SELECT user_conversion_type' || g_nl ||
542: 'FROM gl_daily_conversion_types' || g_nl ||
543: 'WHERE conversion_type = ''' || per_avg_rate_type || '''');
544:
545: OPEN rate_type_name_c(per_avg_rate_type);
546: FETCH rate_type_name_c INTO x_per_avg_rate_type_name;