DBA Data[Home] [Help]

APPS.AMS_IBA_PL_PAGES_B_PKG dependencies on AMS_UTILITY_PVT

Line 62: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just before insert');

58: px_object_version_number := 1;
59:
60: IF (AMS_DEBUG_HIGH_ON) THEN
61:
62: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just before insert');
63:
64: END IF;
65: INSERT INTO AMS_IBA_PL_PAGES_B(
66: page_id,

Line 92: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just after insert into b table');

88: DECODE( px_object_version_number, FND_API.g_miss_num, NULL, px_object_version_number)
89: );
90: IF (AMS_DEBUG_HIGH_ON) THEN
91:
92: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just after insert into b table');
93: END IF;
94: IF (AMS_DEBUG_HIGH_ON) THEN
95:
96: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just before insert into tl table');

Line 96: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just before insert into tl table');

92: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just after insert into b table');
93: END IF;
94: IF (AMS_DEBUG_HIGH_ON) THEN
95:
96: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just before insert into tl table');
97: END IF;
98:
99: INSERT INTO ams_iba_pl_pages_tl (
100: page_id,

Line 132: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just after insert into tl table');

128: WHERE t.page_id = DECODE( px_page_id, FND_API.g_miss_num, NULL, px_page_id)
129: AND t.language = l.language_code);
130: IF (AMS_DEBUG_HIGH_ON) THEN
131:
132: AMS_UTILITY_PVT.debug_message( 'Table Handler : Just after insert into tl table');
133: END IF;
134:
135: END Insert_Row;
136: