DBA Data[Home] [Help]

APPS.AR_REVENUE_MANAGEMENT_PVT dependencies on FND_API

Line 1004: IF x_return_status <> FND_API.g_ret_sts_success THEN

1000: x_return_status => x_return_status,
1001: x_msg_count => x_msg_count,
1002: x_msg_data => x_msg_data);
1003:
1004: IF x_return_status <> FND_API.g_ret_sts_success THEN
1005: debug('ERROR....Process_Acceptance_in_OM FAILED..');
1006: debug('OM return status = '||x_return_status);
1007:
1008: IF x_msg_count = 1 THEN

Line 1016: p_encoded => FND_API.G_FALSE));

1012: ELSE
1013: FOR i IN 1..x_msg_count LOOP
1014: debug(FND_MSG_PUB.get
1015: (p_msg_index => i,
1016: p_encoded => FND_API.G_FALSE));
1017: END LOOP;
1018: END IF;
1019:
1020: RAISE om_error;

Line 1325: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;

1321: /* This function returns the customer_trx_line_id of the parent line
1322: after fetching the attribute values from OM */
1323: FUNCTION get_line_id(p_so_line_id IN NUMBER) RETURN NUMBER IS
1324: l_line_flex_rec ar_deferral_reasons_grp.line_flex_rec;
1325: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
1326: l_msg_count NUMBER;
1327: l_msg_data VARCHAR2(2000);
1328: l_customer_trx_line_id ra_customer_trx_lines_all.customer_trx_line_id%type;
1329: BEGIN

Line 1339: IF l_return_status = FND_API.G_RET_STS_SUCCESS

1335: x_msg_count => l_msg_count,
1336: x_msg_data => l_msg_data);
1337:
1338: /* Now get the customer_trx_line_id of the parent */
1339: IF l_return_status = FND_API.G_RET_STS_SUCCESS
1340: THEN
1341:
1342: /* OM responded with the attributes, use them to go
1343: get the line id of the parent invoice line. Note that

Line 3141: l_init_msg_list VARCHAR2(30) DEFAULT fnd_api.g_true;

3137: x_msg_count OUT NOCOPY NUMBER,
3138: x_msg_data OUT NOCOPY VARCHAR2) IS
3139:
3140: l_api_version NUMBER := 2.0;
3141: l_init_msg_list VARCHAR2(30) DEFAULT fnd_api.g_true;
3142: l_commit VARCHAR2(30) DEFAULT FND_API.G_FALSE;
3143:
3144: l_sysdate DATE;
3145: l_user_id NUMBER;

Line 3142: l_commit VARCHAR2(30) DEFAULT FND_API.G_FALSE;

3138: x_msg_data OUT NOCOPY VARCHAR2) IS
3139:
3140: l_api_version NUMBER := 2.0;
3141: l_init_msg_list VARCHAR2(30) DEFAULT fnd_api.g_true;
3142: l_commit VARCHAR2(30) DEFAULT FND_API.G_FALSE;
3143:
3144: l_sysdate DATE;
3145: l_user_id NUMBER;
3146:

Line 3194: x_return_status := fnd_api.g_ret_sts_success;

3190: +--------------------------------------------------------------------- */
3191:
3192: IF p_acctd_amount = 0 THEN
3193:
3194: x_return_status := fnd_api.g_ret_sts_success;
3195: RETURN;
3196:
3197: END IF;
3198:

Line 3346: x_return_status := fnd_api.g_ret_sts_success;

3342: arp_standard.debug('RAM API skipped for Customer Trx ID ' ||
3343: p_customer_trx_id || ' because amount is zero.');
3344: END IF;
3345:
3346: x_return_status := fnd_api.g_ret_sts_success;
3347: END IF;
3348:
3349: -- *** Being called in un-earn mode ***
3350: ELSE

Line 3372: IF x_return_status = fnd_api.g_ret_sts_success THEN

3368:
3369: END IF;
3370:
3371:
3372: IF x_return_status = fnd_api.g_ret_sts_success THEN
3373:
3374: IF pg_debug IN ('Y', 'C') THEN
3375: arp_standard.debug('Call To RAM API successful');
3376: END IF;

Line 3387: fnd_msg_pub.get(fnd_msg_pub.g_first, fnd_api.g_false,

3383: arp_standard.debug(' p_customer_trx_line_id : ' ||
3384: p_customer_trx_line_id);
3385: END IF;
3386:
3387: fnd_msg_pub.get(fnd_msg_pub.g_first, fnd_api.g_false,
3388: x_msg_data, x_msg_count);
3389:
3390: IF pg_debug IN ('Y', 'C') THEN
3391: arp_standard.debug('Error Reported By RAM API: ' || x_msg_data);

Line 5320: x_return_status := fnd_api.g_ret_sts_success;

5316: arp_standard.debug(' p_gl_date : ' || p_gl_date);
5317: arp_standard.debug(' p_comments : ' || p_comments);
5318: END IF;
5319:
5320: x_return_status := fnd_api.g_ret_sts_success;
5321:
5322: IF (p_mode = c_manual_override_mode) THEN
5323:
5324: IF pg_debug IN ('Y', 'C') THEN