DBA Data[Home] [Help]

APPS.CZ_CF_API dependencies on UTL_HTTP

Line 56: SUBTYPE CFG_OUTPUT_PIECES IS UTL_HTTP.HTML_PIECES;

52: config_item_id number default NULL);
53:
54: TYPE CFG_INPUT_LIST IS table of INPUT_SELECTION index by binary_integer;
55:
56: SUBTYPE CFG_OUTPUT_PIECES IS UTL_HTTP.HTML_PIECES;
57:
58: TYPE NUMBER_TBL_TYPE IS table of NUMBER;
59: TYPE DATE_TBL_TYPE IS table of DATE;
60: TYPE VARCHAR2_TBL_TYPE IS table of VARCHAR2(255);

Line 76: UTL_HTTP_INIT_FAILED constant NUMBER :=6;

72: INIT_TOO_LONG constant NUMBER :=2;
73: INVALID_OPTION_REQUEST constant NUMBER :=3;
74: CONFIG_EXCEPTION constant NUMBER :=4;
75: DATABASE_ERROR constant NUMBER :=5;
76: UTL_HTTP_INIT_FAILED constant NUMBER :=6;
77: UTL_HTTP_REQUEST_FAILED constant NUMBER :=7;
78: --vsingava 14th Jul '09 bug7674190
79: -- CZ_CF_API would never use this. status code '8' is thrown by
80: -- CZ_BATCH_VALIDATE package if the hosting applications still calls the older version

Line 77: UTL_HTTP_REQUEST_FAILED constant NUMBER :=7;

73: INVALID_OPTION_REQUEST constant NUMBER :=3;
74: CONFIG_EXCEPTION constant NUMBER :=4;
75: DATABASE_ERROR constant NUMBER :=5;
76: UTL_HTTP_INIT_FAILED constant NUMBER :=6;
77: UTL_HTTP_REQUEST_FAILED constant NUMBER :=7;
78: --vsingava 14th Jul '09 bug7674190
79: -- CZ_CF_API would never use this. status code '8' is thrown by
80: -- CZ_BATCH_VALIDATE package if the hosting applications still calls the older version
81: -- INVALID_VALIDATION_TYPE constant NUMBER :=8;

Line 263: * CONFIG_EXCEPTION (4), DATABASE_ERROR (5), UTL_HTTP_INIT_FAILED (6), UTL_HTTP_REQUEST_FAILED (7)

259: * @param init_message XML initialization message
260: * @param config_messages This is a table of the output XML messages produced by validating the configuration.
261: * @param validation_status The status code returned by validating the configuration: CONFIG_PROCESSED (0),
262: * CONFIG_PROCESSED_NO_TERMINATE (1), INIT_TOO_LONG (2), INVALID_OPTION_REQUEST (3),
263: * CONFIG_EXCEPTION (4), DATABASE_ERROR (5), UTL_HTTP_INIT_FAILED (6), UTL_HTTP_REQUEST_FAILED (7)
264: * @param URL The URL for the Oracle Configurator Servlet. Default will interrogate the current profile for this URL,
265: * using FND_PROFILE.Value('CZ_UIMGR_URL').
266: * @param p_validation_type The possible values are CZ_API_PUB.VALIDATE_ORDER, CZ_API_PUB.VALIDATE_FULFILLMENT,
267: and CZ_API_PUB.INTERACTIVE. The default is CZ_API_PUB.VALIDATE_ORDER.