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 2512: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)

2508: -- security check for CREATE will be called again from
2509: -- process order after defaulting.
2510: IF NOT OE_PC_Constraints_Admin_PVT.Check_On_Insert_Exists
2511: (p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER
2512: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)
2513: ,p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
2514: )
2515: THEN
2516: RETURN;

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

2509: -- process order after defaulting.
2510: IF NOT OE_PC_Constraints_Admin_PVT.Check_On_Insert_Exists
2511: (p_entity_id => OE_PC_GLOBALS.G_ENTITY_HEADER
2512: ,p_responsibility_id => nvl(fnd_global.resp_id, -1)
2513: ,p_application_id => nvl(fnd_global.resp_appl_id,-1) --added for bug3631547
2514: )
2515: THEN
2516: RETURN;
2517: END IF;