DBA Data[Home] [Help]

APPS.FUN_PARTY_MERGE_PUB dependencies on FND_API

Line 44: x_return_status := FND_API.G_RET_STS_SUCCESS;

40: for update nowait;
41:
42: BEGIN
43:
44: x_return_status := FND_API.G_RET_STS_SUCCESS;
45:
46: --check the merge reason, if merge reason is 'Duplicate Record' then no validation is performed.
47: --otherwise check if the resource is being used somewhere
48: SELECT merge_reason_code

Line 130: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

126: WHEN OTHERS THEN
127: FND_MESSAGE.SET_NAME('FUN','HZ_API_OTHERS_EXCEP');
128: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
129: FND_MSG_PUB.ADD;
130: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
131:
132: END merge_trx_batches;
133:
134:

Line 168: x_return_status := FND_API.G_RET_STS_SUCCESS;

164: for update nowait;
165:
166: BEGIN
167:
168: x_return_status := FND_API.G_RET_STS_SUCCESS;
169:
170: --check the merge reason, if merge reason is 'Duplicate Record' then no validation is performed.
171: --otherwise check if the resource is being used somewhere
172: SELECT merge_reason_code

Line 245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

241: WHEN OTHERS THEN
242: FND_MESSAGE.SET_NAME('FUN','HZ_API_OTHERS_EXCEP');
243: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
244: FND_MSG_PUB.ADD;
245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
246:
247: END merge_trx_headers;
248:
249:

Line 283: x_return_status := FND_API.G_RET_STS_SUCCESS;

279: for update nowait;
280:
281: BEGIN
282:
283: x_return_status := FND_API.G_RET_STS_SUCCESS;
284:
285: --check the merge reason, if merge reason is 'Duplicate Record' then no validation is performed.
286: --otherwise check if the resource is being used somewhere
287: SELECT merge_reason_code

Line 360: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

356: WHEN OTHERS THEN
357: FND_MESSAGE.SET_NAME('FUN','HZ_API_OTHERS_EXCEP');
358: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
359: FND_MSG_PUB.ADD;
360: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
361:
362: END merge_dist_lines;
363:
364:

Line 398: x_return_status := FND_API.G_RET_STS_SUCCESS;

394: for update nowait;
395:
396: BEGIN
397:
398: x_return_status := FND_API.G_RET_STS_SUCCESS;
399:
400: --check the merge reason, if merge reason is 'Duplicate Record' then no validation is performed.
401: --otherwise check if the resource is being used somewhere
402: SELECT merge_reason_code

Line 472: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

468: WHEN OTHERS THEN
469: FND_MESSAGE.SET_NAME('FUN','HZ_API_OTHERS_EXCEP');
470: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
471: FND_MSG_PUB.ADD;
472: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
473:
474: END merge_customer_maps;
475:
476:

Line 510: x_return_status := FND_API.G_RET_STS_SUCCESS;

506: for update nowait;
507:
508: BEGIN
509:
510: x_return_status := FND_API.G_RET_STS_SUCCESS;
511:
512: --check the merge reason, if merge reason is 'Duplicate Record' then no validation is performed.
513: --otherwise check if the resource is being used somewhere
514: SELECT merge_reason_code

Line 584: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

580: WHEN OTHERS THEN
581: FND_MESSAGE.SET_NAME('FUN','HZ_API_OTHERS_EXCEP');
582: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
583: FND_MSG_PUB.ADD;
584: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
585:
586: END merge_supplier_maps;
587:
588: