DBA Data[Home] [Help]

APPS.QA_MQA_MWA_API dependencies on FND_API

Line 55: l_commit := fnd_api.g_true;

51: l_msg_count NUMBER;
52: l_msg_data VARCHAR2(2000);
53: BEGIN
54: IF commit_flag = 'Y' THEN
55: l_commit := fnd_api.g_true;
56: ELSE
57: l_commit := fnd_api.g_false;
58: END IF;
59: qa_result_grp.enable(

Line 57: l_commit := fnd_api.g_false;

53: BEGIN
54: IF commit_flag = 'Y' THEN
55: l_commit := fnd_api.g_true;
56: ELSE
57: l_commit := fnd_api.g_false;
58: END IF;
59: qa_result_grp.enable(
60: p_api_version => 1.0,
61: p_collection_id => collection_id,

Line 117: p_init_msg_list => fnd_api.g_false,

113: BEGIN
114:
115: WMS_CONTAINER_PUB.Explode_LPN(
116: p_api_version => 1.0,
117: p_init_msg_list => fnd_api.g_false,
118: p_commit => fnd_api.g_false,
119: x_return_status => return_status,
120: x_msg_count => msg_count,
121: x_msg_data => msg_data,

Line 118: p_commit => fnd_api.g_false,

114:
115: WMS_CONTAINER_PUB.Explode_LPN(
116: p_api_version => 1.0,
117: p_init_msg_list => fnd_api.g_false,
118: p_commit => fnd_api.g_false,
119: x_return_status => return_status,
120: x_msg_count => msg_count,
121: x_msg_data => msg_data,
122: p_lpn_id => p_lpn_id,

Line 337: -- Return fnd_api.g_true if p_txn is a mobile txn

333: RETURN 'T';
334: END triggers_matched;
335:
336: -- Bug 4519558. Oa Fwk Integration Project. UT bug fix.
337: -- Return fnd_api.g_true if p_txn is a mobile txn
338: -- else return fnd_api.g_false.
339: -- Mobile transaction number will come in range [1001,1999]
340: -- srhariha. Mon Aug 22 02:50:35 PDT 2005.
341:

Line 338: -- else return fnd_api.g_false.

334: END triggers_matched;
335:
336: -- Bug 4519558. Oa Fwk Integration Project. UT bug fix.
337: -- Return fnd_api.g_true if p_txn is a mobile txn
338: -- else return fnd_api.g_false.
339: -- Mobile transaction number will come in range [1001,1999]
340: -- srhariha. Mon Aug 22 02:50:35 PDT 2005.
341:
342:

Line 348: return fnd_api.g_true;

344:
345: BEGIN
346:
347: IF (p_txn between 1001 and 1999) THEN
348: return fnd_api.g_true;
349: END IF;
350:
351: return fnd_api.g_false;
352:

Line 351: return fnd_api.g_false;

347: IF (p_txn between 1001 and 1999) THEN
348: return fnd_api.g_true;
349: END IF;
350:
351: return fnd_api.g_false;
352:
353: END is_mobile_txn;
354:
355: END qa_mqa_mwa_api;