DBA Data[Home] [Help]

APPS.PO_ASL_SV dependencies on PO_ASL_SV

Line 1: PACKAGE BODY PO_ASL_SV as

1: PACKAGE BODY PO_ASL_SV as
2: /* $Header: POXA1LSB.pls 120.1 2006/04/10 02:52:34 scolvenk noship $ */
3:
4: --
5: G_ERES_ENABLED CONSTANT VARCHAR2(1) :=

Line 8: G_PKG_NAME CONSTANT VARCHAR2(50) := 'PO_ASL_SV';

4: --
5: G_ERES_ENABLED CONSTANT VARCHAR2(1) :=
6: NVL(FND_PROFILE.value('EDR_ERES_ENABLED'), 'N');
7:
8: G_PKG_NAME CONSTANT VARCHAR2(50) := 'PO_ASL_SV';
9:
10: G_MODULE_PREFIX CONSTANT VARCHAR2(40) := 'po.plsql.' || g_pkg_name || '.';
11:
12: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;

Line 339: PO_ASL_SV.raise_asl_eres_event

335: );
336: END IF;
337: END IF; -- IF (l_return_status <> FND_API.G_RET_STS_SUCCESS)
338:
339: PO_ASL_SV.raise_asl_eres_event
340: ( x_return_status => l_return_status,
341: p_asl_id => l_asl_id_tbl(i),
342: p_action => PO_ASL_SV.G_EVENT_UPDATE,
343: p_calling_from => 'PO_ASL_SV.udpate_vendor_status',

Line 342: p_action => PO_ASL_SV.G_EVENT_UPDATE,

338:
339: PO_ASL_SV.raise_asl_eres_event
340: ( x_return_status => l_return_status,
341: p_asl_id => l_asl_id_tbl(i),
342: p_action => PO_ASL_SV.G_EVENT_UPDATE,
343: p_calling_from => 'PO_ASL_SV.udpate_vendor_status',
344: p_ackn_note => NULL,
345: p_autonomous_commit => FND_API.G_FALSE
346: );

Line 343: p_calling_from => 'PO_ASL_SV.udpate_vendor_status',

339: PO_ASL_SV.raise_asl_eres_event
340: ( x_return_status => l_return_status,
341: p_asl_id => l_asl_id_tbl(i),
342: p_action => PO_ASL_SV.G_EVENT_UPDATE,
343: p_calling_from => 'PO_ASL_SV.udpate_vendor_status',
344: p_ackn_note => NULL,
345: p_autonomous_commit => FND_API.G_FALSE
346: );
347:

Line 582: -- PO_ASL_SV.G_EVENT_INSERT: ASL is inserted

578: --p_asl_id
579: -- primary key of the ASL
580: --p_action
581: -- Type of action done to the ASL
582: -- PO_ASL_SV.G_EVENT_INSERT: ASL is inserted
583: -- PO_ASL_SV.G_EVENT_UPDATE: ASL is updated
584: --p_calling_from
585: -- Identifier of the caller
586: --p_ackn_note

Line 583: -- PO_ASL_SV.G_EVENT_UPDATE: ASL is updated

579: -- primary key of the ASL
580: --p_action
581: -- Type of action done to the ASL
582: -- PO_ASL_SV.G_EVENT_INSERT: ASL is inserted
583: -- PO_ASL_SV.G_EVENT_UPDATE: ASL is updated
584: --p_calling_from
585: -- Identifier of the caller
586: --p_ackn_note
587: -- Note for the acknowledge

Line 1157: PO_ASL_SV.raise_asl_eres_event

1153: || ', action= ' || g_asl_activities(i).action
1154: );
1155: END IF;
1156:
1157: PO_ASL_SV.raise_asl_eres_event
1158: ( x_return_status => l_return_status,
1159: p_asl_id => g_asl_activities(i).asl_id,
1160: p_action => g_asl_activities(i).action,
1161: p_calling_from => 'PO_ASL_SV.process_asl_activity_tbl',

Line 1161: p_calling_from => 'PO_ASL_SV.process_asl_activity_tbl',

1157: PO_ASL_SV.raise_asl_eres_event
1158: ( x_return_status => l_return_status,
1159: p_asl_id => g_asl_activities(i).asl_id,
1160: p_action => g_asl_activities(i).action,
1161: p_calling_from => 'PO_ASL_SV.process_asl_activity_tbl',
1162: p_ackn_note => NULL,
1163: p_autonomous_commit => FND_API.G_FALSE
1164: );
1165:

Line 1174: p_message => 'PO_ASL_SV.raise_asl_eres_event failed ' ||

1170: IF (g_debug_stmt) THEN
1171: PO_DEBUG.debug_stmt
1172: ( p_log_head => l_module,
1173: p_token => l_progress,
1174: p_message => 'PO_ASL_SV.raise_asl_eres_event failed ' ||
1175: 'with status ' || l_return_status
1176: );
1177: END IF;
1178:

Line 1211: END PO_ASL_SV;

1207:
1208:
1209: --
1210:
1211: END PO_ASL_SV;