DBA Data[Home] [Help]

APPS.PAYWSDYG_PKG dependencies on APP_EXCEPTION

Line 771: app_exception.raise_exception;

767: --
768: -- Turn all errors into one of our custom errors
769: Dbms_Sql.Close_Cursor(l_csr);
770: fnd_message.set_name('PAY','PAY_DYG_CANNOT_ANALYSE_QUERY');
771: app_exception.raise_exception;
772: END;
773: --
774: -- Process all the columns that the Describe told us about
775: -- N.B. This DOES NOT WORK CORRECTLY for aliased columns, boo!

Line 983: app_exception.raise_exception;

979: EXCEPTION
980: WHEN OTHERS THEN
981: fnd_message.set_name('PAY','PAY_DYG_CANNOT_DESC_MODULE');
982: fnd_message.set_token('MODULE_NAME',UPPER(p_module),FALSE);
983: app_exception.raise_exception;
984: END;
985: --
986: -- Now we've described the module we'll flip through the parameters
987: -- we were told about and check that they're all OK.

Line 1036: app_exception.raise_exception;

1032: -- Raise an error 'cos we can't deal with overloaded stuff
1033: IF l_overloaded THEN
1034: fnd_message.set_name('PAY','PAY_DYG_OVERLOADS_EXIST');
1035: fnd_message.set_token('MODULE_NAME',UPPER(p_module),FALSE);
1036: app_exception.raise_exception;
1037: END IF;
1038: --
1039: -- Raise an error 'cos we can't have weird types
1040: IF l_weirdtype THEN

Line 1043: app_exception.raise_exception;

1039: -- Raise an error 'cos we can't have weird types
1040: IF l_weirdtype THEN
1041: fnd_message.set_name('PAY','PAY_DYG_UNSUPPORTED_TYPE');
1042: fnd_message.set_token('MODULE_NAME',UPPER(p_module),FALSE);
1043: app_exception.raise_exception;
1044: END IF;
1045: --
1046: -- Raise an error if the parameters are being used in the wrong way
1047: IF l_cackmode THEN

Line 1050: app_exception.raise_exception;

1046: -- Raise an error if the parameters are being used in the wrong way
1047: IF l_cackmode THEN
1048: fnd_message.set_name('PAY','PAY_DYG_INCOMPATIBLE_MODE');
1049: fnd_message.set_token('MODULE_NAME',UPPER(p_module),FALSE);
1050: app_exception.raise_exception;
1051: END IF;
1052: --
1053: -- Set up the default parameter mappings if we didn't just want to validate
1054: -- the code