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 371: | GetStandardSource |

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

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

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

Line 378: FUNCTION GetStandardSource(

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

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

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

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

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

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

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

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

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

Line 458: END GetStandardSource;

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

Line 463: | GetStandardSource |

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

Line 916: GetStandardSource(

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

Line 1066: GetStandardSource(

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

Line 1132: l_source := GetStandardSource(

1128: );
1129:
1130: WHEN C_SEEDED_SOURCE_TYPE THEN
1131:
1132: l_source := GetStandardSource(
1133: p_Index
1134: , l_rec_sources.array_source_code
1135: , l_rec_sources.array_datatype_code
1136: , p_variable

Line 1277: GetStandardSource(

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

Line 1433: l_source :=GetStandardSource(

1429:
1430:
1431: ELSIF l_rec_sources.array_source_type_code(p_Index) = C_SEEDED_SOURCE_TYPE THEN
1432:
1433: l_source :=GetStandardSource(
1434: p_Index
1435: , l_rec_sources.array_source_code
1436: , l_rec_sources.array_datatype_code
1437: , p_variable