DBA Data[Home] [Help]

APPS.FND_ADG_OBJECT dependencies on FND_ADG_EXCEPTION

Line 83: else fnd_adg_exception.raise_error

79: when 2 then return ' number ';
80: when 12 then return ' date ';
81: when 252 then return ' boolean ';
82:
83: else fnd_adg_exception.raise_error
84: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_DATA_TY,
85: p_rpcDescriptor.package_name||'.'||
86: p_rpcDescriptor.method_name ||
87: ':Type=' || p_datatype );

Line 84: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_DATA_TY,

80: when 12 then return ' date ';
81: when 252 then return ' boolean ';
82:
83: else fnd_adg_exception.raise_error
84: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_DATA_TY,
85: p_rpcDescriptor.package_name||'.'||
86: p_rpcDescriptor.method_name ||
87: ':Type=' || p_datatype );
88: end case;

Line 135: else fnd_adg_exception.raise_error

131: case p_inout
132: when 0 then return ' in ';
133: when 1 then return ' out ';
134: when 2 then return ' in out ';
135: else fnd_adg_exception.raise_error
136: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_IO_MODE,
137: p_rpcDescriptor.package_name||'.'||
138: p_rpcDescriptor.method_name ||
139: ':Mode=' || p_inout);

Line 136: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_IO_MODE,

132: when 0 then return ' in ';
133: when 1 then return ' out ';
134: when 2 then return ' in out ';
135: else fnd_adg_exception.raise_error
136: (fnd_adg_exception.C_OBJERR_UNSUPPORTD_IO_MODE,
137: p_rpcDescriptor.package_name||'.'||
138: p_rpcDescriptor.method_name ||
139: ':Mode=' || p_inout);
140: end case;

Line 1068: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_GEN_MISSING_METHOD,

1064: );
1065:
1066: if ( l_count1 = 0 )
1067: then
1068: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_GEN_MISSING_METHOD,
1069: p_package || '.' || p_method );
1070: end if;
1071:
1072: end;

Line 1200: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_ERROR,l_err_msg);

1196: if ( p_package_name = C_COMPILE_DIRECTIVE_PACKAGE )
1197: then
1198: raise_application_error(-20001,'Directive package failed to compile!');
1199: else
1200: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_ERROR,l_err_msg);
1201: end if;
1202: end if;
1203:
1204: end;

Line 1468: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_NOT_DEFINED,

1464: end loop;
1465:
1466: if ( l_package_error )
1467: then
1468: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_NOT_DEFINED,
1469: p_owner || '.' ||l_rpc_package_name
1470: );
1471: end if;
1472:

Line 1475: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_NO_CODE,

1471: end if;
1472:
1473: if ( spec_is_empty or body_is_empty )
1474: then
1475: fnd_adg_exception.raise_error(fnd_adg_exception.C_OBJERR_COMPILE_NO_CODE,
1476: p_owner || '.' ||l_rpc_package_name
1477: );
1478: end if;
1479:

Line 1699: fnd_adg_exception.raise_error(

1695: and a.status = 'VALID';
1696:
1697: if ( l_valid_count <> 2 )
1698: then
1699: fnd_adg_exception.raise_error(
1700: fnd_adg_exception.C_OBJERR_USAGE_NOT_VALID,
1701: f_rec.package_name
1702: );
1703: end if;

Line 1700: fnd_adg_exception.C_OBJERR_USAGE_NOT_VALID,

1696:
1697: if ( l_valid_count <> 2 )
1698: then
1699: fnd_adg_exception.raise_error(
1700: fnd_adg_exception.C_OBJERR_USAGE_NOT_VALID,
1701: f_rec.package_name
1702: );
1703: end if;
1704:

Line 1715: fnd_adg_exception.raise_error(

1711: and a.status = 'VALID';
1712:
1713: if ( l_valid_count <> 2 )
1714: then
1715: fnd_adg_exception.raise_error(
1716: fnd_adg_exception.C_OBJERR_USAGE_RPC_NOT_VALID,
1717: f_rec.rpc_package_name
1718: );
1719: end if;

Line 1716: fnd_adg_exception.C_OBJERR_USAGE_RPC_NOT_VALID,

1712:
1713: if ( l_valid_count <> 2 )
1714: then
1715: fnd_adg_exception.raise_error(
1716: fnd_adg_exception.C_OBJERR_USAGE_RPC_NOT_VALID,
1717: f_rec.rpc_package_name
1718: );
1719: end if;
1720:

Line 1753: fnd_adg_exception.raise_error(

1749: and a.referenced_type = 'PACKAGE';
1750:
1751: if ( l_valid_count = 0 )
1752: then
1753: fnd_adg_exception.raise_error(
1754: fnd_adg_exception.C_OBJERR_USAGE_NO_DEP,
1755: f_rec.package_name
1756: );
1757: end if;

Line 1754: fnd_adg_exception.C_OBJERR_USAGE_NO_DEP,

1750:
1751: if ( l_valid_count = 0 )
1752: then
1753: fnd_adg_exception.raise_error(
1754: fnd_adg_exception.C_OBJERR_USAGE_NO_DEP,
1755: f_rec.package_name
1756: );
1757: end if;
1758:

Line 1765: fnd_adg_exception.raise_error(

1761: end loop;
1762:
1763: if ( l_package_count = 0 )
1764: then
1765: fnd_adg_exception.raise_error(
1766: fnd_adg_exception.C_OBJERR_USAGE_LIST_IS_EMPTY);
1767: end if;
1768:
1769: end;

Line 1766: fnd_adg_exception.C_OBJERR_USAGE_LIST_IS_EMPTY);

1762:
1763: if ( l_package_count = 0 )
1764: then
1765: fnd_adg_exception.raise_error(
1766: fnd_adg_exception.C_OBJERR_USAGE_LIST_IS_EMPTY);
1767: end if;
1768:
1769: end;
1770: