DBA Data[Home] [Help]

APPS.INV_LPN_TRX_PUB dependencies on FND_API

Line 11: -- p_commit default fnd_api.g_false

7: -- Input parameters:
8: --
9: -- p_trx_hdr_id Transaction Header Id identified a batch
10: -- of records in MTL_MATERIAL_TRANSACTIONS_TEMP
11: -- p_commit default fnd_api.g_false
12: -- whether to commit the changes to DB.
13: -- Note that if the batch specified has records with
14: -- multiple transaction_group_ids then this API would
15: -- automatically commit. This is to prevent deadlock

Line 28: -- each row be treated as separate. When set to fnd_api.true

24: -- API is called from the ProC Manager (inltpu) only
25: -- LPN-pre-processing is done.
26: -- p_atomic Should all the rows in MMTT with the same transaction_
27: -- header_id be processed as one holistic unit or should
28: -- each row be treated as separate. When set to fnd_api.true
29: -- an error in one of the rows will result in aborting
30: -- the processing of all further rows in a batch.
31: --
32: --

Line 64: , p_commit IN VARCHAR2 := fnd_api.g_false

60: --
61: --
62: FUNCTION process_lpn_trx(
63: p_trx_hdr_id IN NUMBER
64: , p_commit IN VARCHAR2 := fnd_api.g_false
65: , x_proc_msg OUT NOCOPY VARCHAR2
66: , p_proc_mode IN NUMBER := NULL
67: , p_process_trx IN VARCHAR2 := fnd_api.g_true
68: , p_atomic IN VARCHAR2 := fnd_api.g_false

Line 67: , p_process_trx IN VARCHAR2 := fnd_api.g_true

63: p_trx_hdr_id IN NUMBER
64: , p_commit IN VARCHAR2 := fnd_api.g_false
65: , x_proc_msg OUT NOCOPY VARCHAR2
66: , p_proc_mode IN NUMBER := NULL
67: , p_process_trx IN VARCHAR2 := fnd_api.g_true
68: , p_atomic IN VARCHAR2 := fnd_api.g_false
69: , p_business_flow_code IN NUMBER := NULL
70: )
71: RETURN NUMBER;

Line 68: , p_atomic IN VARCHAR2 := fnd_api.g_false

64: , p_commit IN VARCHAR2 := fnd_api.g_false
65: , x_proc_msg OUT NOCOPY VARCHAR2
66: , p_proc_mode IN NUMBER := NULL
67: , p_process_trx IN VARCHAR2 := fnd_api.g_true
68: , p_atomic IN VARCHAR2 := fnd_api.g_false
69: , p_business_flow_code IN NUMBER := NULL
70: )
71: RETURN NUMBER;
72:

Line 77: , p_commit IN VARCHAR2 := fnd_api.g_false

73: -- For BUG 2919763, the message stack is initialized only if the new parameter
74: -- p_init_msg_list is true.
75: FUNCTION process_lpn_trx(
76: p_trx_hdr_id IN NUMBER
77: , p_commit IN VARCHAR2 := fnd_api.g_false
78: , x_proc_msg OUT NOCOPY VARCHAR2
79: , p_proc_mode IN NUMBER := NULL
80: , p_process_trx IN VARCHAR2 := fnd_api.g_true
81: , p_atomic IN VARCHAR2 := fnd_api.g_false

Line 80: , p_process_trx IN VARCHAR2 := fnd_api.g_true

76: p_trx_hdr_id IN NUMBER
77: , p_commit IN VARCHAR2 := fnd_api.g_false
78: , x_proc_msg OUT NOCOPY VARCHAR2
79: , p_proc_mode IN NUMBER := NULL
80: , p_process_trx IN VARCHAR2 := fnd_api.g_true
81: , p_atomic IN VARCHAR2 := fnd_api.g_false
82: , p_business_flow_code IN NUMBER := NULL
83: , p_init_msg_list IN BOOLEAN
84: )

Line 81: , p_atomic IN VARCHAR2 := fnd_api.g_false

77: , p_commit IN VARCHAR2 := fnd_api.g_false
78: , x_proc_msg OUT NOCOPY VARCHAR2
79: , p_proc_mode IN NUMBER := NULL
80: , p_process_trx IN VARCHAR2 := fnd_api.g_true
81: , p_atomic IN VARCHAR2 := fnd_api.g_false
82: , p_business_flow_code IN NUMBER := NULL
83: , p_init_msg_list IN BOOLEAN
84: )
85: RETURN NUMBER;