DBA Data[Home] [Help]

APPS.ARH_CLASSIFICATION_PKG dependencies on ARP_STANDARD

Line 511: arp_standard.debug('Create_Code_assignment(+)');

507: tmp_var1 VARCHAR2(2000);
508: lexception EXCEPTION;
509: lyn VARCHAR2(1);
510: BEGIN
511: arp_standard.debug('Create_Code_assignment(+)');
512:
513: x_return_status := FND_API.G_RET_STS_SUCCESS;
514:
515: /*

Line 578: arp_standard.debug(x_msg_data);

574: tmp_var1 := tmp_var1 || ' '|| tmp_var;
575: END LOOP;
576: x_msg_data := tmp_var1;
577: END IF;
578: arp_standard.debug(x_msg_data);
579: END IF;
580:
581: arp_standard.debug('Create_Code_assignment(-)');
582: EXCEPTION

Line 581: arp_standard.debug('Create_Code_assignment(-)');

577: END IF;
578: arp_standard.debug(x_msg_data);
579: END IF;
580:
581: arp_standard.debug('Create_Code_assignment(-)');
582: EXCEPTION
583: WHEN lexception THEN
584: x_return_status := fnd_api.g_ret_sts_error;
585: FND_MSG_PUB.Count_And_Get(

Line 596: arp_standard.debug

592: tmp_var1 := tmp_var1 || ' '|| tmp_var;
593: END LOOP;
594: x_msg_data := tmp_var1;
595: END IF;
596: arp_standard.debug
597: ('EXCEPTION lexception: arh_classification_pkg.Create_Code_assignment'||x_msg_data);
598:
599: WHEN OTHERS THEN
600: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 608: arp_standard.debug

604: FND_MSG_PUB.Count_And_Get(
605: p_encoded => FND_API.G_FALSE,
606: p_count => x_msg_count,
607: p_data => x_msg_data );
608: arp_standard.debug
609: ('EXCEPTION: arh_classification_pkg.Create_Code_assignment'||x_msg_data);
610: END;
611:
612: /*------------------------------------------------------+

Line 670: arp_standard.debug('Update_Code_assignment(+)');

666: lyn VARCHAR2(1);
667: l_exception EXCEPTION;
668: tca_exception EXCEPTION;
669: BEGIN
670: arp_standard.debug('Update_Code_assignment(+)');
671: x_return_status := FND_API.G_RET_STS_SUCCESS;
672:
673: OPEN cu_code_assig;
674: FETCH cu_code_assig INTO l_rowid,

Line 678: arp_standard.debug('Last_update_date:'||to_char(l_last_update_date));

674: FETCH cu_code_assig INTO l_rowid,
675: l_start_date,
676: l_object_version,
677: l_last_update_date;
678: arp_standard.debug('Last_update_date:'||to_char(l_last_update_date));
679: IF cu_code_assig%NOTFOUND THEN
680: FND_MESSAGE.SET_NAME('AR','HZ_API_NO_RECORD');
681: FND_MESSAGE.SET_TOKEN('RECORD','HZ_CODE_ASSIGNMENT');
682: FND_MESSAGE.SET_TOKEN('ID',p_code_assignment_id);

Line 735: arp_standard.debug('update_code_assignment (-)');

731: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
732: RAISE tca_exception;
733: END IF;
734:
735: arp_standard.debug('update_code_assignment (-)');
736: EXCEPTION
737: WHEN l_exception THEN
738: x_return_status := FND_API.G_RET_STS_ERROR;
739: fnd_msg_pub.count_and_get(

Line 750: arp_standard.debug('Exception arh_classification_pkg.update_code_assignment:'||x_msg_data);

746: tmp_var1 := tmp_var1 || ' '|| tmp_var;
747: END LOOP;
748: x_msg_data := tmp_var1;
749: END IF;
750: arp_standard.debug('Exception arh_classification_pkg.update_code_assignment:'||x_msg_data);
751:
752: WHEN tca_Exception THEN
753: IF x_msg_count > 1 THEN
754: FOR i IN 1..x_msg_count LOOP

Line 760: arp_standard.debug('Exception arh_classification_pkg.update_code_assignment:'||x_msg_data);

756: tmp_var1 := tmp_var1 || ' '|| tmp_var;
757: END LOOP;
758: x_msg_data := tmp_var1;
759: END IF;
760: arp_standard.debug('Exception arh_classification_pkg.update_code_assignment:'||x_msg_data);
761:
762: WHEN OTHERS THEN
763: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
764: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );

Line 778: arp_standard.debug('OTHER Exception arh_classification_pkg.update_code_assignment:'||

774: tmp_var1 := tmp_var1 || ' '|| tmp_var;
775: END LOOP;
776: x_msg_data := tmp_var1;
777: END IF;
778: arp_standard.debug('OTHER Exception arh_classification_pkg.update_code_assignment:'||
779: x_msg_data);
780:
781: END;
782: