DBA Data[Home] [Help]

APPS.LNS_BILLING_BATCH_PUB dependencies on RA_BATCH_SOURCES

Line 1077: FROM RA_BATCH_SOURCES

1073: /* query of batch source attributes */
1074: CURSOR gen_trx_num_cur(P_SOURCE_ID number) IS
1075: select COPY_DOC_NUMBER_FLAG,
1076: AUTO_TRX_NUMBERING_FLAG
1077: FROM RA_BATCH_SOURCES
1078: where BATCH_SOURCE_ID = P_SOURCE_ID;
1079:
1080: /* generate new trx number */
1081: CURSOR new_trx_num_cur IS

Line 2474: from RA_BATCH_SOURCES

2470:
2471: /* query for batch_source_name and cm_batch_source_id */
2472: CURSOR batch_source_cur(P_BATCH_SOURCE_ID number) IS
2473: select name, CREDIT_MEMO_BATCH_SOURCE_ID
2474: from RA_BATCH_SOURCES
2475: where batch_source_id = P_BATCH_SOURCE_ID;
2476:
2477: /* query for cm_batch_source_name */
2478: CURSOR cm_batch_source_cur(P_BATCH_SOURCE_ID number) IS

Line 2480: from RA_BATCH_SOURCES

2476:
2477: /* query for cm_batch_source_name */
2478: CURSOR cm_batch_source_cur(P_BATCH_SOURCE_ID number) IS
2479: select name
2480: from RA_BATCH_SOURCES
2481: where batch_source_id = P_BATCH_SOURCE_ID;
2482:
2483: BEGIN
2484: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');