DBA Data[Home] [Help]

APPS.BEN_PLAN_DESIGN_PROGRAM_MODULE dependencies on PER_POSITIONS

Line 7192: l_position_name per_positions.name%type := null;

7188: (
7189: p_position_id in number
7190: ) return varchar2 is
7191:
7192: l_position_name per_positions.name%type := null;
7193:
7194: cursor c_position_name is
7195: select pos.name
7196: from per_positions pos

Line 7196: from per_positions pos

7192: l_position_name per_positions.name%type := null;
7193:
7194: cursor c_position_name is
7195: select pos.name
7196: from per_positions pos
7197: where pos.position_id = p_position_id;
7198:
7199: begin
7200: open c_position_name;