DBA Data[Home] [Help]

APPS.IEX_BANKRUPTCIES_PVT dependencies on FND_LOG

Line 17: PG_DEBUG NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

13:
14:
15: -- Hint: Primary key needs to be returned.
16: --PG_DEBUG NUMBER(2) := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));
17: PG_DEBUG NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
18:
19: PROCEDURE Create_bankruptcy(
20: P_Api_Version_Number IN NUMBER,
21: P_Init_Msg_List IN VARCHAR2 := FND_API.G_FALSE,

Line 44: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

40:
41: Cursor c2 is SELECT IEX_BANKRUPTCIES_S.nextval from dual;
42: BEGIN
43: -- IF PG_DEBUG < 10 THEN
44: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
45: IEX_DEBUG_PUB.LogMessage ('Create_bankruptcy: ' || '********* start of Procedure =>'||
46: 'IEX_BANKRUPTCIES_PVT.create_BANKRUPTCY ******** ');
47: END IF;
48:

Line 88: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

84: END IF;
85: RAISE FND_API.G_EXC_ERROR;
86: END IF;
87: -- IF PG_DEBUG < 10 THEN
88: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
89: IEX_DEBUG_PUB.LogMessage('Create_bankruptcy: ' || 'After Global user Check');
90: END IF;
91:
92: --object version Number

Line 97: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

93: v_object_version_number :=1;
94: --Active_flag
95: v_active_flag :='Y';
96: -- IF PG_DEBUG < 10 THEN
97: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
98: IEX_DEBUG_PUB.LogMessage('Create_bankruptcy: ' || 'Active Flag is '|| v_active_flag);
99: END IF;
100:
101: -- get bankruptcy_id

Line 106: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

102: OPEN C2;
103: FETCH C2 INTO v_bankruptcy_id;
104: CLOSE C2;
105: -- IF PG_DEBUG < 10 THEN
106: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
107: IEX_DEBUG_PUB.LogMessage('Create_bankruptcy: ' || 'After bankruptcy_id Check and bankruptcy_id is =>'||
108: v_bankruptcy_id);
109: END IF;
110:

Line 122: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

118: fnd_msg_pub.add;
119: RAISE FND_API.G_EXC_ERROR;
120: END IF;
121: -- IF PG_DEBUG < 10 THEN
122: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
123: IEX_DEBUG_PUB.LogMessage('Create_bankruptcy: ' || 'After party_id Check ');
124: END IF;
125:
126:

Line 204: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

200:
201: -- Hint: Primary key should be returned.
202: x_BANKRUPTCY_ID := v_BANKRUPTCY_ID;
203: -- IF PG_DEBUG < 10 THEN
204: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
205: IEX_DEBUG_PUB.LogMessage('Create_bankruptcy: ' || 'After Calling IEX_BANKRUPTCIES_PKG.'||
206: 'Insert_Row and BANKRUPTCY_ID is => '||x_BANKRUPTCY_ID);
207: END IF;
208: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 230: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

226: ( p_count => x_msg_count,
227: p_data => x_msg_data
228: );
229: -- IF PG_DEBUG < 10 THEN
230: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
231: IEX_DEBUG_PUB.LogMessage ('Create_bankruptcy: ' || '********* end of Procedure =>'||
232: 'IEX_BANKRUPTCIES_PVT.create_BANKRUPTCY ******** ');
233: END IF;
234: EXCEPTION

Line 288: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

284: :=P_bankruptcy_Rec.object_version_number;
285:
286: BEGIN
287: -- IF PG_DEBUG < 10 THEN
288: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
289: IEX_DEBUG_PUB.LogMessage ('Update_bankruptcy: ' || '********* start of Procedure =>'||
290: 'IEX_BANKRUPTCIES_PVT.update_BANKRUPTCY ******** ');
291: END IF;
292: -- Standard Start of API savepoint

Line 418: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

414: p_data => x_msg_data
415: );
416:
417: -- IF PG_DEBUG < 10 THEN
418: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
419: IEX_DEBUG_PUB.LogMessage ('Update_bankruptcy: ' || '********* end of Procedure =>'||
420: 'IEX_BANKRUPTCIES_PVT.update_bankruptcy ******** ');
421: END IF;
422:

Line 477: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

473:
474: BEGIN
475:
476: -- IF PG_DEBUG < 10 THEN
477: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
478: IEX_DEBUG_PUB.LogMessage ('Delete_bankruptcy: ' || '********* start of Procedure =>'||
479: 'IEX_BANKRUPTCIES_PVT.delete_bankruptcy ******** ');
480: END IF;
481:

Line 527: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

523: ( p_count => x_msg_count,
524: p_data => x_msg_data
525: );
526: -- IF PG_DEBUG < 10 THEN
527: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
528: IEX_DEBUG_PUB.LogMessage ('Delete_bankruptcy: ' || '********* end of Procedure =>'||
529: 'IEX_BANKRUPTCIES_PVT.delete_bankruptcy ******** ');
530: END IF;
531: