DBA Data[Home] [Help]

APPS.OKC_OC_INT_PUB dependencies on OKC_DEBUG

Line 2170: okc_debug.Set_Indentation(l_proc);

2166: --
2167: -- Call fnd_request.submit_request function, to submit concurrent
2168: -- request
2169: IF (l_debug = 'Y') THEN
2170: okc_debug.Set_Indentation(l_proc);
2171: okc_debug.Log('10: Entering ',2);
2172: END IF;
2173:
2174: IF (l_debug = 'Y') THEN

Line 2171: okc_debug.Log('10: Entering ',2);

2167: -- Call fnd_request.submit_request function, to submit concurrent
2168: -- request
2169: IF (l_debug = 'Y') THEN
2170: okc_debug.Set_Indentation(l_proc);
2171: okc_debug.Log('10: Entering ',2);
2172: END IF;
2173:
2174: IF (l_debug = 'Y') THEN
2175: okc_debug.Log('20: Before fnd_request.submit_request for outcome',2);

Line 2175: okc_debug.Log('20: Before fnd_request.submit_request for outcome',2);

2171: okc_debug.Log('10: Entering ',2);
2172: END IF;
2173:
2174: IF (l_debug = 'Y') THEN
2175: okc_debug.Log('20: Before fnd_request.submit_request for outcome',2);
2176: END IF;
2177: l_request_id := fnd_request.submit_request(
2178: application, program, description, start_time, sub_request,
2179: Argument1, Argument2, Argument3, Argument4, Argument5,

Line 2200: okc_debug.Log('20: After fnd_request.submit_request for outcome',2);

2196: Argument86, Argument87, Argument88, Argument89, Argument90,
2197: Argument91, Argument92, Argument93, Argument94, Argument95,
2198: Argument96, Argument97, Argument98, Argument99, Argument100);
2199: IF (l_debug = 'Y') THEN
2200: okc_debug.Log('20: After fnd_request.submit_request for outcome',2);
2201: END IF;
2202:
2203: IF ( l_request_id <> 0 ) THEN
2204: -- Successfully submitted conc request

Line 2207: okc_debug.Log('30: Conc Req ' || to_char(l_request_id) || ' successfully submitted',2);

2203: IF ( l_request_id <> 0 ) THEN
2204: -- Successfully submitted conc request
2205: x_return_status := OKC_API.G_RET_STS_SUCCESS;
2206: IF (l_debug = 'Y') THEN
2207: okc_debug.Log('30: Conc Req ' || to_char(l_request_id) || ' successfully submitted',2);
2208: END IF;
2209: OKC_API.set_message(G_APP_NAME
2210: ,'OKC_SUBMIT_REQUEST_SUCCESS'
2211: ,'REQUEST_ID'

Line 2218: okc_debug.Log('30: Conc Req failed' || to_char(l_request_id),2);

2214: ELSE
2215: -- Error in submitting conc request
2216: x_return_status := OKC_API.G_RET_STS_ERROR;
2217: IF (l_debug = 'Y') THEN
2218: okc_debug.Log('30: Conc Req failed' || to_char(l_request_id),2);
2219: END IF;
2220: OKC_API.set_message(G_APP_NAME
2221: ,G_UNEXPECTED_ERROR
2222: ,G_SQLCODE_TOKEN

Line 2228: okc_debug.Log('40: Leaving ',2);

2224: ,G_SQLERRM_TOKEN
2225: ,SQLERRM);
2226: END IF;
2227: IF (l_debug = 'Y') THEN
2228: okc_debug.Log('40: Leaving ',2);
2229: okc_debug.Reset_Indentation;
2230: END IF;
2231:
2232: EXCEPTION WHEN others THEN

Line 2229: okc_debug.Reset_Indentation;

2225: ,SQLERRM);
2226: END IF;
2227: IF (l_debug = 'Y') THEN
2228: okc_debug.Log('40: Leaving ',2);
2229: okc_debug.Reset_Indentation;
2230: END IF;
2231:
2232: EXCEPTION WHEN others THEN
2233: x_msg_data := SQLERRM;