DBA Data[Home] [Help]

APPS.GMO_VBATCH_TASK_PVT dependencies on GME_BATCH_HEADER

Line 429: l_batch_record gme_batch_header%rowtype;

425: x_return_status OUT NOCOPY VARCHAR2,
426: x_message_count OUT NOCOPY NUMBER,
427: x_message_data OUT NOCOPY VARCHAR2
428: ) AS
429: l_batch_record gme_batch_header%rowtype;
430: l_rsrc_row_count number;
431: BEGIN
432:
433: if (gme_common_pvt.setup(p_org_id => p_org_id, p_org_code => p_org_code)) then

Line 438: select * into l_batch_record from gme_batch_header where batch_id = p_batch_id;

434: x_return_status := 'S';
435: else
436: x_return_status := 'E';
437: end if;
438: select * into l_batch_record from gme_batch_header where batch_id = p_batch_id;
439: gme_trans_engine_util.load_rsrc_trans (p_batch_row =>l_batch_record, x_rsc_row_count => l_rsrc_row_count, x_return_status => x_return_status);
440: FND_MSG_PUB.Count_And_Get (p_count => x_message_count, p_data => x_message_data);
441: END setup_resource_transaction;
442: