DBA Data[Home] [Help]

APPS.PV_OPP_MATCH_PUB dependencies on FND_PROFILE

Line 374: --g_rule_engine_trace_flag := NVL(FND_PROFILE.VALUE('PV_RULE_ENGINE_TRACE_ON'), 'N');

370:
371: -- ------------------------------------------------------------------------
372: -- Retrieve profile value for stack trace profile option.
373: -- ------------------------------------------------------------------------
374: --g_rule_engine_trace_flag := NVL(FND_PROFILE.VALUE('PV_RULE_ENGINE_TRACE_ON'), 'N');
375:
376: -- --------------------------------------------------------------------------
377: -- Retrieving Matching Type Profile Value, which can be one of the following:
378: --

Line 382: l_matching_type := NVL(FND_PROFILE.VALUE('PV_PARTNER_MATCHING_TYPE'), 'STOP_AT_FIRST_RULE');

378: --
379: -- EXHAUST_ALL_RULES
380: -- STOP_AT_FIRST_RULE
381: -- --------------------------------------------------------------------------
382: l_matching_type := NVL(FND_PROFILE.VALUE('PV_PARTNER_MATCHING_TYPE'), 'STOP_AT_FIRST_RULE');
383:
384:
385: -- ---------------------------------------------------------------------------------
386: -- Cache all the opportunity selection rules (attributes-values) in a global

Line 1047: --g_rule_engine_trace_flag := NVL(FND_PROFILE.VALUE('PV_RULE_ENGINE_TRACE_ON'), 'N');

1043:
1044: -- ------------------------------------------------------------------------
1045: -- Retrieve profile value for stack trace profile option.
1046: -- ------------------------------------------------------------------------
1047: --g_rule_engine_trace_flag := NVL(FND_PROFILE.VALUE('PV_RULE_ENGINE_TRACE_ON'), 'N');
1048:
1049: IF (g_rule_engine_trace_flag = 'Y') OR FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
1050: Debug('............................................................');
1051: Debug('Stack trace turned on? ' || g_rule_engine_trace_flag);

Line 1886: l_entity_routing.routing_type := FND_PROFILE.VALUE('PV_DEFAULT_ASSIGNMENT_TYPE');

1882: RAISE FND_API.G_EXC_ERROR;
1883: END IF;
1884:
1885: ELSE
1886: l_entity_routing.routing_type := FND_PROFILE.VALUE('PV_DEFAULT_ASSIGNMENT_TYPE');
1887: l_entity_routing.bypass_cm_ok_flag :=
1888: NVL(FND_PROFILE.VALUE('PV_CM_APPROVAL_REQUIRED'), 'N');
1889: END IF;
1890:

Line 1888: NVL(FND_PROFILE.VALUE('PV_CM_APPROVAL_REQUIRED'), 'N');

1884:
1885: ELSE
1886: l_entity_routing.routing_type := FND_PROFILE.VALUE('PV_DEFAULT_ASSIGNMENT_TYPE');
1887: l_entity_routing.bypass_cm_ok_flag :=
1888: NVL(FND_PROFILE.VALUE('PV_CM_APPROVAL_REQUIRED'), 'N');
1889: END IF;
1890:
1891: IF (g_rule_engine_trace_flag = 'Y') OR FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW) THEN
1892: Debug('Routing Type: ' || l_entity_routing.routing_type);