DBA Data[Home] [Help]

APPS.CTO_UTILITY_PK dependencies on FND_PROFILE

Line 188: PG_DEBUG Number := NVL(FND_PROFILE.value('ONT_DEBUG_LEVEL'), 0);

184:
185: --
186: -- Forward Declarations
187: --
188: PG_DEBUG Number := NVL(FND_PROFILE.value('ONT_DEBUG_LEVEL'), 0);
189:
190: G_ERROR_SEQ Number := 1 ; /* This number will increment for each session and will help to provide unique item key for notification for model lines resulting in multiple error messages */
191:
192: PROCEDURE populate_plan_level ( p_t_bcol in out NOCOPY TAB_BCOL ) ;

Line 618: lMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));

614:
615:
616: lStmtNumber := 30;
617: /* get MRP's default assignment set */
618: lMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));
619:
620: --- The following if condition is added by Renga Kannan
621: --- If the line is part of buy model then we need not look at the sourcing info
622: --- we can keep the parents rcv org as the org for this item also. This can be identified

Line 1707: lMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));

1703: lAssignmentExists := 0;
1704:
1705: lStmtNum := 10;
1706: /* get MRP's default assignment set */
1707: lMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));
1708:
1709: IF lMrpAssignmentSet is null THEN
1710: IF PG_DEBUG <> 0 THEN
1711: oe_debug_pub.add('populate_plan_level: ' || 'Default assignment set is null, returning from create_sourcing_rules procedure',1);

Line 2266: /* v_multilevel := FND_PROFILE.VALUE('BOM:MULTILEVEL_ATO');

2262: ** we need to set wip_supply_type = 6 for lower level models
2263: ** This is done in the cursor c1
2264: */
2265:
2266: /* v_multilevel := FND_PROFILE.VALUE('BOM:MULTILEVEL_ATO');
2267: ** v_multilevel := nvl(v_multilevel , 'N' ) ;
2268:
2269:
2270: ** oe_debug_pub.add('ML profile is '||v_multilevel, 2);

Line 2274: lMatchProfile := FND_PROFILE.Value('BOM:MATCH_CONFIG');

2270: ** oe_debug_pub.add('ML profile is '||v_multilevel, 2);
2271: */
2272:
2273:
2274: lMatchProfile := FND_PROFILE.Value('BOM:MATCH_CONFIG');
2275:
2276: l_custom_match_profile := FND_PROFILE.Value('BOM:CUSTOM_MATCH');
2277:
2278: /*

Line 2276: l_custom_match_profile := FND_PROFILE.Value('BOM:CUSTOM_MATCH');

2272:
2273:
2274: lMatchProfile := FND_PROFILE.Value('BOM:MATCH_CONFIG');
2275:
2276: l_custom_match_profile := FND_PROFILE.Value('BOM:CUSTOM_MATCH');
2277:
2278: /*
2279: ** retrieve information related to top level ato model being passed.
2280: */

Line 3430: gMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));

3426:
3427: IF gMrpAssignmentSet is null THEN
3428: begin
3429:
3430: gMrpAssignmentSet := to_number(FND_PROFILE.VALUE('MRP_DEFAULT_ASSIGNMENT_SET'));
3431: exception
3432: when others then
3433: raise invalid_mrp_assignment_set ;
3434: end ;