DBA Data[Home] [Help]

APPS.LNS_BILLING_BATCH_PUB dependencies on RA_BATCH_SOURCES

Line 1061: FROM RA_BATCH_SOURCES

1057: /* query of batch source attributes */
1058: CURSOR gen_trx_num_cur(P_SOURCE_ID number) IS
1059: select COPY_DOC_NUMBER_FLAG,
1060: AUTO_TRX_NUMBERING_FLAG
1061: FROM RA_BATCH_SOURCES
1062: where BATCH_SOURCE_ID = P_SOURCE_ID;
1063:
1064: /* generate new trx number */
1065: CURSOR new_trx_num_cur IS

Line 2302: from RA_BATCH_SOURCES

2298:
2299: /* query for batch_source_name and cm_batch_source_id */
2300: CURSOR batch_source_cur(P_BATCH_SOURCE_ID number) IS
2301: select name, CREDIT_MEMO_BATCH_SOURCE_ID
2302: from RA_BATCH_SOURCES
2303: where batch_source_id = P_BATCH_SOURCE_ID;
2304:
2305: /* query for cm_batch_source_name */
2306: CURSOR cm_batch_source_cur(P_BATCH_SOURCE_ID number) IS

Line 2308: from RA_BATCH_SOURCES

2304:
2305: /* query for cm_batch_source_name */
2306: CURSOR cm_batch_source_cur(P_BATCH_SOURCE_ID number) IS
2307: select name
2308: from RA_BATCH_SOURCES
2309: where batch_source_id = P_BATCH_SOURCE_ID;
2310:
2311: BEGIN
2312: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');