DBA Data[Home] [Help]

APPS.OE_HEADER_SECURITY dependencies on FND_GLOBAL

Line 38: ( p_responsibility_id => nvl(fnd_global.resp_id, -1)

34: --
35: BEGIN
36:
37: l_result := OE_PC_Constraints_Admin_PVT.Is_OP_constrained
38: ( p_responsibility_id => nvl(fnd_global.resp_id, -1)
39: , p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
40: , p_operation => p_operation
41: , p_qualifier_attribute => p_record.transaction_phase_code
42: , p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER

Line 39: , p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547

35: BEGIN
36:
37: l_result := OE_PC_Constraints_Admin_PVT.Is_OP_constrained
38: ( p_responsibility_id => nvl(fnd_global.resp_id, -1)
39: , p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
40: , p_operation => p_operation
41: , p_qualifier_attribute => p_record.transaction_phase_code
42: , p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER
43: , p_column_name => p_column_name

Line 2458: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)

2454: -- security check for CREATE will be called again from
2455: -- process order after defaulting.
2456: IF NOT OE_PC_Constraints_Admin_PVT.Check_On_Insert_Exists
2457: (p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER
2458: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)
2459: ,p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
2460: )
2461: THEN
2462: RETURN;

Line 2459: ,p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547

2455: -- process order after defaulting.
2456: IF NOT OE_PC_Constraints_Admin_PVT.Check_On_Insert_Exists
2457: (p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER
2458: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)
2459: ,p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
2460: )
2461: THEN
2462: RETURN;
2463: END IF;