DBA Data[Home] [Help]

APPS.MRP_WFS_FORM_FLOW_SCHEDULE dependencies on FND_DFLEX

Line 2484: flexfield fnd_dflex.dflex_r;

2480: p_attribute14 IN OUT NOCOPY varchar2,
2481: p_attribute15 IN OUT NOCOPY varchar2
2482:
2483: ) IS
2484: flexfield fnd_dflex.dflex_r;
2485: flexinfo fnd_dflex.dflex_dr;
2486: contexts fnd_dflex.contexts_dr;
2487: cur_context fnd_dflex.context_r;
2488: i BINARY_INTEGER;

Line 2485: flexinfo fnd_dflex.dflex_dr;

2481: p_attribute15 IN OUT NOCOPY varchar2
2482:
2483: ) IS
2484: flexfield fnd_dflex.dflex_r;
2485: flexinfo fnd_dflex.dflex_dr;
2486: contexts fnd_dflex.contexts_dr;
2487: cur_context fnd_dflex.context_r;
2488: i BINARY_INTEGER;
2489: segments fnd_dflex.segments_dr;

Line 2486: contexts fnd_dflex.contexts_dr;

2482:
2483: ) IS
2484: flexfield fnd_dflex.dflex_r;
2485: flexinfo fnd_dflex.dflex_dr;
2486: contexts fnd_dflex.contexts_dr;
2487: cur_context fnd_dflex.context_r;
2488: i BINARY_INTEGER;
2489: segments fnd_dflex.segments_dr;
2490:

Line 2487: cur_context fnd_dflex.context_r;

2483: ) IS
2484: flexfield fnd_dflex.dflex_r;
2485: flexinfo fnd_dflex.dflex_dr;
2486: contexts fnd_dflex.contexts_dr;
2487: cur_context fnd_dflex.context_r;
2488: i BINARY_INTEGER;
2489: segments fnd_dflex.segments_dr;
2490:
2491: BEGIN

Line 2489: segments fnd_dflex.segments_dr;

2485: flexinfo fnd_dflex.dflex_dr;
2486: contexts fnd_dflex.contexts_dr;
2487: cur_context fnd_dflex.context_r;
2488: i BINARY_INTEGER;
2489: segments fnd_dflex.segments_dr;
2490:
2491: BEGIN
2492:
2493: x_return_status := NULL;

Line 2494: fnd_dflex.get_flexfield('WIP', 'WIP_FLOW_SCHEDULES', flexfield, flexinfo);

2490:
2491: BEGIN
2492:
2493: x_return_status := NULL;
2494: fnd_dflex.get_flexfield('WIP', 'WIP_FLOW_SCHEDULES', flexfield, flexinfo);
2495:
2496: fnd_dflex.get_contexts(flexfield, contexts);
2497: FOR i IN 1 .. contexts.ncontexts LOOP
2498: IF(contexts.is_enabled(i) and (contexts.is_global(i) or flexinfo.default_context_value = contexts.context_code(i))) THEN

Line 2496: fnd_dflex.get_contexts(flexfield, contexts);

2492:
2493: x_return_status := NULL;
2494: fnd_dflex.get_flexfield('WIP', 'WIP_FLOW_SCHEDULES', flexfield, flexinfo);
2495:
2496: fnd_dflex.get_contexts(flexfield, contexts);
2497: FOR i IN 1 .. contexts.ncontexts LOOP
2498: IF(contexts.is_enabled(i) and (contexts.is_global(i) or flexinfo.default_context_value = contexts.context_code(i))) THEN
2499: cur_context.flexfield := flexfield;
2500: cur_context.context_code := contexts.context_code(i);

Line 2501: fnd_dflex.get_segments(cur_context,segments,TRUE);

2497: FOR i IN 1 .. contexts.ncontexts LOOP
2498: IF(contexts.is_enabled(i) and (contexts.is_global(i) or flexinfo.default_context_value = contexts.context_code(i))) THEN
2499: cur_context.flexfield := flexfield;
2500: cur_context.context_code := contexts.context_code(i);
2501: fnd_dflex.get_segments(cur_context,segments,TRUE);
2502: FOR j IN 1 .. segments.nsegments LOOP
2503: IF (segments.application_column_name(j) = 'ATTRIBUTE1') THEN
2504: p_attribute1 := segments.default_value(j);
2505: ELSIF (segments.application_column_name(j) = 'ATTRIBUTE2') THEN