DBA Data[Home] [Help]

APPS.XLA_CMP_SOURCE_PKG dependencies on STANDARD

Line 41: | - Modified routines GetStandardSource and |

37: | trace() procedure |
38: | 02-JUN-2004 A.Quaglia Added get_obj_parm_for_tab |
39: | Modified GetObjParm |
40: | 21-Sep-2004 S.Singhania Made ffg changes for the Bulk Performance: |
41: | - Modified routines GetStandardSource and |
42: | GetMeaningSource. |
43: | 06-Oct-2004 K.Boussema Made changes for the Accounting Event Extract|
44: | Diagnostics feature. |
45: | 07-Mar-2005 K.Boussema Changed for ADR-enhancements. |

Line 374: | GetStandardSource |

370:
371: /*------------------------------------------------------------+
372: | Private function |
373: | |
374: | GetStandardSource |
375: | |
376: | It generates the call to standard sources in AAD packages |
377: | according to the p_variable value |
378: | |

Line 376: | It generates the call to standard sources in AAD packages |

372: | Private function |
373: | |
374: | GetStandardSource |
375: | |
376: | It generates the call to standard sources in AAD packages |
377: | according to the p_variable value |
378: | |
379: +------------------------------------------------------------*/
380:

Line 381: FUNCTION GetStandardSource(

377: | according to the p_variable value |
378: | |
379: +------------------------------------------------------------*/
380:
381: FUNCTION GetStandardSource(
382: p_Index IN BINARY_INTEGER
383: , p_array_source_code IN t_array_VL30
384: , p_array_datatype_code IN t_array_VL1
385: , p_variable IN VARCHAR2

Line 396: l_log_module := C_DEFAULT_MODULE||'.GetStandardSource';

392: l_log_module VARCHAR2(240);
393: invalid_source EXCEPTION;
394: BEGIN
395: IF g_log_enabled THEN
396: l_log_module := C_DEFAULT_MODULE||'.GetStandardSource';
397: END IF;
398: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
399: trace
400: (p_msg => 'BEGIN of GetStandardSource '

Line 400: (p_msg => 'BEGIN of GetStandardSource '

396: l_log_module := C_DEFAULT_MODULE||'.GetStandardSource';
397: END IF;
398: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
399: trace
400: (p_msg => 'BEGIN of GetStandardSource '
401: ,p_level => C_LEVEL_PROCEDURE
402: ,p_module => l_log_module);
403:
404: END IF;

Line 435: (p_msg => 'END of GetStandardSource '

431: END CASE;
432:
433: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
434: trace
435: (p_msg => 'END of GetStandardSource '
436: ,p_level => C_LEVEL_PROCEDURE
437: ,p_module => l_log_module);
438:
439: END IF;

Line 460: (p_location => 'xla_cmp_source_pkg.GetStandardSource');

456: END IF;
457: RETURN NULL;
458: WHEN OTHERS THEN
459: xla_exceptions_pkg.raise_message
460: (p_location => 'xla_cmp_source_pkg.GetStandardSource');
461: END GetStandardSource;
462:
463: /*----------------------------------------------------------+
464: | Private function |

Line 461: END GetStandardSource;

457: RETURN NULL;
458: WHEN OTHERS THEN
459: xla_exceptions_pkg.raise_message
460: (p_location => 'xla_cmp_source_pkg.GetStandardSource');
461: END GetStandardSource;
462:
463: /*----------------------------------------------------------+
464: | Private function |
465: | |

Line 466: | GetStandardSource |

462:
463: /*----------------------------------------------------------+
464: | Private function |
465: | |
466: | GetStandardSource |
467: | |
468: | It generates the call to source meanings in AAD packages |
469: | according to the p_variable value |
470: | |

Line 919: GetStandardSource(

915:
916: WHEN C_SEEDED_SOURCE_TYPE THEN
917:
918: l_source := REPLACE(l_source,'$source$',
919: GetStandardSource(
920: p_Index
921: , l_rec_sources.array_source_code
922: , l_rec_sources.array_datatype_code
923: , p_variable

Line 1069: GetStandardSource(

1065:
1066: l_source := C_LOOKUP_MEANING ;
1067:
1068: l_source := REPLACE(l_source,'$source$',
1069: GetStandardSource(
1070: p_Index
1071: , l_rec_sources.array_source_code
1072: , l_rec_sources.array_datatype_code
1073: , p_variable

Line 1135: l_source := GetStandardSource(

1131: );
1132:
1133: WHEN C_SEEDED_SOURCE_TYPE THEN
1134:
1135: l_source := GetStandardSource(
1136: p_Index
1137: , l_rec_sources.array_source_code
1138: , l_rec_sources.array_datatype_code
1139: , p_variable

Line 1280: GetStandardSource(

1276: CASE l_rec_sources.array_source_type_code(p_Index)
1277:
1278: WHEN C_SEEDED_SOURCE_TYPE THEN
1279: l_source := REPLACE(l_source,'$source$',
1280: GetStandardSource(
1281: p_Index
1282: , l_rec_sources.array_source_code
1283: , l_rec_sources.array_datatype_code
1284: , p_variable

Line 1436: l_source :=GetStandardSource(

1432:
1433:
1434: ELSIF l_rec_sources.array_source_type_code(p_Index) = C_SEEDED_SOURCE_TYPE THEN
1435:
1436: l_source :=GetStandardSource(
1437: p_Index
1438: , l_rec_sources.array_source_code
1439: , l_rec_sources.array_datatype_code
1440: , p_variable