DBA Data[Home] [Help]

APPS.PV_PARTNER_ACCNT_MGMT_PVT dependencies on FND_MSG_PUB

Line 7: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PV_PARTNER_ACCNT_MGMT_PVT';
5: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvpamb.pls';
6:
7: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
8: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
9: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
10:
11: PROCEDURE Create_Customer_Account(

Line 8: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PV_PARTNER_ACCNT_MGMT_PVT';
5: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvpamb.pls';
6:
7: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
8: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
9: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
10:
11: PROCEDURE Create_Customer_Account(
12: p_api_version IN NUMBER

Line 9: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

5: G_FILE_NAME CONSTANT VARCHAR2(12) := 'pvxvpamb.pls';
6:
7: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
8: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
9: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
10:
11: PROCEDURE Create_Customer_Account(
12: p_api_version IN NUMBER
13: ,p_init_msg_list IN VARCHAR2 := FND_API.g_false

Line 54: FND_MSG_PUB.initialize;

50:
51: x_return_status := FND_API.g_ret_sts_success;
52:
53: IF FND_API.to_boolean(p_init_msg_list) THEN
54: FND_MSG_PUB.initialize;
55: END IF;
56:
57: IF NOT FND_API.compatible_api_call(
58: l_api_version,

Line 72: FND_MSG_PUB.ADD;

68: FETCH C_party_info INTO l_party_name, l_party_number;
69: IF (C_party_info%NOTFOUND) THEN
70: FND_MESSAGE.Set_Name('PV', 'PV_INVALID_PARTNER_PARTY_ID');
71: FND_MESSAGE.Set_Token('COLUMN', 'PARTY ID', FALSE);
72: FND_MSG_PUB.ADD;
73: raise FND_API.G_EXC_ERROR;
74: END IF;
75: CLOSE C_party_info;
76:

Line 127: FND_MSG_PUB.Count_And_Get

123: RAISE FND_API.G_EXC_ERROR;
124: END IF;
125:
126:
127: FND_MSG_PUB.Count_And_Get
128: ( p_encoded => FND_API.G_FALSE,
129: p_count => x_msg_count,
130: p_data => x_msg_data
131: );

Line 143: FND_MSG_PUB.Count_And_Get (

139: WHEN FND_API.G_EXC_ERROR THEN
140: ROLLBACK TO CREATE_CUSTOMER_ACCOUNT;
141: x_return_status := FND_API.G_RET_STS_ERROR;
142: -- Standard call to get message count and if count=1, get the message
143: FND_MSG_PUB.Count_And_Get (
144: p_encoded => FND_API.G_FALSE
145: ,p_count => x_msg_count
146: ,p_data => x_msg_data
147: );

Line 153: FND_MSG_PUB.Count_And_Get (

149: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
150: ROLLBACK TO CREATE_CUSTOMER_ACCOUNT;
151: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
152: -- Standard call to get message count and if count=1, get the message
153: FND_MSG_PUB.Count_And_Get (
154: p_encoded => FND_API.G_FALSE
155: ,p_count => x_msg_count
156: ,p_data => x_msg_data
157: );

Line 162: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

158:
159: WHEN OTHERS THEN
160: ROLLBACK TO CREATE_CUSTOMER_ACCOUNT;
161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
162: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
163: THEN
164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
165: END IF;
166: -- Standard call to get message count and if count=1, get the message

Line 164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

160: ROLLBACK TO CREATE_CUSTOMER_ACCOUNT;
161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
162: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
163: THEN
164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
165: END IF;
166: -- Standard call to get message count and if count=1, get the message
167: FND_MSG_PUB.Count_And_Get (
168: p_encoded => FND_API.G_FALSE

Line 167: FND_MSG_PUB.Count_And_Get (

163: THEN
164: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
165: END IF;
166: -- Standard call to get message count and if count=1, get the message
167: FND_MSG_PUB.Count_And_Get (
168: p_encoded => FND_API.G_FALSE
169: ,p_count => x_msg_count
170: ,p_data => x_msg_data
171: );

Line 209: FND_MSG_PUB.initialize;

205: x_return_status := FND_API.g_ret_sts_success;
206:
207:
208: IF FND_API.to_boolean(p_init_msg_list) THEN
209: FND_MSG_PUB.initialize;
210: END IF;
211:
212: IF NOT FND_API.compatible_api_call(
213: l_api_version,

Line 254: FND_MSG_PUB.Count_And_Get

250:
251: Close C_acct_site;
252: PVX_UTILITY_PVT.debug_message('create acct_site:after create_site:x_customer_site_id '||x_customer_site_id);
253:
254: FND_MSG_PUB.Count_And_Get
255: ( p_encoded => FND_API.G_FALSE,
256: p_count => x_msg_count,
257: p_data => x_msg_data
258: );

Line 270: FND_MSG_PUB.Count_And_Get (

266: WHEN FND_API.G_EXC_ERROR THEN
267: ROLLBACK TO CREATE_ACCT_SITE;
268: x_return_status := FND_API.G_RET_STS_ERROR;
269: -- Standard call to get message count and if count=1, get the message
270: FND_MSG_PUB.Count_And_Get (
271: p_encoded => FND_API.G_FALSE
272: ,p_count => x_msg_count
273: ,p_data => x_msg_data
274: );

Line 280: FND_MSG_PUB.Count_And_Get (

276: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
277: ROLLBACK TO CREATE_ACCT_SITE;
278: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
279: -- Standard call to get message count and if count=1, get the message
280: FND_MSG_PUB.Count_And_Get (
281: p_encoded => FND_API.G_FALSE
282: ,p_count => x_msg_count
283: ,p_data => x_msg_data
284: );

Line 289: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

285:
286: WHEN OTHERS THEN
287: ROLLBACK TO CREATE_ACCT_SITE;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message

Line 291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

287: ROLLBACK TO CREATE_ACCT_SITE;
288: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
289: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message
294: FND_MSG_PUB.Count_And_Get (
295: p_encoded => FND_API.G_FALSE

Line 294: FND_MSG_PUB.Count_And_Get (

290: THEN
291: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
292: END IF;
293: -- Standard call to get message count and if count=1, get the message
294: FND_MSG_PUB.Count_And_Get (
295: p_encoded => FND_API.G_FALSE
296: ,p_count => x_msg_count
297: ,p_data => x_msg_data
298: );

Line 327: FND_MSG_PUB.initialize;

323: -- Initialize API return status to SUCCESS
324: x_return_status := FND_API.G_RET_STS_SUCCESS;
325:
326: IF FND_API.to_boolean(p_init_msg_list) THEN
327: FND_MSG_PUB.initialize;
328: END IF;
329:
330: IF NOT FND_API.compatible_api_call(
331: l_api_version,

Line 372: FND_MSG_PUB.Count_And_Get

368: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
369: RAISE FND_API.G_EXC_ERROR;
370: END IF;
371:
372: FND_MSG_PUB.Count_And_Get
373: ( p_encoded => FND_API.G_FALSE,
374: p_count => x_msg_count,
375: p_data => x_msg_data
376: );

Line 389: FND_MSG_PUB.Count_And_Get (

385: WHEN FND_API.G_EXC_ERROR THEN
386: ROLLBACK TO CREATE_PARTY_SITE_USE;
387: x_return_status := FND_API.G_RET_STS_ERROR;
388: -- Standard call to get message count and if count=1, get the message
389: FND_MSG_PUB.Count_And_Get (
390: p_encoded => FND_API.G_FALSE
391: ,p_count => x_msg_count
392: ,p_data => x_msg_data
393: );

Line 399: FND_MSG_PUB.Count_And_Get (

395: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
396: ROLLBACK TO CREATE_PARTY_SITE_USE;
397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
398: -- Standard call to get message count and if count=1, get the message
399: FND_MSG_PUB.Count_And_Get (
400: p_encoded => FND_API.G_FALSE
401: ,p_count => x_msg_count
402: ,p_data => x_msg_data
403: );

Line 408: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

404:
405: WHEN OTHERS THEN
406: ROLLBACK TO CREATE_PARTY_SITE_USE;
407: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
408: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
409: THEN
410: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
411: END IF;
412: -- Standard call to get message count and if count=1, get the message

Line 410: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

406: ROLLBACK TO CREATE_PARTY_SITE_USE;
407: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
408: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
409: THEN
410: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
411: END IF;
412: -- Standard call to get message count and if count=1, get the message
413: FND_MSG_PUB.Count_And_Get (
414: p_encoded => FND_API.G_FALSE

Line 413: FND_MSG_PUB.Count_And_Get (

409: THEN
410: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
411: END IF;
412: -- Standard call to get message count and if count=1, get the message
413: FND_MSG_PUB.Count_And_Get (
414: p_encoded => FND_API.G_FALSE
415: ,p_count => x_msg_count
416: ,p_data => x_msg_data
417: );

Line 480: FND_MSG_PUB.initialize;

476:
477: x_return_status := FND_API.g_ret_sts_success;
478:
479: IF FND_API.to_boolean(p_init_msg_list) THEN
480: FND_MSG_PUB.initialize;
481: END IF;
482:
483: IF NOT FND_API.compatible_api_call(
484: l_api_version,

Line 630: FND_MSG_PUB.Count_And_Get

626: END IF;---End of Party Site conditions
627:
628:
629:
630: FND_MSG_PUB.Count_And_Get
631: ( p_encoded => FND_API.G_FALSE,
632: p_count => x_msg_count,
633: p_data => x_msg_data
634: );

Line 645: FND_MSG_PUB.Count_And_Get (

641: WHEN FND_API.G_EXC_ERROR THEN
642: ROLLBACK TO CREATE_ACCT_SITE_USES;
643: x_return_status := FND_API.G_RET_STS_ERROR;
644: -- Standard call to get message count and if count=1, get the message
645: FND_MSG_PUB.Count_And_Get (
646: p_encoded => FND_API.G_FALSE
647: ,p_count => x_msg_count
648: ,p_data => x_msg_data
649: );

Line 655: FND_MSG_PUB.Count_And_Get (

651: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
652: ROLLBACK TO CREATE_ACCT_SITE_USES;
653: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
654: -- Standard call to get message count and if count=1, get the message
655: FND_MSG_PUB.Count_And_Get (
656: p_encoded => FND_API.G_FALSE
657: ,p_count => x_msg_count
658: ,p_data => x_msg_data
659: );

Line 664: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

660:
661: WHEN OTHERS THEN
662: ROLLBACK TO CREATE_ACCT_SITE_USES;
663: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
664: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
665: THEN
666: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
667: END IF;
668: -- Standard call to get message count and if count=1, get the message

Line 666: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

662: ROLLBACK TO CREATE_ACCT_SITE_USES;
663: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
664: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
665: THEN
666: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
667: END IF;
668: -- Standard call to get message count and if count=1, get the message
669: FND_MSG_PUB.Count_And_Get (
670: p_encoded => FND_API.G_FALSE

Line 669: FND_MSG_PUB.Count_And_Get (

665: THEN
666: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
667: END IF;
668: -- Standard call to get message count and if count=1, get the message
669: FND_MSG_PUB.Count_And_Get (
670: p_encoded => FND_API.G_FALSE
671: ,p_count => x_msg_count
672: ,p_data => x_msg_data
673: );

Line 712: FND_MSG_PUB.initialize;

708:
709: x_return_status := FND_API.g_ret_sts_success;
710:
711: IF FND_API.to_boolean(p_init_msg_list) THEN
712: FND_MSG_PUB.initialize;
713: END IF;
714:
715: IF NOT FND_API.compatible_api_call(
716: l_api_version,

Line 800: FND_MSG_PUB.Count_And_Get

796: END IF;--C_Get_Resp%NOTFOUND
797: CLOSE C_Get_Resp;
798: END IF; --p_responsibility_type is not null
799:
800: FND_MSG_PUB.Count_And_Get
801: ( p_encoded => FND_API.G_FALSE ,
802: p_count => x_msg_count,
803: p_data => x_msg_data
804: );

Line 815: FND_MSG_PUB.Count_And_Get (

811: WHEN FND_API.G_EXC_ERROR THEN
812: ROLLBACK TO CREATE_CONTACT_ROLE;
813: x_return_status := FND_API.G_RET_STS_ERROR;
814: -- Standard call to get message count and if count=1, get the message
815: FND_MSG_PUB.Count_And_Get (
816: p_encoded => FND_API.G_FALSE
817: ,p_count => x_msg_count
818: ,p_data => x_msg_data
819: );

Line 825: FND_MSG_PUB.Count_And_Get (

821: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
822: ROLLBACK TO CREATE_CONTACT_ROLE;
823: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
824: -- Standard call to get message count and if count=1, get the message
825: FND_MSG_PUB.Count_And_Get (
826: p_encoded => FND_API.G_FALSE
827: ,p_count => x_msg_count
828: ,p_data => x_msg_data
829: );

Line 834: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

830:
831: WHEN OTHERS THEN
832: ROLLBACK TO CREATE_CONTACT_ROLE;
833: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
834: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
835: THEN
836: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
837: END IF;
838: -- Standard call to get message count and if count=1, get the message

Line 836: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

832: ROLLBACK TO CREATE_CONTACT_ROLE;
833: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
834: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
835: THEN
836: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
837: END IF;
838: -- Standard call to get message count and if count=1, get the message
839: FND_MSG_PUB.Count_And_Get (
840: p_encoded => FND_API.G_FALSE

Line 839: FND_MSG_PUB.Count_And_Get (

835: THEN
836: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
837: END IF;
838: -- Standard call to get message count and if count=1, get the message
839: FND_MSG_PUB.Count_And_Get (
840: p_encoded => FND_API.G_FALSE
841: ,p_count => x_msg_count
842: ,p_data => x_msg_data
843: );

Line 873: FND_MSG_PUB.add;

869:
870:
871: IF (p_partner_party_id = FND_API.G_MISS_NUM or p_partner_party_id IS NULL) THEN
872: FND_MESSAGE.set_name('PV', 'PV_API_NO_PARTNER_PARTY_ID');
873: FND_MSG_PUB.add;
874: RAISE FND_API.G_EXC_ERROR;
875: END IF;
876:
877:

Line 1039: FND_MSG_PUB.ADD;

1035:
1036: IF (p_cust_account_site_id IS NULL and p_cust_account_site_id <> FND_API.G_MISS_NUM) THEN
1037: FND_MESSAGE.Set_Name('PV', 'PV_CUST_ACCOUNT_ROLE_ERROR');
1038: FND_MESSAGE.Set_Token('ID', to_char( p_contact_party_id), FALSE);
1039: FND_MSG_PUB.ADD;
1040: RAISE FND_API.G_EXC_ERROR;
1041: END IF;
1042:
1043: OPEN cust_role;

Line 1115: FND_MSG_PUB.initialize;

1111: BEGIN
1112: SAVEPOINT CREATE_PARTY_SITE;
1113:
1114: IF FND_API.to_boolean(p_init_msg_list) THEN
1115: FND_MSG_PUB.initialize;
1116: END IF;
1117:
1118: IF NOT FND_API.compatible_api_call(
1119: l_api_version,

Line 1224: FND_MSG_PUB.Count_And_Get

1220: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
1221: RAISE FND_API.G_EXC_ERROR;
1222: END IF;
1223:
1224: FND_MSG_PUB.Count_And_Get
1225: ( p_encoded => FND_API.G_FALSE,
1226: p_count => x_msg_count,
1227: p_data => x_msg_data
1228: );

Line 1239: FND_MSG_PUB.Count_And_Get (

1235: WHEN FND_API.G_EXC_ERROR THEN
1236: ROLLBACK TO CREATE_PARTY_SITE;
1237: x_return_status := FND_API.G_RET_STS_ERROR;
1238: -- Standard call to get message count and if count=1, get the message
1239: FND_MSG_PUB.Count_And_Get (
1240: p_encoded => FND_API.G_FALSE
1241: ,p_count => x_msg_count
1242: ,p_data => x_msg_data
1243: );

Line 1249: FND_MSG_PUB.Count_And_Get (

1245: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1246: ROLLBACK TO CREATE_PARTY_SITE;
1247: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1248: -- Standard call to get message count and if count=1, get the message
1249: FND_MSG_PUB.Count_And_Get (
1250: p_encoded => FND_API.G_FALSE
1251: ,p_count => x_msg_count
1252: ,p_data => x_msg_data
1253: );

Line 1258: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1254:
1255: WHEN OTHERS THEN
1256: ROLLBACK TO CREATE_PARTY_SITE;
1257: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1258: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1259: THEN
1260: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1261: END IF;
1262: -- Standard call to get message count and if count=1, get the message

Line 1260: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1256: ROLLBACK TO CREATE_PARTY_SITE;
1257: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1258: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1259: THEN
1260: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1261: END IF;
1262: -- Standard call to get message count and if count=1, get the message
1263: FND_MSG_PUB.Count_And_Get (
1264: p_encoded => FND_API.G_FALSE

Line 1263: FND_MSG_PUB.Count_And_Get (

1259: THEN
1260: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1261: END IF;
1262: -- Standard call to get message count and if count=1, get the message
1263: FND_MSG_PUB.Count_And_Get (
1264: p_encoded => FND_API.G_FALSE
1265: ,p_count => x_msg_count
1266: ,p_data => x_msg_data
1267: );