DBA Data[Home] [Help]

APPS.PO_PDOI_PVT dependencies on PO_PDOI_CONSTANTS

Line 95: -- PO_PDOI_CONSTANTS.g_DEF_BATCH_SIZE

91: -- id will be processed.
92: --p_batch_size
93: -- Used for performance tuning. It specifies the number of header interface
94: -- records that will be processed for each bulk fetching. Default number is
95: -- PO_PDOI_CONSTANTS.g_DEF_BATCH_SIZE
96: --p_buyer_id
97: -- Default buyer of the document to be imported
98: --p_document_type
99: -- Type of the document that will be processed. Possible values are:

Line 256: PO_TIMING_UTL.start_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);

252: PO_LOG.proc_begin (d_module, 'p_clm_flag', p_clm_flag);
253: END IF;
254:
255: PO_TIMING_UTL.init;
256: PO_TIMING_UTL.start_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);
257:
258: -- put down information about how to get logging messages
259: log_audsid;
260:

Line 297: p_batch_size => NVL(p_batch_size, PO_PDOI_CONSTANTS.g_DEF_BATCH_SIZE),

293: ( p_calling_module => p_calling_module,
294: p_validation_level => p_validation_level,
295: p_commit => p_commit,
296: p_selected_batch_id => p_selected_batch_id,
297: p_batch_size => NVL(p_batch_size, PO_PDOI_CONSTANTS.g_DEF_BATCH_SIZE),
298: p_buyer_id => p_buyer_id,
299: p_document_type => p_document_type,
300: p_document_subtype => p_document_subtype,
301: p_create_items => p_create_items,

Line 367: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);

363: PO_PDOI_UTL.commit_work;
364:
365: d_position := 150;
366:
367: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);
368:
369: -- do interface errors reporting, log timing, etc.
370: wrap_up;
371:

Line 384: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);

380: );
381:
382: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
383:
384: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_PDOI_ALL);
385:
386: wrap_up;
387:
388: END start_process;

Line 496: PO_PDOI_PARAMS.g_request.calling_module := NVL(p_calling_module, PO_PDOI_CONSTANTS.g_call_mod_UNKNOWN);

492: PO_LOG.proc_begin (d_module);
493: END IF;
494:
495: -- Setup g_request
496: PO_PDOI_PARAMS.g_request.calling_module := NVL(p_calling_module, PO_PDOI_CONSTANTS.g_call_mod_UNKNOWN);
497: PO_PDOI_PARAMS.g_request.validation_level := p_validation_level;
498: PO_PDOI_PARAMS.g_request.commit_work := p_commit;
499: PO_PDOI_PARAMS.g_request.batch_id := p_selected_batch_id;
500: PO_PDOI_PARAMS.g_request.batch_size := p_batch_size;

Line 1051: PO_TIMING_UTL.start_time (PO_PDOI_CONSTANTS.g_T_GATHER_TBL_STAT);

1047: IF (PO_LOG.d_proc) THEN
1048: PO_LOG.proc_begin (d_module);
1049: END IF;
1050:
1051: PO_TIMING_UTL.start_time (PO_PDOI_CONSTANTS.g_T_GATHER_TBL_STAT);
1052:
1053: -- Get the schema name of the table
1054: l_return_status := FND_INSTALLATION.get_app_info
1055: ( 'PO',

Line 1113: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_GATHER_TBL_STAT);

1109: 'No stat gathering');
1110: END IF;
1111: END IF;
1112:
1113: PO_TIMING_UTL.stop_time (PO_PDOI_CONSTANTS.g_T_GATHER_TBL_STAT);
1114:
1115: IF (PO_LOG.d_proc) THEN
1116: PO_LOG.proc_end (d_module);
1117: END IF;