DBA Data[Home] [Help]

APPS.ZX_RULES_PKG dependencies on APP_EXCEPTION

Line 582: APP_EXCEPTION.RAISE_EXCEPTION;

578: close c;
579:
580: EXCEPTION
581: WHEN OTHERS THEN
582: APP_EXCEPTION.RAISE_EXCEPTION;
583:
584: end INSERT_ROW;
585:
586: procedure LOCK_ROW (

Line 671: app_exception.raise_exception;

667: fetch c into recinfo;
668: if (c%notfound) then
669: close c;
670: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
671: app_exception.raise_exception;
672: end if;
673: close c;
674: if ((recinfo.TAX_RULE_CODE = X_TAX_RULE_CODE)
675: AND ((recinfo.TAX = X_TAX)

Line 732: app_exception.raise_exception;

728: ) then
729: null;
730: else
731: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
732: app_exception.raise_exception;
733: end if;
734: for tlinfo in c1 loop
735: if (tlinfo.BASELANG = 'Y') then
736: if ( (tlinfo.TAX_RULE_NAME = X_TAX_RULE_NAME)

Line 743: app_exception.raise_exception;

739: ) then
740: null;
741: else
742: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
743: app_exception.raise_exception;
744: end if;
745: end if;
746: end loop;
747: return;

Line 751: APP_EXCEPTION.RAISE_EXCEPTION;

747: return;
748:
749: EXCEPTION
750: WHEN OTHERS THEN
751: APP_EXCEPTION.RAISE_EXCEPTION;
752:
753: end LOCK_ROW;
754:
755: procedure UPDATE_ROW (

Line 847: APP_EXCEPTION.RAISE_EXCEPTION;

843: end if;
844:
845: EXCEPTION
846: WHEN OTHERS THEN
847: APP_EXCEPTION.RAISE_EXCEPTION;
848:
849: end UPDATE_ROW;
850: procedure DELETE_ROW (
851: X_TAX_RULE_ID in NUMBER) is

Line 870: APP_EXCEPTION.RAISE_EXCEPTION;

866: end if;
867:
868: EXCEPTION
869: WHEN OTHERS THEN
870: APP_EXCEPTION.RAISE_EXCEPTION;
871:
872: end DELETE_ROW;
873:
874: procedure ADD_LANGUAGE is

Line 932: APP_EXCEPTION.RAISE_EXCEPTION;

928: and T.LANGUAGE = L.LANGUAGE_CODE);
929:
930: EXCEPTION
931: WHEN OTHERS THEN
932: APP_EXCEPTION.RAISE_EXCEPTION;
933: end ADD_LANGUAGE;
934:
935: procedure bulk_insert_rules (
936: X_TAX_RULE_ID IN t_tax_rule_id,

Line 1040: APP_EXCEPTION.RAISE_EXCEPTION;

1036: end if;
1037:
1038: EXCEPTION
1039: WHEN OTHERS THEN
1040: APP_EXCEPTION.RAISE_EXCEPTION;
1041:
1042: end bulk_insert_rules;
1043:
1044: end ZX_RULES_PKG;