DBA Data[Home] [Help]

APPS.XDP_PERF_BM_PKG dependencies on FND_REQUEST

Line 8: that will actually send the request via FND_REQUEST.SUBMIT_REQUEST.

4: /***********************************************************************************
5: Name : SendOrder
6: Purpose : This Procedure will be called from UI as a driver concurrent program.
7: This will in turn make another call to a concurrent program(SubmitOrder)
8: that will actually send the request via FND_REQUEST.SUBMIT_REQUEST.
9: INPUT :
10: order_number_prefix Order Number Prefix to be Generated.
11: number_of_orders Number of Orders to be Generated per process.
12: number_of_lineitems Number of LineItems per Order.

Line 54: print_option_set := FND_REQUEST.SET_PRINT_OPTIONS(

50:
51: -- Need to set print option since print is set upon definition of concurrent program
52: -- on the UI.
53:
54: print_option_set := FND_REQUEST.SET_PRINT_OPTIONS(
55: null,
56: null,
57: null,
58: TRUE,

Line 69: req_id := FND_REQUEST.SUBMIT_REQUEST(

65: errbuf := substr(fnd_message.get, 1, 240);
66: FND_FILE.put_line(FND_FILE.LOG ,'ERR MSG: '||errbuf);
67: END IF;
68:
69: req_id := FND_REQUEST.SUBMIT_REQUEST(
70: 'XDP',
71: 'XDP_PERF_BM_PROG',
72: 'SFM Performance Benchmark Bulk Order Submission Program',
73: null,